  /* Import Google Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

  /* Base Styles */
  html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: white;
  }

  .icon {
    width: 150px;    /* set your desired width */
    height: auto;    /* auto height to keep aspect ratio */
    object-fit: contain; /* optional, good for certain layouts */
    display: block;  /* helps prevent inline spacing issues */
  }


  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }

  :root {
    /* Colors */
    --white-color-: #fff;
    --dark-color-: #252525;
    --primary-color-: #0041C7;
    --darkblue-color: #001f3f;
    --orange-color: #ff6600;

    /* Font Sizes */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.2rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Border Radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-l: 80px;
    --border-radius-circle: 50%;

    /* Max Width */
    --site-max-width: 1300px;
  }

  /* Reset basic tags */
  ul {
    list-style: none;
  }

  a {
    text-decoration: none;
  }

  button {
    cursor: pointer;
    border: none;
    background: none;
  }

  img {
    width: 100%;
  }

  /* Content Wrapper */
  .section-content {
    margin: auto;
    padding: 20px;
    max-width: var(--site-max-width);
  }

  /* Section Title */
  .section-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-l);
  }

  .section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto;
    border-radius: var(--border-radius-s);
    background: linear-gradient(90deg, #0041C7, #00aaff); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);

  }

  /* Header and Navbar */
  header {
    background: var(--primary-color-);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;

    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 1s ease-out forwards;
  }
    @media (max-width: 900px) {
    body {
      padding-top: 0; /* remove extra gap on mobile */
    }
  }

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between logo and nav menu */
  padding: 20px;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;

}

.navbar .nav-logo .logo-text {
  color: var(--white-color-);

}

.navbar .logo-img {
 width: 10%;
 height: 10%;
}

.navbar .nav-menu {
  display: flex;
  gap: 1px;
  align-items: center;
}

.navbar .nav-item .nav-link {
  display: inline-block;
  padding: 12px 18px;
  color: var(--white-color-);
  border-radius: var(--border-radius-l);
  font-size: large;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  transition: all 1.3s ease;
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
}

  .navbar .nav-item .nav-link:hover {
    background: var(--darkblue-color);
    color: var(--white-color-);
    transform: scale(1.05);
  }

  .navbar .nav-item .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2); /* subtle highlight for active page */
  }

  .navbar :where(#menu-close-button, #menu-open-button) {
    display: none;

  }


  @keyframes slideDown {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .navbar .nav-item {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInNav 1.6s ease forwards;
  }

  .navbar .nav-item:nth-child(1) { animation-delay: 0.3s; }
  .navbar .nav-item:nth-child(2) { animation-delay: 0.4s; }
  .navbar .nav-item:nth-child(3) { animation-delay: 0.5s; }
  .navbar .nav-item:nth-child(4) { animation-delay: 0.6s; }
  .navbar .nav-item:nth-child(5) { animation-delay: 0.7s; }

  @keyframes fadeInNav {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* match your navbar height */
  }


  /* Home Section */
  .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;

    background: url("chit1.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: scroll;

    /* No animation on the big background (removes lag) */
    opacity: 1;
    transform: none;

    padding-bottom: 80px;
  }

  /* Content inside hero */
  .hero-section .section-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 40vh;
    color: var(--dark-color-);
    justify-content: space-between;
    gap: 20px;

    /* Animate only the content */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    will-change: opacity, transform;
  }

  /* When in view (fade in content only) */
  .hero-section.show .section-content {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-section .hero-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section .hero-details .title {
    font-size: var(--font-size-l);
    font-family: arial, sans-serif;
  }

  .hero-section .hero-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-m);
  }

  .hero-section .hero-details .button-contact-us {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: #f9f9f9;
    border-radius: var(--border-radius-m);
    background: #008cff;
    margin-top: 70px;
    transition: 0.3s ease;

    display: inline-block !important;
    position: relative;
    z-index: 3;
  }

  .hero-section .hero-details .button-contact-us:hover {
    color: var(--dark-color-);
    border-color: var(--dark-color-);
    background: transparent;
  }

  .hero-section .hero-image-wrapper {
    max-width: 400px;
    margin-right: 50px;
    order: 3;

  }

  .hero-section .hero-image-wrapper::after {
    content: none !important;
  }

  /* Mobile fix */
  @media (max-width: 900px) {
    .hero-section {
      background-attachment: scroll;
    }
  }
  /*desktop*/
  @media (min-width: 1024px) {
    .hero-section .hero-image-wrapper {
      transform: translateY(90px); /* only on desktop */
    }
  }



  /* About Section */
  .about-section {
    min-height: 100vh;
    padding: 80px 0; /* equal top and bottom */
    background: var(--darkblue-color);

  }

  .about-section .section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;    
  }

  .about-section .about-image-wrapper .about-image {
    width: 180px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-s);
  }

  .about-section .about-details {
    max-width: 100%;
  }

  .about-section .about-details .section-title {
    margin-bottom: 5px;
    padding: 0;
    color: #fff;
  }

  .about-section .about-details .text {
    line-height: 30px;
    margin: 0 auto 30px;
    text-align: justify;
    color: #fff;
    max-width: 1000px;
  }

  .about-section .social-link-list {
    display: flex;
    justify-content: center;  
    align-items: center;
    gap: 20px;
  }

  .about-section .social-link-list .social-link {
    color: var(--white-color-);
    transition: 0.2s ease;
  }

  .about-section .social-link-list .social-link:hover {
    color: var(--primary-color-);
  }

