  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
      overflow: hidden;
      background: #fff;
    }



body {
  opacity: 1;
  transition: opacity 0.5s ease;
}
body.fade-out {
  opacity: 1;
}
    /* Background video */
    .video-container {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    #soundToggle {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    z-index: 1;
    font-size: 30px;
    }
 

 
.logo {
  width: 15%;
    margin-top: 3rem;
    margin-left: 3rem;
    animation: logoFadeIn 1s forwards;
    /* animation-delay: 1s; */
}


/*homepage icons*/

/* Toggle Switch Styling */
.switch {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
  height: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 23px; 
  width: 23px;
  left: 4px; bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #78be21;
}

input:checked + .slider:before {
  transform: translateX(26px);
}
.sound-control {
  position: fixed;
bottom: 3.5rem;
    left: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #fff;
}


    /* Icons container */
    .icons-row {
      position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    display: flex
;
    align-items: flex-end;
    gap: 48px;
    }
     .icons-row a {
      text-decoration: unset;
     }

    /* Each icon circle */
    .icon {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: #ffffffbd;
      color: #fff;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .icon:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 12px rgba(0,0,0,0.5);
      background-color: #79be21;
    }
.icon:hover p {
color: #fff;
transform: scale(1.1);
}
    .icon p {
    font-size: 18px;
    font-weight: bold;
    color: #003da5;
    margin: 0;
    font-family: "Oswald", sans-serif;
    }

    /* Staggered sizes (to mimic curve) */
    .icon:nth-child(1) {width:130px; height:130px; position: relative; bottom: 4rem;}
    .icon:nth-child(2) {width:140px; height:140px;}
    .icon:nth-child(3) {width:150px; height:150px; position: relative; bottom: 2rem;}
    .icon:nth-child(4) {width:130px; height:130px; position: relative;}
    .icon:nth-child(5) {width:140px; height:140px; position: relative; bottom: 3rem;}
    .icon:nth-child(6) {width:170px; height:170px;}

    /* Responsive */
    @media (max-width:768px) {
      .icons-row {
        flex-wrap: wrap;
        justify-content: center;
        bottom: 10%;
      }
      .icon {
        width:80px !important;
        height:80px !important;
        font-size:12px;
      }
    }


    /*About Page css*/
.mtCust {
  margin-top: -10rem;
}
    .wrapper {
      height: 100%;
      width: 100%;
      position: relative;
      h1 {
        font: normal normal bold 80px / 120px Oswald !important;
        text-transform: inherit;
        color: #003da5;
        text-align: left;
      }
      span{
        color: #78be21 !important;
      }
      .read-more {
  display: inline-block;
        margin-top: 20px;
        font-size: 20px;
        text-decoration: none;
       text-align: left;
        width: 100%;
        transition: all 0.3s ease;
        color: #003da5;
        font-family: "Oswald", sans-serif;
}
.read-more:hover {
  /* background-color: #003da5!important;
  color: #fff; */
}
    }

    .section {
      position: absolute;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
      color: #000;
      text-align: center;
      opacity: 0;
      transition: opacity 1s ease;
      pointer-events: none;
      z-index: 0;
    }

    .section.active {
      opacity: 1;
      z-index: 1;
      pointer-events: auto; 
    }
.mapImg{
height: 400px!important;
    width: 100%;
    object-fit: cover;
        border-radius: 20px;
}
    /* .section:nth-child(1) { background: #1abc9c; }
    .section:nth-child(2) { background: #3498db; }
    .section:nth-child(3) { background: #9b59b6; }
    .section:nth-child(4) { background: #e67e22; } */

    /* Navigation wrapper */
    .nav-dots {
      position: fixed;
      right: 40px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: flex-start; /* so dots stay aligned left */
      gap: 50px;
      z-index: 10;
    }

    /* vertical line */
    .nav-dots::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 7px;
      width: 2px;
      background: #000;
      opacity: 0.4;
    }

    /* each nav item (dot + text) */
    .nav-item {
      display: flex
;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    opacity: 1;
    transition: all 0.3s;
    position: relative;
    }

    .nav-item .dot {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #ffffff;
    border: 3px solid #003da5;
      flex-shrink: 0;
      z-index: 1;
    }

    /* ✅ put text on right of dot */
    .nav-item span {
      order: 2;  /* text after dot */
    }

    .nav-item .dot {
      order: 1;  /* dot before text */
    }

    .nav-item.active {
      opacity: 1;
      font-weight: 600;
      transform: scale(1);
      color: #003da5;
    }

    .nav-item.active .dot {
      background: #003da5;
    border: 3px solid #003da5;
    transform: scale(1.2);
    }
     /* Hamburger button */
    .hamburger {
      position: fixed;
      top: 3rem;
    right: 3rem;
      width: 35px;
      height: 25px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      height: 4px;
      width: 100%;
      background: #78be21;
      border-radius: 2px;
      transition: 0.4s;
    }

    /* Bubble Sidebar */
    .sidebar {
      position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #dddddd;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20rem;
    align-items: flex-end;
    gap: 40px;
    clip-path: circle(0% at 90% 5%);
    transition: clip-path 1s ease-out;
    z-index: 1000;
    }

    .sidebar.active {
      /* clip-path: circle(70% at 90% 20%); */
      clip-path: circle(70% at 110% 10%) 
    }

    .sidebar a {
      text-decoration: none;
      color: #003da5;
      font-size: 25px;
      transition: color 0.3s;
      font-family: "Oswald", sans-serif;
    }

    .sidebar a:hover {
      color: #76bb20;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
      transform: rotate(43deg) translateY(15px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(315deg) translateY(-14px);
    }

    .stats-section {
  padding: 40px 0;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);  /* transparency */
  backdrop-filter: blur(10px);           /* frosted effect */
  border: 1px solid rgba(255, 255, 255, 0.3); /* subtle border */
  text-align: center;
  box-shadow: 0 8px 20px rgb(161 161 161 / 20%); /* floating */
   position: relative;
  transition: transform 0.3s ease;
  flex: 1;
 h4 {
  color: #003da5;
        font-size: 20px;
         font-family: "Oswald", sans-serif;
 }
 img {
  padding: 1rem;
    width: 50%;
 }
 .hkImg {
 width: 35%!important;
 }
}

