    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        padding-top: 80px;
        font-family: "Titillium Web", sans-serif;
        font-weight: 400;
        font-style: normal;
        overflow-x: hidden;
    }






/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    padding: 05px 30px;
    flex-wrap: wrap;
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Logo */
.logo {
    margin-right: 60px;
    margin-left: 10px;
    margin-top: 15px;
}
img {
    height: 70px;
}

/* Nav links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 22px
}
.nav-links li a {
    color: black;
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.5s ease;
}
.nav-links li a:hover {
    color: rgb(253, 87, 27);
}
.nav-links li .button {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    transition: color 0.5s ease;
}
.nav-links li .button:hover {
    background-color: #000;
    color: white;
}

/* Hamburger menu (hidden on desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
}
.menu-toggle span {
    background: black;
    height: 3px;
    width: 25px;
    margin: 4px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    nav {
        justify-content: space-between;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 10px 0;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
}

.nox {
    color: #aaa;
}
.nox:hover {
    color: #21D625;
}

/* Base dropdown */
.nav-links .dropdown {
  position: relative;
}
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 999;
}
/* Show on hover (desktop) */
.nav-links .dropdown:hover > .dropdown-menu {
  display: block;
}
.nav-links .dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links .dropdown-menu li a:hover {
  background: #f5f5f5;
}
.nav-links .dropdown-menu .dropdown {
  position: relative;
}
.nav-links .dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
  display: none;
}
.nav-links .dropdown-menu .dropdown:hover > .dropdown-menu {
  display: block;
}
.nav-links .dropdown > a:after {
  content: "";
}

/* --- MOBILE ONLY --- */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #fff;
    width: 100%;
    border-top: 1px solid #ddd;
  }
  .nav-links a {
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: block;
    transition: background 0.3s ease;
  }
  .nav-links a:hover { background: #f5f5f5; }

  .nav-links .dropdown { position: static; }
  .nav-links .dropdown-menu {
    display: block;
    position: static;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 100%;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
    background: #fafafa;
    border-left: 3px solid #ff6600;
  }

  /* Open dropdown when parent is focused */
  .nav-links .dropdown:focus-within > .dropdown-menu,
  .nav-links .dropdown-menu .dropdown:focus-within > .dropdown-menu {
    max-height: 600px;
    opacity: 1;
  }

  /* --- FIRST TAP = open, SECOND TAP = follow link --- */
  .nav-links .dropdown > a {
    position: relative;
    z-index: 1;
  }
  .nav-links .dropdown > a::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
  }
  .nav-links .dropdown:focus-within > a::after {
    display: none; /* allows second tap to follow link */
  }

  /* Arrow indicator */
  .nav-links .dropdown > a::before {
    content: "▸";
    float: right;
    transition: transform .3s ease;
    margin-right: 8px;
  }
  .nav-links .dropdown:focus-within > a::before {
    transform: rotate(90deg);
  }

  /* Nested indentation */
  .nav-links .dropdown-menu .dropdown-menu {
    margin-left: 15px;
    border-left: 2px solid #ddd;
  }
}
/* First-level submenu */
.nav-links .dropdown-menu li a {
  font-size: 16px;   /* smaller than main menu (22px) */
}

/* Nested submenu (third level and deeper) */
.nav-links .dropdown-menu .dropdown-menu li a {
  font-size: 14px;   /* even smaller for deeper items */
}
/* Very small phones (≤ 480px) */
@media (max-width: 480px) {
  .nav-links a {
    font-size: 14px;
    padding: 10px 12px;
  }
  .nav-links .dropdown-menu li a {
    font-size: 13px;
  }
  nav .logo{
    width: 100px;
  }
}