/* Vision & Mission */
.vision-wrapper {
  display: flex;
  gap: 30px;
  margin: 50px auto 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;   /* matches .about-section .about-details .text max-width */
  width: 100%;
}

/* Desktop: align directly under the About text block, not full page width */
@media (min-width: 901px) {
  .vision-wrapper {
    padding: 0 50px;
  }
}

.vision-box,
.mission-box {
  flex: 1;
  min-width: 260px;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-s);
  padding: 30px 25px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-box:hover,
.mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.vm-title {
  font-size: var(--font-size-l);
  color: var(--white-color-);
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.vm-title::after {
  content: "";
  width: 50px;
  height: 3px;
  display: block;
  margin: 10px auto 0;
  border-radius: var(--border-radius-s);
  background: linear-gradient(90deg, #0041C7, #00aaff);
}

.vision-box .text,
.mission-box .text {
  color: var(--white-color-);
  line-height: 28px;
  text-align: center;
  margin: 0;
}

/* Mobile view */
@media (max-width: 900px) {
  .vision-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }

  .vision-box,
  .mission-box {
    width: 100%;
  }
}
/* Make boxes feel clickable */
.vision-box,
.mission-box {
  cursor: pointer;
}

/* Overlay background */
.vm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1.35s ease, visibility 1.35s ease;
  padding: 20px;
}

