@charset "UTF-8";
:root{
  --dark:#0b1c2d;
  --gray:#6b7280;
  --light:#f9fafb;
  --transition:.45s ease;
}
/* Full-page overlay */
#skeleton-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px;
  z-index: 9999;
}

/* Navigation */
.skeleton-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.skeleton-logo { width: 120px; height: 30px; }
.skeleton-nav-links {
  display: flex;
  gap: 16px;
}
.skeleton-nav-item { width: 80px; height: 20px; }
.skeleton-button.small { width: 80px; height: 30px; border-radius: 15px; }

/* Hero */
.skeleton-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-title { width: 60%; height: 24px; }
.skeleton-text { width: 80%; height: 16px; }
.skeleton-text.short { width: 60%; }
.skeleton-img { width: 100%; height: 200px; }

/* Grid */
.skeleton-grid {
  display: flex;
  gap: 16px;
  justify-content: space-around;
}
.skeleton-card { width: 30%; height: 150px; }

/* Footer */
.skeleton-footer {
  display: flex;
  justify-content: space-between;
}
.skeleton-footer .skeleton-text.short { width: 40%; }

/* Shimmer effect */
.skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Fade-out transition */
#skeleton-loader.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* Fade-out transition */
#skeleton-loader.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:'Inter',sans-serif;
  background:var(--base-60);
  color:var(--text-main);
  line-height:1.7;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

/* ================= HEADER ================= */
header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 14px 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transition: background 0.45s ease, color 0.45s ease, padding 0.3s ease;
}

header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  color: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

header.sticky .logo {
  color: #111;
  text-shadow: none;
}

header.sticky .nav-links li a {
  color: #0b0b0b;
  background: rgba(255, 255, 255, 0.2);
}

header.sticky .hamburger span {
  background: #111;
}

/* ================= LOGO ================= */
.logo img {
  height: 24px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  font-size: 14px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  /* text-shadow: 0 2px 4px rgba(0,0,0,0.4); */
}