.hero-section {
    position: relative;
    width: 100%;
    height: 450px;
    background: url('./assets/splint.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
}
.overlay {
    background: rgba(0, 0, 0, 0.3);
    /* transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

#hero-section-h1 {
    color: white;

    font-size: 62px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-left: 40px;
}






/* Video Section */
.video-section {
  display: flex;
  justify-content: center;
  margin-top: -150px; /* pulls video up to overlap hero */
  position: relative;
  z-index: 5; /* keeps video on top */

}

.video-container {
  position: relative;
  width: 80%;
  max-width: 1000px;
  padding-bottom: 45%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0px 12px 30px rgba(0,0,0,0.3);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}





  .center-section {
        margin-top: 80px;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        font-family: "Share Tech", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .center-sectiona {
        margin-top: 40px;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        font-family: "Share Tech", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .center-title {
        max-width: 700px;
        position: relative;
    }

    .title-wrapper {
        position: relative;
        display: inline-block;
    }

    .title-bg {
        font-size: 8rem;
        color: rgba(0, 0, 0, 0.056);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
        font-weight: 400;
        z-index: 0;
    }

    .title-main {
        font-size: 2.8rem;
        font-weight: bold;
        color: black;
        position: relative;
        z-index: 1;
    }

    .subtitlea {
        font-size: 1.3rem;
        color: black;
        font-weight: bold;
        margin-top: 45px;
        margin-bottom: 15px;
        text-transform: uppercase;
        font-family: "Titillium Web", sans-serif;
        font-weight: 600;
        font-style: normal;

    }

    .sec4-text .subtitlea,
    .sec4-text .description {
        text-align: left;
        font-size: 20px;
        padding: -10px;
        margin-right: 10px;
        font-family: "Titillium Web", sans-serif;
        font-weight: 600;
        font-style: normal;
    }

    .description {
        font-size: 1.2rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 50px;
        text-align: left;
    }

/* CENTER SECTION MOBILE FIX */
@media (max-width: 768px) {
    .center-section,
    .center-sectiona {
        flex-direction: column;
        margin: 20px 15px;
        padding: 15px;
        text-align: center;
    }

    .center-title {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
    }

    .title-wrapper {
        display: block;
    }

    .title-bg {
        font-size: 4rem; /* smaller background text */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .title-main {
        font-size: 1.8rem; /* smaller main title */
        position: relative;
        z-index: 1;
        display: block;
        margin-top: 0.5rem;
    }

    .subtitlea {
        font-size: 1rem; /* smaller subtitle */
        margin-top: 25px;
        margin-bottom: 10px;
        text-align: center;
    }

    .sec4-text .subtitlea,
    .sec4-text .description {
        font-size: 16px;
        text-align: center;
        padding: 0;
        margin-right: 0;
    }

    .description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
}






.image-row {
  display: flex;
  justify-content: center;  /* center row on the page */
  align-items: center;      /* vertically align if heights differ */            /* spacing between images */
  margin: 60px 0;           /* space above & below */
}

.image-container {
  display: flex;
  flex-wrap: wrap;          /* allows images to wrap on smaller screens */
  justify-content: center;  /* center images in the container */
  gap: 40px;                /* space between images */
}
.image-row img {               
  width: 480px;
  height: 340px;         /* don’t let them get too large */     
  box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.image-row img:hover {
  transform: scale(1.05);   /* subtle hover zoom */
}

@media (max-width: 768px) {
  .image-container{
    padding: 20px;
  }
  .image-row img {
    width: 100%;            /* full width on small screens */
    max-width: 580px;      /* limit max size */
    height: auto;          /* maintain aspect ratio */
  }
}






    .timeline-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 40px 0;
    }

    .timeline-track {
      display: flex;
      align-items: flex-start;
      transition: transform 0.6s ease;
      position: relative;
    }

    /* Horizontal line */
/* Timeline wrapper */
.timeline-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 80px 0 40px; /* extra top padding for years */
  background-color: #000;
}

/* Horizontal line */
.timeline-line {
  position: absolute;
  top: 130px; /* baseline for dots */
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  z-index: 1;
}

/* Each year item */
.year-item {
  min-width: 200px;
  margin: 0 60px;
  text-align: center;
  opacity: 0.5;
  transition: transform 0.6s ease, opacity 0.6s ease;
  position: relative;
}

/* Circle dot */
.year-item::before {
  content: "";
  position: absolute;
  top: 40px;   /* same as line */
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000;      /* inside is black */
  border: 2px solid #fff; /* white border */
  z-index: 2;
}

/* Active dot */
.year-item.active::before {
  background: #fff; /* filled when active */;
}




    .year {
      font-size: 22px;
      font-weight: bold;
      color: #666;
      margin-bottom: 20px;
      position: relative;
      z-index: 3;
    }

    .year-item.active .year {
      color: #fff;
      font-size: 26px;
    }

    /* Arrow under active year */
    .year-item.active .year::after {
      content: "▼";
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 16px;
      color: orange;
    }

    .year-item img {
      width: 120px;
      height: auto;
      display: block;
      margin: 50px auto 20px auto;
    }

    .year-item h3 {
      font-size: 14px;
      font-weight: bold;
      color: #fff;
    }

    .year-item.active {
      opacity: 1;
    }

    /* Navigation buttons */
    .nav-btn {
      position: absolute;
      top: 85%;
      transform: translateY(-50%);
      font-size: 40px;;
      color: rgb(0, 0, 0);
      cursor: pointer;
      padding: 10px;
      z-index: 50;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    /* Description box */
    .description {
      margin-top: 40px;
      font-size: 16px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #000000;
      line-height: 1.6;
    }









/* FOOTER */
footer {
  background: linear-gradient(135deg, #000, #111);
  color: #fff;
  padding: 60px 40px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: 180px 150px 250px 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 150px;
  transition: transform 0.3s ease;
}
.footer-logo img:hover {
  transform: scale(1.1);
}

.footer-heading {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
}
.footer-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #ff7f00;
  margin-top: 8px;
  border-radius: 1px;
}

.footer-list {
  list-style: none;
  padding: 0;
}
.footer-list li {
  margin-bottom: 12px;
}
.footer-list a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #ccc;
  transition: color 0.3s, transform 0.3s;
}
.footer-list a:hover {
  color: #ff7f00;
  transform: translateX(5px);
}

.contact strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.contact p {
  margin: 5px 0;
  color: #bbb;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, transform 0.3s;
}
.social-links a:hover {
  color: #ff7f00;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 15px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
  transition: 0.7s ease color;
}

.footer-bottom a.nox {
  color: #aaa;
  font-weight: 600;
  text-decoration: none;
}
.footer-bottom a.nox:hover {
  color: #1eff00;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-logo img { width: 120px; }
  .footer-heading { font-size: 18px; margin-bottom: 12px; }
  .footer-list a { font-size: 15px; }
  .contact p { font-size: 14px; }
  .social-links a { font-size: 16px; }
  .footer-bottom { font-size: 10px; }
}

@media (max-width: 500px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-logo img { width: 100px; margin-bottom: 20px; }
  .footer-heading { font-size: 16px; }
  .footer-list a { font-size: 14px; }
  .social-links a { font-size: 14px; }
}
/* Hidden state */
.footer-top > div,
.footer-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* Visible state */
.footer-top > div.footer-visible,
.footer-bottom.footer-visible {
  opacity: 1;
  transform: translateY(0);
}




.leadership-section {
      text-align: center;
      padding: 40px 20px;
    }

    .leadership-section h2 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .leaders-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .leader-card {
      position: relative;
      overflow: hidden;
      border-radius: 5px;
    }

    .leader-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .leader-info {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      color: white;
      text-align: left;
    }

    .leader-info span.bio {
      display: inline-block;
      background: orangered;
      color: #fff;
      font-size: 12px;
      padding: 3px 8px;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .leader-info h3 {
      margin: 5px 0 2px;
      font-size: 18px;
    }

    .leader-info p {
      margin: 0;
      font-size: 14px;
      color: #ddd;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .leaders-grid {
        grid-template-columns: 1fr;
      }
      .leader-info {
        padding: 15px;
      }
    }
    footer {
  background: linear-gradient(135deg, #000, #111);
  color: #fff;
  padding: 60px 40px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: 180px 150px 250px 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 250px;
  transition: transform 0.3s ease;
  margin-right: 50px;
}
.footer-logo img:hover {
  transform: scale(1.1);
}

.footer-heading {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
}
.footer-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #ff7f00;
  margin-top: 8px;
  border-radius: 1px;
}
.footer-links{
    margin-left: 100px;
}
.footer-list {
  list-style: none;
  padding: 0;
}
.footer-list li {
  margin-bottom: 12px;
}
.footer-list a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #ccc;
  transition: color 0.3s, transform 0.3s;
}
.footer-list a:hover {
  color: #ff7f00;
  transform: translateX(5px);
}
.contact{
    margin-left: 50px;
}

.contact strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.contact p {
  margin: 5px 0;
  color: #bbb;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, transform 0.3s;
}
.social-links a:hover {
  color: #ff7f00;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 15px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
  transition: 0.7s ease color;
}

.footer-bottom a.nox {
  color: #aaa;
  font-weight: 600;
  text-decoration: none;
}
.footer-bottom a.nox:hover {
  color: #1eff00;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-logo img { width: 220px; }
  .footer-heading { font-size: 18px; margin-bottom: 12px; }
  .footer-list a { font-size: 15px; }
  .contact p { font-size: 14px; }
  .social-links a { font-size: 16px; }
  .footer-bottom { font-size: 10px; }
  .contact{
    margin-left: 0px;
  }
  .footer-links{
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-logo img { width: 200px; margin-bottom: 20px; }
  .footer-heading { font-size: 16px; }
  .footer-list a { font-size: 14px; }
  .social-links a { font-size: 14px; }
  .contact{
    margin-left: 0px;
  }
  .footer-links{
    margin-left: 0px;
  }
}
/* Hidden state */
.footer-top > div,
.footer-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* Visible state */
.footer-top > div.footer-visible,
.footer-bottom.footer-visible {
  opacity: 1;
  transform: translateY(0);
}