.vm-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* Zoomed content card */
.vm-overlay-content {
  background: var(--darkblue-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-s);
  padding: 40px 35px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vm-overlay.active .vm-overlay-content {
  transform: scale(1);
  opacity: 1;
}

.vm-overlay-title {
  color: var(--white-color-);
  font-size: var(--font-size-xl);
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.vm-overlay-title::after {
  content: "";
  width: 60px;
  height: 4px;
  display: block;
  margin: 12px auto 0;
  border-radius: var(--border-radius-s);
  background: linear-gradient(90deg, #0041C7, #00aaff);
}

.vm-overlay-text {
  color: var(--white-color-);
  line-height: 30px;
  font-size: var(--font-size-m);
}

/* Close button */
.vm-overlay-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease;
}

.vm-overlay-close:hover {
  transform: scale(1.2);
}

/* Mobile tweak */
@media (max-width: 900px) {
  .vm-overlay-content {
    padding: 30px 20px;
  }
}
  

  /* People Section */
  .people-section {
    padding: 50px 0 100px;
    background: linear-gradient(90deg, #008cff, #00e0ff);
  }

  .people-section .people {
    display: flex;
    padding: 35px;
    flex-direction: column;
    align-items: center;
  }

  .people-section .people .user-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: 80px;

    /* Border */
    border: 6px solid #fff; /* white border, can change to your theme color */

    /* Amazing shadow */
    box-shadow: 
      0 8px 20px rgba(0, 0, 0, 0.25),   /* main soft shadow */
      0 0 0 6px rgba(0, 140, 255, 0.2); /* glowing ring effect */
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Add a hover effect */
  .people-section .people .user-image:hover {
    transform: scale(1.05); /* pop out */
    box-shadow: 
      0 12px 30px rgba(0, 0, 0, 0.3),
      0 0 15px rgba(0, 140, 255, 0.5); /* stronger glow */
  }

  .people-section .people .name {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
  }

  .people-section .people .feedback {
    line-height: 25px;
  }
  .people-section .section-content{
    color: #f9f9f9;
  }
  .people-section .section-title{
    color: #f9f9f9;
  }


  /* Contact Section */
  .contact-section {
    padding: 50px 100px;
    background: var(--white-color-);
  }

  .contact-section .section-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
  }

  .contact-section .contact-info-list .contact-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
  }

  .contact-section .contact-info-list .contact-info i {
    font-size: var(--font-size-m);
  }

  .contact-section .contact-form .form-input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: var(--white-color-);
    border-radius: var(--border-radius-s);
    border: 1px solid #ccc;
  }

  .contact-section .contact-form .form-input:focus {
    border-color: var(--orange-color);
  }

  .contact-section .contact-form .textarea {
    height: 100px;
    padding: 12px;
    resize: vertical;
  }

  .contact-section .contact-form .submit-button {
    padding: 10px 26px;
    color: #ffffff;
    font-weight: 500;
    background: #5197f3;
    border-radius: var(--border-radius-m);
    border: 1px solid var(--white-color-);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .contact-section .contact-form .submit-button:hover {
    background: #346bbd;
  }

  .contact-section .contact-form .submit-button:active {
    transform: scale(0.95);
    background: #f8f8f8;
  }



  /*Mobile View*/
  @media screen and (max-width: 900px) {
    /* Navbar adjustments */
    header .navbar {
      padding: 10px 20px;
      justify-content: space-between;
    
    }

    /* Blur background when menu is open */
     body.show-mobile-menu::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 10, 30, 0.35);
  z-index: 999;
}

  /* 👇 ADD THIS RIGHT HERE — locks the page from scrolling */
    html.show-mobile-menu,
    body.show-mobile-menu {
      overflow: hidden;
      position: fixed;
      width: 100%;
      height: 100%;
    }

    /* Show menu icons */
    .navbar :where(#menu-close-button, #menu-open-button) {
      display: block;
      font-size: 24px;
      color: var(--white-color-);
      cursor: pointer;
    }

    .navbar #menu-close-button {
      position: absolute;
      right: 20px;
      top: 20px;
      color: #fff;
    }

    .navbar .nav-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 260px;
  height: 100vh;               /* was 1800% — fixed to real viewport height */
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 0;
  justify-content: flex-start;
  align-items: center;
  padding-top: 90px;

  /* --- Modern glass effect --- */
  background: linear-gradient(
    160deg,
    rgba(0, 65, 199, 0.55),
    rgba(0, 31, 63, 0.65)
  );
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.35);
}

    /* Show mobile menu when active */
    body.show-mobile-menu .navbar .nav-menu {
      left: 0;
      
    }

   .navbar .nav-item a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 40px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.navbar .nav-item a:hover,