.nav-links li a::after {
  content:'';
  position:absolute;
  width:0;
  height:2px;
  bottom:-6px;
  left:0;
  background: var(--blue, #007bff);
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: var(--blue, #007bff);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width:100%;
}

.nav-links li a.active {
  font-weight: 600;
  color: var(--blue, #007bff);
}


/* Show only below 900px */
@media (max-width: 900px) {
  .career-link {
    display: block;
  }
}

@media (min-width: 901px) {
  .career-link {
    display: none; /* hide the Join Us link on desktop */
  }
}


/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 2100;
  transition: transform 0.3s ease;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

/* Active (X icon) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 9px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger:hover {
  transform: scale(1.1);
}

/* ================= FOOTER ================= */
footer {
  background: #0b1c2d;
  color: white;
  padding: 60px 100px 30px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  width: 140px;       /* adjust size to match nav logo */
  margin-bottom: 15px;
}

.footer-grid h4 {
  font-family: 'Helvetica';
  margin-bottom: 15px;
  color: white;
}

.footer-grid p,
.footer-grid a {
  color: white;
  text-decoration: none;
  line-height: 1.8;
}

.footer-grid a:hover {
  color: #28A745;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

.socials a {
  color: white;
  margin-right: 10px;
  text-decoration: none;
}

.socials a:hover {
  color: #28A745;
}

/* ================= PANELS ================= */
.panel {
  position: fixed;
  top: 0;
  width: 800px;
  height: 100%;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .5s ease;
  z-index: 3000;
}

.panel-left {
  left: -800px;
}

.panel-right {
  right: -800px;
}

.panel-folder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;          /* thickness of the tab */
  height: 200px;        /* consistent height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;           /* remove text-driven padding */
  writing-mode: vertical-rl;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
  color: white;
  transition: all 0.25s ease;
  text-align: center;
}

.panel-left .panel-folder {
  right: -55px;
  border-radius: 0 20px 20px 0;
  background: #007BFF;
  font-size: 16px;
}

.panel-right .panel-folder {
  left: -55px;
  border-radius: 20px 0 0 20px;
  background: #28A745;
  font-size: 16px;
}

.panel-folder:hover {
  height: 250px;  
}

.panel-content {
  padding: 30px 60px;
  height: calc(100% - 60px);
  overflow-y: auto;
}

.panel-content h2 {
  font-family:'Helvetica';
  font-size: 32px;
  margin-bottom: 20px;
  color: black;
}

.panel-content p {
  line-height: 1.8;
  color: #444;
}

/* Job Listings */
.job-listings {
  margin-top: 30px;
}

.job {
  margin-bottom: 20px;
}

.job h4 {
  font-size: 24px;
  color: #007BFF;
  margin-bottom: 10px;
}

.job p {
  font-size: 16px;
  color: #555;
}

.apply-btn {
  background-color: #28A745; /* green */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.apply-btn:hover {
  background-color: #218838;
  transform: scale(1.05);
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 4000; 
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.job-modal-content{
  background: #fff;
  margin: 6% auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.job-modal-content ul{
  margin: 20px;
}
.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}
.close:hover { color: red; }

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
form input, form button {
  padding: 10px;
  font-size: 14px;
}
form button {
  background: #28A745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
form button:hover {
  background: #218838;
}

/* ================= MEDIA QUERIES ================= */

/* Tablet & below (<=1060px) */
@media screen and (max-width: 1060px) {
  header { padding: 14px 40px; }
  .nav-links { gap: 25px; font-size: 14px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  footer { padding: 50px 40px; font-size: 14px; }
}

/* Tablet (<=900px) */
/* ================= TABLET & SMALL LAPTOPS (<=900px) ================= */
@media screen and (max-width: 900px) {
  .panel { display: none !important; }
  .hamburger { display: flex; }

  /* Default hidden state */
  .nav-links {
    position: fixed;
    left: 0;
    flex-direction: column;
    width: 100%;
    padding: 40px 25px 25px;
    gap: 25px;
    transform: translateY(-120%); /* fully hidden above viewport */
    transition: transform 0.4s ease, background 0.3s ease;
    z-index: 2000;
  }

  header:has(.nav-links.active) {
    background: none;
    padding-bottom: 25px;
  }

  /* Visible when active */
  .nav-links.active {
    z-index: -999;
    top: 0px;
    padding: 66px 73px 24px;
    transform: translateY(0);
  }

  /* Non-sticky background + hamburger color */
  header:not(.sticky) .nav-links { padding-bottom: 25px; background: rgba(255, 255, 255, 0.9); }
  header:not(.sticky) .hamburger span { background: black; }

  /* Sticky background + hamburger color */
  header.sticky .nav-links { background: rgba(255, 255, 255, 1); }
  header.sticky .hamburger span { background: #111; }

  /* Link colors */
  header:not(.sticky) .nav-links li a { color: black; }
  header.sticky .nav-links li a { color: #111; }

  .nav-links li a {
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .nav-links li a:hover {
    color: var(--blue, #007bff);
    transform: translateX(5px);
  }

  /* Footer grid becomes 2 columns on tablets */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  footer {
    padding: 40px 40px 20px;
    font-size: 14px;
    text-align: center;
  }
}

/* ================= MOBILE (<=480px) ================= */
@media screen and (max-width: 480px) {
  header { padding: 12px 20px; }
  .nav-links li a { font-size: 16px; }

  /* Footer stacked */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  footer { padding: 30px 20px; font-size: 13px; text-align: center; }

  /* Keep same hide/show logic */
  .nav-links { transform: translateY(-120%); }
  .nav-links.active { top: 48px; transform: translateY(0); }

  header:has(.nav-links.active) { 
    background: none;
    padding-bottom: 25px; 
  }
  header.sticky .nav-links {
    padding-bottom: 25px;
  }
  header:not(.sticky) .nav-links { padding-bottom: 25px; background: rgba(255, 255, 255, 0.9); }
  .nav-links.active {
    z-index: -999;
    top: 0px;
    padding: 65px 25px 0px;
    transform: translateY(0);
  }

  .footer-logo {
    width: 100px;
    margin: 0 auto 15px;
  }
  .socials a { margin: 0 8px; font-size: 16px; }
}

/* ================= VERY SMALL DEVICES (<=360px) ================= */
@media screen and (max-width: 360px) {
  header { padding: 10px 15px; }
  .nav-links li a { font-size: 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 15px; }
  footer { padding: 25px 15px; font-size: 12px; text-align: center; }

  .nav-links { transform: translateY(-120%); }
  .nav-links.active { top: 43px; transform: translateY(0); }

  /* header.sticky .nav-links li a { font-size: 12px; } */
    header.sticky .nav-links li a { padding-bottom: 25px;}
  header:has(.nav-links.active) { background: none; }
  .nav-links.active {
    z-index: -999;
    top: 0px;
    padding: 65px 43px 0px;
    transform: translateY(0);
  }

  .footer-logo { width: 90px; margin: 0 auto 10px; }
  .socials a { font-size: 15px; }
}

/* ================= TINY DEVICES (<=280px) ================= */
@media screen and (max-width: 280px) {
  header { padding: 8px 10px; }
  .nav-links li a { font-size: 12px; }

  footer { padding: 20px 10px; font-size: 11px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 10px; }

  .nav-links { transform: translateY(-120%); }
  .nav-links.active { top: 39px; transform: translateY(0); }

  header:has(.nav-links.active) { background: none; }
  .nav-links.active {
    z-index: -999;
    top: 0px;
    padding: 65px 25px 0px;
    transform: translateY(0);
  }

  .footer-logo { width: 80px; margin: 0 auto 8px; }
  .socials a { font-size: 14px; }
}