.stat-box:hover {
  transform: translateY(-5px);
    background: #78be2157;
}
/* .g-bg{
      background: #78be2157;
} */
.stat-box h2 {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
  color: #003da5;
}

.stat-box .icon {
  font-size: 18px;
    margin-inline-start: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
        position: absolute;
    right: 8rem;
    top: 2rem;

}

.stat-box p {
 margin-top: 20px;
    color: #000;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 20px;
    text-transform: capitalize;
}
.percent {
   
    color: #000;
    background: #f4f4f4;
  height: 300px !important;
      border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        h2{
          font-size: 3rem;
    margin: 0;
    font-weight: bold;
    color: #003da5;
        }
        p{
           font-size: 20px;
    text-transform: capitalize;
    padding-top: 1rem;
        }
}
/* Special styling for the 3rd box */
.stat-bg {
  background: url('https://picsum.photos/500/300?grayscale') center/cover no-repeat;
  color: #fff;
}

.stat-bg h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.stat-bg .highlight {
  color: #8bc34a;
  font-size: 3rem;
}

.card-grid {
   display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 20px; /* space between cards */
 .card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.card img {
  width: 100%;
  display: block;
}
.overlay {
  padding: 10px;
}
  h3{
        font-family: "Oswald", sans-serif;
  }
  p{
    font-size: 16px;
  }
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay */
.card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 61 165 / 79%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 20px;
  text-align: center;
}

.card:hover img {
  transform: scale(1.1);
}

.card:hover .overlay {
  opacity: 1;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #003da5;
}
 .stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    font-family: Arial, sans-serif;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stat-card h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003399;
    margin: 0;
  }

  .stat-card p {
    margin-top: 10px;
    font-weight: 600;
    color: #000;
    font-size: 13px;
  }

  .swiper {
    width: 100%;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #003399;
  }

  .swiper-pagination-bullet {
    background: #003399;
  }


















    /* Fullscreen video */
    .intro-video {
      position: fixed; inset: 0;
      width: 100vw; height: 100vh;
      object-fit: cover; background:#000; z-index: 1;
    }

    /* UI (logo + menu) – hidden initially */
    .ui { position: fixed; z-index: 2; pointer-events: none; }
    .hidden { opacity: 0; visibility: hidden; }
    .visible { opacity: 1; visibility: visible; }

    /* Logo reveal */
    .logo {
      top: 18px; left: 18px; 
      transition: opacity .6s ease, transform .6s ease;
      transform: translateY(-8px);
    }
    .logo.visible { transform: translateY(0); }

    /* Bottom menu container */
    .menu {
      left: 50%; bottom: 28px; transform: translateX(-50%);
      display: flex; gap: 18px; align-items: center;
    }

    /* Menu items (circle buttons) */
    .menu-item {
      pointer-events: auto;
      background: #ffffff;
      color: #0a2e8a;
      border-radius: 999px;
      padding: 16px 22px;
      font: 600 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      box-shadow: 0 8px 24px rgba(0,0,0,.18);
      opacity: 0; visibility: hidden;
      transform: translateY(14px);
      transition: opacity .55s ease, transform .55s ease, visibility 0s linear .55s;
    }
    .menu-item.visible {
      opacity: 1; visibility: visible; transform: translateY(0);
      transition-delay: 0s; /* becomes immediate once visible */
    }

    /* Optional hover */
    .menu-item:hover { transform: translateY(-2px); }