.navbar .nav-item a:active {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  transform: translateY(-2px);
}
    

    /* Hero section stack */
    .hero-section .section-content {
      flex-direction: column;
      text-align: center;
      gap: 20px;
      padding: 20px;
    }

    .hero-image {
      width: 200px;
    }

    /* About section stack */
    .about-section .section-content {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }

    .about-section .about-image-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    .about-section .about-details {
      max-width: 100%;
      padding: 0 15px;
    }

    /* Contact section */
    .contact-section {
      padding: 40px 20px;
    }

    .contact-section .section-content {
      flex-direction: column;
      gap: 20px;
    }

    .contact-section .contact-form .form-input,
    .contact-section .contact-form .textarea {
      width: 100%;
    }

    /* default (hidden) state for menu items */
  .navbar .nav-menu .nav-item,
  .navbar .nav-menu .nav-item > a {    /* cover both li.nav-item and li > a cases */
    opacity: 0;
    transform: translateY(-12px);
    /* don't set animation here so it won't run on page load */
  }

  /*run animation only when menu is opened*/
  body.show-mobile-menu .navbar .nav-menu .nav-item,
  body.show-mobile-menu .navbar .nav-menu .nav-item > a {
    animation: navFadeIn 380ms ease forwards;
  }

  body.show-mobile-menu {
  overflow: hidden;
  position: fixed;
  width: 100%;
  /* top will be set dynamically by JS below to preserve scroll position */
}

  /* staggered delays gallery image */
  body.show-mobile-menu .navbar .nav-menu .nav-item:nth-of-type(1),
  body.show-mobile-menu .navbar .nav-menu .nav-item:nth-of-type(1) > a { animation-delay: 0.06s; }
  body.show-mobile-menu .navbar .nav-menu .nav-item:nth-of-type(2),
  body.show-mobile-menu .navbar .nav-menu .nav-item:nth-of-type(2) > a { animation-delay: 0.14s; }
  body.show-mobile-menu .navbar .nav-menu .nav-item:nth-of-type(3),
  body.show-mobile-menu .navbar .nav-menu .nav-item:nth-of-type(3) > a { animation-delay: 0.22s; }
  body.show-mobile-menu .navbar .nav-menu .nav-item:nth-of-type(4),
  body.show-mobile-menu .navbar .nav-menu .nav-item:nth-of-type(4) > a { animation-delay: 0.30s; }

  @keyframes navFadeIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }


  /* Hide button */
  #menu-open-button,
  #menu-close-button {
    display: none !important;
  }

  /* Hamburger base */
  .menu-icon {
    display: none; /* show only on mobile */
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }

  .menu-icon span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  /* Show mobile view */
  @media screen and (max-width: 900px) {
    .menu-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 56px;       /* bigger clickable area */
      height: 56px;
      padding: 14px;     /* space inside */
    }

    /* Open state bars */
    .menu-icon span {
      width: 32px;       /* long bars */
      height: 3px;       /* thin, clean look */
      background: #fff;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-icon span + span {
      margin-top: 6px;   /* even spacing between bars */
    }

    /* Close (X) state */
    body.show-mobile-menu .menu-icon span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    body.show-mobile-menu .menu-icon span:nth-child(2) {
      opacity: 0;
    }

    body.show-mobile-menu .menu-icon span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }


    
  }

  /*home align*/
  @media (max-width: 768px) {
    
    .hero-section {
      min-height: auto;         
      padding-top: 20px;         
      padding-bottom: 20px;      
      display: flex;
      flex-direction: column;
      justify-content: flex-start; 
      align-items: flex-start;     
    }

    /* Hero content wrapper */
    .hero-section .section-content {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 15px;
      width: 100%;
      padding: 0 20px;           
    }

    /* Hero details (title, subtitle, button) */
    .hero-section .hero-details {
      order: 1;
      margin-top: 0;              
      align-items: flex-start;
    }

    .hero-section .hero-details .button-contact-us {
      display: inline-block;
      margin-top: 40px;           
    }

    /* Image below text, aligned right closer to text */
    .hero-section .hero-image-wrapper {
      order: 2;
      align-self: flex-end;       
      margin-top: 10px;          
      max-width: 280px;
    }

    /* Remove pseudo-button after image */
    .hero-section .hero-image-wrapper::after {
      content: none;
    }
  }

  /*About view*/
  @media (max-width: 900px) {
    .about-section {
      padding: 60px 0; 
    }

    .about-section .section-content {
      padding: 0 0; 
      width: 100%;
      margin: 0; 
    }

    .about-section .about-details {
      padding: 0 10px; 
    }
  }

  /*Contact view*/
  @media screen and (max-width: 900px) {
    .contact-section .section-title {
      padding: 30px 0 40px; 
    }

    .contact-section .section-content {
      gap: 24px; 
    }

    .contact-section .contact-info-list .contact-info {
      margin: 10px 0; 
    }
  }

  /* Default hidden state */
  .about-section .about-image-wrapper,
  .about-section .about-details {
    opacity: 0;
    transition: all 0.7s ease;
  }

  /* Image comes from right */
  .about-section.animate-in .about-image-wrapper {
    transform: translateX(100px);
    opacity: 0;
  }

  .about-section.visible .about-image-wrapper {
    transform: translateX(0);
    opacity: 1;
  }

  /* Text fades in and pops up */
  .about-section.animate-in .about-details {
    transform: translateY(50px);
    opacity: 0;
  }

  .about-section.visible .about-details {
    transform: translateY(0);
    opacity: 1;
  }


  /**/
  .gallery-section .gallery-image {
    opacity: 0;
    transform: translateX(100px) scale(0.95);
    transition: all 0.6s ease-out;
    will-change: transform, opacity;
  }

  /* When visible */
  .gallery-section.visible .gallery-image {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  /**/

  .people-section .people {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
  }

  .people-section.visible .people {
    opacity: 1;
    transform: translateY(0);
  }
  /**/
  .animate-contact {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
  }

  .contact-section.visible .animate-contact {
    opacity: 1;
    transform: translateY(0);
  }


  /*about desktop*/
  @media (min-width: 1024px) {
    .gallery-section {
        min-height: auto;      
        padding: 140px 0; 
        
    }
  }

  /*nav title*/
  @media (max-width: 768px) {
    .navbar .nav-logo .logo-text {
      white-space: nowrap; 
      font-size: 16.5px;     
    }
  }

  @media (max-width: 768px) {
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }

  }

  /* Mobile Gallery Alternate Layout */
  @media (max-width: 600px) {
    .gallery-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .gallery-item {
      width: 80%;          
      margin: 0 auto;       
    }

    /* Alternate left/right */
    .gallery-item:nth-child(odd) {
      margin-left: 0;       
      margin-right: auto;
    }

    .gallery-item:nth-child(even) {
      margin-left: auto;   
      margin-right: 0;
    }
  }


  /* Full-screen home section on mobile */
  @media (max-width: 900px) {
    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
    }

    /* Remove top padding that pushes content down */
    body {
      padding-top: 0 !important;
    }

    /* Hero section */
    .hero-section {
      min-height: 100vh !important;  
      padding: 0 !important;         
    }

    /* Hero content: center vertically */
    .hero-section .section-content {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start; 
      padding: 0 20px;         
    }

    /* About section: start below home section */
    .about-section {
      min-height: 100vh !important;
      padding: 0 !important;
    }
  }

  @media (max-width: 768px) {
    html {
      scroll-padding-top: 128px; 
    }
  }



  /* Default (smooth scroll for all devices) AND ADJUST FOR SCREEN VIEW */
  html {
    scroll-behavior: smooth;
  }

  /* Desktop screens (navbar height ~80px) */
  @media (min-width: 901px) {
    html {
      scroll-padding-top: 80px; 
    }
  }

  /* Mobile screens (navbar height ~128px) */
  @media (max-width: 900px) {
    html {
      scroll-padding-top: 40px; 
    }
  }

/*-----------------------START OF DROPDWON-----------------------------------------------------------*/
  /* Parent dropdown */
  .nav-item.dropdown {
    position: relative;       
    flex: none;        
    transform: translateY(10px); 
    transition: all 0.3s ease;   
    
  }

  /* Parent link with icon */
  .nav-item.dropdown > a {
    display: inline-flex;       
    align-items: center;        
    gap: 4px;                  
    padding: 10px 16px;         
    text-decoration: none;
    color: #000;
    outline: none;              
    user-select: none;        
  }

  /* Make the icon stable */
  .nav-item.dropdown > a i {
    font-style: normal;         
    width: 14px;               
    display: inline-block;
    text-align: center;
    
  }

  /* Dropdown menu */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;                  
    left: 0;                    
    background: #fff;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 1000;
    width: 250px; 
    max-height: 250px;  
    overflow-y: auto;   
    overflow-x: hidden; 
            
  }

  /* Ensure dropdown links don't move */
  .dropdown-menu li a {
    display: block;
    padding: 10px 16px;      
    color: #000 !important;
    text-decoration: none;
    white-space: normal;
    text-align: left;    
     
      
  }

  /* Hover/focus styles */
  .dropdown-menu li a:hover,
  .dropdown-menu li a:focus,
  .dropdown-menu li a:active {
    background: #f0f0f0;     
    padding: 10px 16px;       
    color: #000 !important;  
    text-decoration: none;
    transition: transform 0.5s ease;      
  }

  @media (hover: hover) and (pointer: fine) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-item.dropdown.active .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

  /* Mobile dropdown */
  @media (max-width: 900px) {
    .nav-item.dropdown {
      position: relative;
      width: 100%;
      text-align: center; 
    }

    
    .nav-item.dropdown > .nav-link {
      display: inline-block;
      padding: 8px 14px;              
      color: #fff !important;
    
      border-radius: 16px;            
      transition: transform 0.2s ease;
    }

    /* Hover effect for "More" */
    .nav-item.dropdown > .nav-link:hover {
      transform: translateY(-2px);
    }
/********************************** COLOR OF NAV CHOICES *****************************/
    /* Dropdown menu */
    body.show-mobile-menu .dropdown-menu {
  position: static;
  width: 88%;
  margin: 10px auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  text-align: center;
  animation: dropdownFadeIn 0.4s ease forwards;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4px 0;
}

body.show-mobile-menu .dropdown-menu li a {
  display: block;
  color: #fff !important;
  padding: 12px 16px;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 10px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

body.show-mobile-menu .dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
    
  /* 🧹 Scrollbar styling for mobile only */
    body.show-mobile-menu .dropdown-menu::-webkit-scrollbar {
    width: 5px;
    }

    body.show-mobile-menu .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
    margin-block: 0; 
    border-radius: 3;
    }

    body.show-mobile-menu .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    border: 0px solid transparent;
    }

    body.show-mobile-menu .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.7);
    }

    .dropdown-menu hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* light line for mobile blue bg */
    margin: 4px 0;  /* small vertical spacing */
    }

    .dropdown-menu .divider {
  height: 1px;
  background: rgba(255,255,255,0.3); /* for blue bg mobile */
  margin: 4px 0;
}

@media (min-width: 901px) {
  .dropdown-menu .divider {
    background: #ccc; /* desktop */
  }
}

/*-----------------------END OF DROPDWON-----------------------------------------------------------*/
@media (min-width: 901px) {
  .dropdown-menu hr {
    border-top: 1px solid #ccc; /* neutral gray line for desktop */
  }
}

  }

  /* Animation in mobile */
  @keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /*agsu*/
  .nav-logo {
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--white-color-);
  white-space: nowrap;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 14px;
  }
}
  /*gap*/
  .section-title1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-top: 110px;      /* space above */
    margin-bottom: 20px;   /* space below */
  }

  .section-title1::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto;
    border-radius: var(--border-radius-s);
    background: linear-gradient(90deg, #0041C7, #00aaff); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);

  }


  /*Mobile view agsu */
  @media (max-width: 768px) {
    .section-title1 {
      margin-top: 110px;
      margin-bottom: 15px;
      font-size: 22px;
    }
  }


 /* Radiobutton */
.radio-box {
  background: #fff;
  border: 2px solid #007bff;
  border-radius: 12px;
  padding: 20px 30px;
  width: 100%;              /* ✅ full width responsive */
  max-width: 300px;         /* ✅ mobile size */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  margin: 50px auto;
}

/* Title */
.radio-box h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

/* Group of radio buttons (grid layout) */
.radio-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* ✅ always 2 cols */
  gap: 12px 20px;
}

/* Each label as flex so radio + text align properly */
.radio-options label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  word-break: break-word;   /* ✅ stop lampas text */
}

/* Radio buttons */
.radio-options input[type="radio"] {
  margin-right: 8px;
  accent-color: #007bff;
}

/* Desktop view: wider rectangle */
@media (min-width: 768px) {
  .radio-box {
    max-width: 500px;       /* ✅ expand only on desktop */
    padding: 30px 40px;
  }

  .radio-options {
    gap: 20px 40px; 
  }
}

/* ✅ Special fix for EMU (last radio centered below) */
.radio-box.emu .radio-options label:last-child {
  grid-column: 1 / 3;        /* span across both columns */
  justify-content: center;   /* center content */
  text-align: center;        /* ensure label text is centered */
}

  /* AGSU MAIN */
  .user-image1 {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin: 40px auto 20px;
    border-radius: 80px;
    display: block;       

    /*Border*/
    border: 6px solid #fff;

    /*shadow*/
    box-shadow: 
      0 8px 20px rgba(0, 0, 0, 0.25),
      0 0 0 6px rgba(0, 140, 255, 0.2);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /*Hover effect*/
  .user-image1:hover {
    transform: scale(1.1); 
    box-shadow: 
      0 12px 30px rgba(0, 0, 0, 0.35), 
      0 0 0 8px rgba(0, 140, 255, 0.4); 
  }
  .name1 {
    margin: 8px 0 4px 0;           
    font-size: var(--font-size-m);
    text-align: center;         
    display: block;            
  }

  .feedback1 {
    line-height: 35px;
    text-align: center;                 
    display: block;
  }

  /* Collection - Section */
  .people-section1 {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;   /* section fills screen height */
  padding: 50px 0;     /* remove bottom 100px gap */
  background: linear-gradient(90deg, #008cff, #00e0ff);
  box-sizing: border-box;
  margin-top: 0;       /* no extra gap above */
  }

  .people-section1 .people2 {
    display: flex;
    padding: 35px;
    flex-direction: column;
    align-items: center;
  }

  .people-section1 .people2 .user-image2 {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: 80px;

    /* Border */
    border: 6px solid #fff; 

    /* shadow */
    box-shadow: 
      0 8px 20px rgba(0, 0, 0, 0.25),   
      0 0 0 6px rgba(0, 140, 255, 0.2); 
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .people-section1 .people2 .user-image2:hover {
    transform: scale(1.05); 
    box-shadow: 
      0 12px 30px rgba(0, 0, 0, 0.3),
      0 0 15px rgba(0, 140, 255, 0.5); 
  }

  .people-section1 .people2 .name2 {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
  }

  .people-section1 .people2 .feedback2 {
    line-height: 25px;
  } 

  .people-section1 .section-content1 {
    color: #ffffff;
  }

  .people-section1 .section-title1 {
    color: #ffffff;
  }


  /* Pagination dots closer */
  .swiper-pagination {
    bottom: 20px !important;  /* default is ~40px, reduce it */
  }

  /* Navigation arrows closer to center of the slider */
  .swiper-button-prev,
  .swiper-button-next {
    top: 50% !important;        /* vertically center */
    transform: translateY(-50%);
  }

  /* If arrows feel too far left/right, pull them in */
  .swiper-button-prev {
    left: 20px !important;      /* default is ~40px */
  }
  .swiper-button-next {
    right: 20px !important;     /* default is ~40px */
  }


  /* all right reserve*/
  .title1{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    margin-top: 20px;
  }

  /*NewConnection Section*/

/* Service container */
.service1 {
  margin: 20px auto;
  text-align: center;
}

.service-image1 {
  display: flex;
  width: 100%;
  height: auto;
  max-width: 450px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .service-image1 {
    width: 100%;
    height: 500px;
    max-width: 100%;
  }
}

.service-image1:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Modal */
.image-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-modal.show {
  display: flex;
  opacity: 1;
}

.image-modal img {
  max-width: 95%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s ease;
}

.image-modal.show img {
  transform: scale(1);
  opacity: 1;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

/* Next/Prev */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  transition: 0.3s;
  user-select: none;
  opacity: 0.8;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
  color: #ddd;
  transform: scale(1.2);
}

/* Radiobutton for service */
.radio-box1 {
  background: #fff;
  border: 2px solid #007bff;
  border-radius: 12px;
  padding: 20px 30px;
  width: 100%;              /* ✅ full width responsive */
  max-width: 300px;         /* ✅ mobile size */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  margin: 50px auto;
}

/* Title */
.radio-box1 h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

/* Group of radio buttons (grid layout) */
.radio-options1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* ✅ 2 cols by default */
  gap: 12px 20px;
}

/* Each label as flex so radio + text align properly */
.radio-options1 label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  white-space: normal;       /* ✅ allow wrapping */
  word-break: break-word;    /* ✅ stop overflow */
  line-height: 1.4;          /* ✅ better spacing */
  font-size: 14px;
}

/* Radio buttons */
.radio-options1 input[type="radio"] {
  margin-right: 8px;
  accent-color: #007bff;
}

/* Desktop view */
@media (min-width: 768px) {
  .radio-box1 {
    max-width: 500px;       
    padding: 30px 40px;
  }

  .radio-options1 {
    gap: 20px 40px; 
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .radio-options1 {
    grid-template-columns: 1fr;   
    gap: 10px;
  }
}

/* DROP DOWN TO SERVICE */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}



/* Optional: style dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* Smooth slide animations */
.image-modal img.slide-left {
  animation: slideLeft 0.4s ease forwards;
}

.image-modal img.slide-right {
  animation: slideRight 0.4s ease forwards;
}

@keyframes slideLeft {
  from { transform: translateX(100%) scale(0.9); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(-100%) scale(0.9); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}

/* Zoom when opening */
.open-anim {
  animation: zoomIn 0.4s ease forwards;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/*******************************************************************************************/

   .form-button {
  display: block;
  margin: 20px auto; /* Centered on mobile */
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #1877f2;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.form-button:hover {
  background-color: #145dbf;
}

/* 🖥️ Desktop view: move slightly to the side */
@media (min-width: 768px) {
  .form-button {
    margin: 20px auto 20px 10%; /* adjust the last value (10%) to move more or less */
    width: fit-content; /* keeps it compact */
  }
}





/*******************************************************************************************/
  
/* Water System section*/
.section-title1 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Default: mobile-friendly (100% width) */
.service1 {
  text-align: center;   /* Keeps image centered */
  margin: 0 auto 30px;
}

.service-image1 {
  width: 100%;
  height: auto;
  max-width: 500px;     /* Prevents overly wide images */
  display: block;
  margin: 0 auto;       /* Centers the image */
  border-radius: 10px;
}

/* Desktop view - smaller image but still centered */
@media (min-width: 1024px) {
  .service1 {
    display: inline-block;
    text-align: center; /* Keeps alignment consistent */
    margin: 20px;
    vertical-align: top;
  }

  .service-image1 {
    width: 250px;       /* Smaller fixed width for desktop */
    height: auto;
  }

  .Water-System {
    text-align: center; /* Centers title and all services inside */
  }
}


/*******************************************************************************************/
/*Service Section*/
.service1 {
  text-align: center;
  margin: 20px auto;
}

.service-image1 {
  width: 90%;            /* Takes up 90% of container width */
  height: auto;
  max-width: 700px;      /* Prevents it from stretching too wide */
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* Desktop view - keep same 1-down layout but large and centered */
@media (min-width: 1024px) {
  .new-connection {
    text-align: center;
  }

  .new-connection .service1 {
    display: block;      /* Force 1 image per line */
    margin: 30px auto;
  }

  .new-connection .service-image1 {
    width: 80%;          /* Large but still responsive */
    max-width: 800px;    /* Limit maximum width to avoid stretching */
    height: auto;
  }
}

/*******************************************************************************************/
  
/* Advisory section*/
/* --- Swiper Container --- */
.swiper {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding-bottom: 40px;
}

/* --- Slide Item --- */
.people2 {
  list-style: none;
  text-align: center;
}

/* --- Image Style --- */
.user-image2 {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.user-image2:hover {
  transform: scale(1.03);
}

/* --- Description Text --- */
.Desciption {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-top: 8px;
}

/* --- Feedback Text --- */
.feedback2 {
  display: block;
  font-style: normal;
  color: #555;
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* --- Navigation Buttons --- */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
  transition: color 0.3s ease, transform 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #007bff;
  transform: scale(1.1);
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .Desciption {
    font-size: 0.95rem;
  }

  .feedback2 {
    font-size: 0.85rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #555;
  }
}

/* Overlay background blur */
/* === Image Zoom Overlay === */
.image-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* Zoomed image */
.image-overlay img {
  max-width: 92%;
  max-height: 85%;
  border-radius: 14px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.image-overlay.active img {
  transform: scale(1);
}

/* Buttons */
.overlay-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px 14px;
  transition: background 0.3s, transform 0.3s;
  user-select: none;
  z-index: 3001;
}

.overlay-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.overlay-prev {
  left: 25px;
}

.overlay-next {
  right: 25px;
}

/* Close button */
.overlay-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 30px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 5px 10px;
  transition: background 0.3s;
  z-index: 3001;
}
.overlay-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* --- Mobile Optimized --- */
@media (max-width: 768px) {
  .overlay-close {
    display: none;
  }
  .overlay-btn {
    font-size: 44px;
    padding: 8px 12px;
  }
  .overlay-prev {
    left: 15px;
  }
  .overlay-next {
    right: 15px;
  }
}

.feedback3 {
  cursor: pointer;
  color: #1877f2; 
  text-decoration: underline;
}
.feedback3:hover {
  opacity: 0.8;
}


  .title1 {
    pointer-events: none; 
    cursor: default;      
    text-align: center;   
    padding: 10px 0;
  }
