*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}
body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* --- HEADER --- */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 30px 50px;
     /* background-color: rgb(2, 2, 93); */
     background-color: transparent;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }
    header.scrolled {
     backdrop-filter: blur(7px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.029);
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      z-index: 1001;
      background: #00092d33;
    }

#logo-in-header {
  width: 50px;
  /* opacity: 0;
  transition: opacity 0.8s ease; */
}

    .logo {
      width: 70px;
      position: relative;
    }
    .log {
      width: 70px;
    }

    .navbar {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .nav-list {
      display: flex;
      list-style: none;
      gap: 40px;
    }

    .nav-item a {
      text-decoration: none;
      color: orange;
      font-size: 16px;
      letter-spacing: 1px;
      transition: 0.3s;
      font-family: 'Outfit', sans-serif;
    }

    .nav-item a:hover {
      color: #bfdcd9;
      border-bottom: 1px solid orange;
    }

    .nav-item.active a {
      color: #bfdcd9;
      border-bottom: 1px solid orange;
    }

    .cta {
      background: orange;
      border: none;
      padding: 10px 24px;
      color: white;
      font-size: 14px;
      cursor: pointer;
      position: relative;
      font-family: 'Outfit', sans-serif;
      transition: 0.3s ease-in;
      border-radius: 8px;
    }

    .cta:hover {
      background: none;
      color: orange;
        border: 1px solid orange;
    }

  /* .hero {
    background-image: url('herobackground2.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh; 
} */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* adjust opacity */
    backdrop-filter: blur(2px); /* optional: adds a blur effect */
    -webkit-backdrop-filter: blur(2px); /* for Safari */
    z-index: 1;
}

/* Make sure your section content stays above the overlay */
.hero> * {
    position: relative;
    z-index: 2;
}

.hero {
    display: flex;
    align-items: center;   /* Vertical center */
    justify-content: center; /* Horizontal center */
    height: 100vh; /* Full screen height */
    position: relative;
    text-align: center;
    background: url('herobackground2.png') no-repeat center center/cover;
}

.hero-content {
    color: white;
    padding: 30px 20px;
    z-index: 2;
    margin-top: -70px;
     /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
} 

    
    .hero h1 {
        font-size: 57px;
        margin-bottom: 20px;
        font-family: 'Outfit', sans-serif;
    }
    
     .hero h1 span{
        font-size: 57px;
        margin-bottom: 20px;
        font-family: 'Outfit', sans-serif;
        color: orange;
    }
    .hero p {
        font-size: 20px;
        margin-bottom: 30px;
        font-family: 'Outfit', sans-serif;
    }
    .hero a{
        text-decoration: none;
    }
    
    .hero .cta {
        background: orange;
        border: none;
        padding: 12px 28px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        position: relative;
        font-family: 'Outfit', sans-serif;
        transition: 0.3s ease-in;
        border-radius: 8px;
    }
    
    .hero .cta:hover {
        background: none;
        color: orange;
        border: 1px solid orange;
    }

 

.services {
    display: flex;
    justify-content: space-between;
    padding: 60px 40px 0 40px;
    position: absolute;
    gap: 20px;
    /* bottom: 40px;*/
    left: 50%; 
    transform: translateX(-50%);
    z-index: 3;
    top: 270px
    
}

.card {
  min-width: 240px;
  height: 120px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    text-align: center;
    color: orange;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    background: none;
    border: 1px solid orange;
    color: white;
}

.card i {
    font-size: 32px;
    color: white; /* icon color */
    margin-bottom: 12px;
    display: block;
}


.help{

    /* display: flex; */
   align-items: center;   
    /*  justify-content: center;  */
    height: 108vh; /* Full screen height */
    position: relative;

    background: url('helpbackground.png')  no-repeat center center/cover;
    background-attachment: fixed;
   
    
}

.help::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* adjust opacity */
    backdrop-filter: blur(5px); /* optional: adds a blur effect */
    -webkit-backdrop-filter: blur(5px); /* for Safari */
    z-index: 999;
}

.help> * {
    position: relative;
    z-index: 1000;
}

.helpcontent {
    color: white;
    /* padding: 230px 20px; */
    z-index: 1000;
  align-items: center;
    max-width: 800px;
    margin-left: 58px;
    margin-right: auto;
    top: 170px;
    padding: 68px 20px 0 0;
     /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    justify-content: left;
    text-align: left;
} 

    .help h2 {
        font-size: 38px;
       padding-bottom: 20px;
        font-family: 'Outfit', sans-serif;
    }
    .help h2 span{
        font-size: 38px;
       padding-bottom: 30px;
        font-family: 'Outfit', sans-serif;
        color: orange;
    }
    .help p {
        font-size: 19px;
     
        font-family: 'Outfit', sans-serif;
        line-height: 1.6;
    }

    .helpcontent .cta{
        background: orange;
        border: none;
        padding: 14px 30px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        position: relative;
        font-family: 'Outfit', sans-serif;
        transition: 0.3s;
        border-radius: 8px;
        margin-top: 20px; 
    }
   
     .helpcontent .cta:hover {
        background: none;
        color: orange;
        border: 1px solid orange;
     }
    .partner    h2 {
      margin: 20px 0;
        font-size: 38px;
       padding-bottom: 20px;
        font-family: 'Outfit', sans-serif;
    }

   
    .swiper {
      width: 90%;
      margin: auto;
      padding: 20px 0 20px;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .pls {
      min-width: 150px;
      max-height: 100px;
      object-fit: contain;
    }

    .partner {
      padding: 60px 20px;
      background-color: white;
      text-align: center;
     
    }
    .swiper-wrapper {
      align-items: center;
      padding-bottom: 70px;
    }

    .swiper-button-next,
     .swiper-button-prev {
      color: orange;
      bottom: 50px;
    }

    .hero5{
   padding: 40px 20px 20px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.last{
   
     align-items: center;
    justify-content: space-around;
    display: flex;
    grid-template-columns: 1, 3fr;
    text-align: center;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgba(42, 39, 39, 0.7);
    padding: 0 3% 0 3%;
    gap: 10px;
    padding-bottom: 60px;
    z-index: 1000;
}
.all{
    padding: 15% 17% 10% 17%;
}

.general{
    font-style: italic;
}


.h2 {
        font-size: 38px;
       padding-bottom: 20px;
        font-family: 'Outfit', sans-serif;
        padding-top: 30px;
        color: rgb(2, 2, 70);
    }
    

    .sp{
        font-weight: 500;
    }
.study {
    position: relative;
    font-family: 'Outfit', sans-serif;
    color: rgba(253, 249, 249, 0.7);
    font-size: 18px;
    height: 50vh;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center; /* align items from the top */
    padding: 10% 50px 10% 50px; /* space from top */
    overflow: hidden;
    text-align: center;
}

/* Pseudo-element for blurred fixed background */
.study::before {
    content: "";
    position: fixed;  
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('study-background.png');
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    transform: scale(1.05);
    z-index: -1;
}

.study-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px; /* space from top before cards */
}

.study-left {
  max-width: 60%; /* keeps text side neat */
  text-align: left;
}

.study   h2 {
  font-size: 42px;
 
}

.study p {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(253, 249, 249, 0.85);
}

.study-right {
  text-align: right;
}

/* CTA button */
.study .cta {
     background: none;
    color: orange;
    border: 1px solid orange;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition:  background  0.3s ease-in-out;
    border-radius: 50px;
    margin-left: 20px;
    margin-top: 10px;
}

.study .cta:hover {
  background: orange;
    border: none;
    color: white;
}

.card-list .card-item {
  list-style: none;
}

.card-list .card-item .card-link {
  user-select: none;
  display: block;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.7); /* softer than dark bg */
  border-radius: 16px;
  text-decoration: none;
  padding: 18px;
  text-align: left;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.card-list .card-item .card-link:hover {
  border: 2px solid rgb(205, 134, 57);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(7, 153, 216, 0.075);
}

/* Location Badge */
.card-list .card-item .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d07c00;
  background: #fff6e5;
  margin: 16px 0 18px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  width: fit-content;
  border-radius: 20px;
}

/* Card Title */
.card-list .card-link .card-title {
  font-size: 1.7rem;
  color: #2c2c2c;
  font-weight: 700;
  margin: 12px 0;
  line-height: 1.3;
}

/* Call to Action Button */
.card-list .card-link .card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: orange;
  background: white;
  margin: 20px 0 5px;
  border: 2px solid orange;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}

.card-list .card-link .card-button:hover {
  background: orange;
  color: white;
  transform: rotate(0deg) scale(1.1);
}

/* Card Image */
.card-list .card-link .card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.4s ease;
}

.card-list .card-link:hover .card-image {
  transform: scale(1.05);
}


.text{
  display: flex;
  align-items: center;
width: 100%;
  margin-top: 20px;
  text-align: left;
  padding-bottom: 30px;
  gap: 30px;
}

.card-title{
  padding: 0;
}
.study-content span{
  color: orange;
}

.slide {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: center; /* Center main content */
  align-items: center;
  height: 100vh;
  position: relative;
  text-align: center;  
}
.container{
  margin-top: 110px;
}
.slide-title {
  position: absolute;
  top: 100px; /* distance from top */
  left: 50%;
  transform: translateX(-50%);
  
        font-size: 42px;
       padding-bottom: 40px;
        font-family: 'Outfit', sans-serif;
        padding-top: 30px;
        color: navy;
}

.slide {
  padding: 80px 60px;
  background: #f5f5f5; /* subtle contrast */
  text-align: center;
}

.slide h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}
 
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Back to Top Button */
#backToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.029);
    backdrop-filter: blur(10px);
    color: rgb(11, 11, 11);
    border: none;
    outline: none;
    padding: 15px;
    border-radius: 10%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: none;
    transition: transform 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

#backToTopBtn:hover {
    transform: scale(1.1);
    background-color: #e68a00;
}

footer{
    display: flex;
    align-items: left;
    /* justify-content: center; */
    background-color: rgb(238, 237, 244);
    gap: 17%;
    padding: 8%;
    padding-top: 3%;
}

.las{
   /* gap: 30px;
     align-items: center;
    justify-content: space-between;
    display: flex;
    grid-template-columns: 1, 3fr; */
    text-align: center;
    font-family: Outfit, sans-serif;
    color: rgba(42, 39, 39, 0.7);
    padding-bottom: 30px;

}

.footerlink .item{
    font-weight: 200;
    word-spacing: 1px;
    font-size: 17px;
    width: 100%;
    padding-top: 17px;
    font-family: Outfit, sans-serif;
    color: rgba(77, 75, 75, 0.7);
    line-height: 1.6;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: #333;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1da1f2; /* twitter blue */
}

input{
   background-color: rgb(238, 237, 244);
   border: none;
   height: 6%;
   /* width: 70%; */
    font-weight: 100;
    word-spacing: 1px;
    font-size: 17px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(188, 184, 184);
   position: absolute;
}
input::before{
    border: none;
}

input::placeholder{
     font-weight: 100;
    word-spacing: 1px;
    font-size: 17px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgba(173, 167, 167, 0.7);
}
.wwb{
    margin-left: 16%;
}
.p{
     font-weight: 100;
    word-spacing: 1px;
    font-size: 17px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgba(77, 75, 75, 0.7);
    margin-top: 10%;
}



.btt{
     align-self: center;
    /* margin-left: 18%; */
    margin-top: 30%;
    margin-left: 10%;
    height: 40px;
    font-family:  Oswald, sans-serif;
    width: 225px;
    background-color: #2e2e2e;
    color: white; 
    border: none;
    padding: 0 5px 0 5px;
     transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btt:hover{
     border: solid;
    border-width: 4px;
    border-color: #000;
    background-color: rgb(146, 141, 141);
    padding: 5px;
    transform: translateY(-2px);
}


/* Initial hidden state */
.hero-content h1,
.hero-content p,
.hero-content .cta {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

/* Scale effect for button */
.hero-content .cta {
  transform: scale(0.8);
  transition: all 0.9s ease-out 0.6s;
}

/* Active state */
.hero-content.show h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-content.show p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-content.show .cta {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}

.services .card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.services .card.show {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays */
.services .card.delay-200 { transition-delay: 0.2s; }
.services .card.delay-400 { transition-delay: 0.4s; }
.services .card.delay-600 { transition-delay: 0.6s; }
.services .card.delay-800 { transition-delay: 0.8s; }


/* Base hidden state */
[data-animate] {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

/* Active state */
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-200 { transition-delay: 0.2s; }
.delay-400 { transition-delay: 0.4s; }
.delay-600 { transition-delay: 0.6s; }


/* Default hidden state */
.hero5 .one,
.hero5 .two,
.hero5 .three {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

/* Active state */
.hero5 .one.show,
.hero5 .two.show,
.hero5 .three.show {
  opacity: 1;
  transform: translateY(0);
}

/* Add delays for stagger */
.hero5 .one.show {
  transition-delay: 0s;
}
.hero5 .two.show {
  transition-delay: 0.2s;
}
.hero5 .three.show {
  transition-delay: 0.4s;
}

/* ==============================
ABOUT STYLES
============================== */
.about::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* adjust opacity */
    backdrop-filter: blur(2px); /* optional: adds a blur effect */
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    z-index: 1;
}

/* Make sure your section content stays above the overlay */
.about> * {
    position: relative;
    z-index: 2;
}

.her{
    display: flex;
    align-items: center;   /* Vertical center */
    justify-content: center; /* Horizontal center */
  
    position: relative;
    text-align: center;
  
}

.about {
  padding: 80px 10% ;
  background: #fff; 
    background: url('aboutbackground.png') no-repeat center center/cover;
      height: 80vh; /* Full screen height */
      background-attachment: fixed;
      position: relative;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  top: 80px;
  margin-top: -130px;
}

.about-animation {
  flex: 1;
  border-top: 20px;
}

.about-text {
  flex: 1;
  margin-bottom: 60px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white; /* navy */
}
.about-text h2 span{
  color: orange;
}

.about-text p {
  font-size: 1.1rem;
  
  color: white;
  line-height: 1.5;
       padding-bottom: 20px;
        font-family: 'Outfit', sans-serif;
}

.about .cta {
  padding: 12px 24px;
  background: orange;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
  margin-top: 0;
}
.about .cta:hover {
  background: none;
  color: orange;
  border: 1px solid orange;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
}

/* WHY CHOOSE US */
.why-us {
  padding: 80px 10%;
  background: #f9f9f9;
  text-align: center;
}



.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* ensures uniform layout */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* new: container for all lotties */
.why-icon {
  width: 130px;   /* fixed size so all align */
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.why-card h3 {
  margin: 15px 0 10px;
  font-size: 1.4rem;
  color: #003366; /* navy tone */
}

.why-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}


/* Initial state before scrolling in */
[data-animate] {
  opacity: 0;
  transform: translateY(60px);
  transition: none; /* disable default transition */
}

/* Active state when scrolled into view */
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 1.5s ease-out forwards; /* slower + more prominent */
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hoe {
  padding: 80px 10%;
  background: #fff; 
    background: url('hoebackground.png') no-repeat center center/cover;
      min-height: 80vh; /* Full screen height */
      background-attachment: fixed;
      position: relative;
}


.hoe::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* adjust opacity */
    backdrop-filter: blur(2px); /* optional: adds a blur effect */
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    z-index: 1;
}

/* Make sure your section content stays above the overlay */
.hoe> * {
    position: relative;
    z-index: 2;
}

.ch{
  font-size: 16px;
}

/* Services Section */
#service {
  position: relative;
  padding: 30px 10% 90px;
  background: #f9f9f9;
  text-align: center;
  top: 0;
  margin-top: 0;
}

.container{
  margin-top: 40px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 13px;
  color: #0a1f44; /* navy tone */
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #f97316; /* orange accent */
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0a1f44;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: rgb(2, 2, 76); /* orange accent */
}
.contact{
  padding: 80px 10%;
  background: #fff; 
    background: url('contactbackground.png') no-repeat center center/cover;
      min-height: 80vh; /* Full screen height */
      background-attachment: fixed;
      position: relative;
      text-align: center;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* adjust opacity */
    backdrop-filter: blur(2px); /* optional: adds a blur effect */
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    z-index: 1;
}

/* Make sure your section content stays above the overlay */
.contact> * {
    position: relative;
    z-index: 2;
}

.contact-container {
  max-width: 600px;
  margin: auto;
  color: white;
  padding-top: 14%;
  text-align: center;
  align-items: center;
  justify-content: center;
}


.h2o {
  display: inline-flex;           /* Keeps everything on one line */
  align-items: center;            /* Vertically centers animation & text */
  gap: 7px;                      /* Space between icon and text */
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: white; /* navy */
  text-align: center;
}
.h2o span{
  color: orange;
}
.contact p {
  font-size: 1.1rem;
  
  color: white;
  line-height: 1.5;
       padding-bottom: 20px;
        font-family: 'Outfit', sans-serif;
}

   
     
    .contact-section {
  background: #fff;
  padding: 80px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.contact-form,
.contact-info {
  flex: 1 1 45%;
}

.contact-form h2,
.contact-info h2 {
  font-size: 34px;
  color: orange;
  margin-bottom: 15px;
}

.contact-form p,
.contact-info p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 50%; 
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff9800;
}

.btn-submit {
  background-color: #ff9800;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background-color: #e68900;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-info ul li {
  margin-bottom: 12px;
  color: #444;
  font-size: 18px;
}
.map-container {
  
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* @media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
} */

/* ============================
   RESPONSIVE MEDIA QUERIES
===============================*/

/* Large Tablets & Small Laptops */
@media (max-width: 1200px) {
  /* header {
    padding: 20px 30px;
  } */
  .nav-list {
    gap: 25px;
  }
  .hero h1, .hero h1 span {
    font-size: 46px;
  }
  .study-left {
    max-width: 70%;
  }
  .services {
    gap: 15px;
    padding: 40px 20px 0 20px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .nav-list {
    gap: 20px;
  }
  .hero h1, .hero h1 span {
    font-size: 38px;
  }
  .hero p {
    font-size: 18px;
  }
  .help h2, .partner h2, .study h2, .h2, .slide-title {
    font-size: 32px;
  }
  .study-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .study-left, .study-right {
    max-width: 100%;
    text-align: center;
  }
  footer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
  /* header {
    flex-direction: column;
    padding: 15px 20px;
  } */
  /* .navbar {
    margin-top: 15px;
  } */
  /* .nav-list {
    flex-direction: column;
    gap: 15px;
  } */
  .services {
    flex-direction: column;
    position: static;
    transform: none;
    margin-top: 40px;
  }
  .card {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
  .helpcontent {
    margin-left: 0;
    text-align: center;
    padding: 40px 20px;
  }
  .about-container {
    flex-direction: column;
    gap: 30px;
  }
  .study {
    padding: 60px 20px;
    height: auto;
  }
  .study h2 {
    font-size: 32px;
  }
  .text {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .contact-containe {
    flex-direction: column;
  }
  .contact-info, .contact-form {
    min-width: 100%;
  }
}

/* Phones */
@media (max-width: 576px) {
  .hero h1, .hero h1 span {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero .cta {
    padding: 10px 20px;
    font-size: 14px;
  }
  .help h2, .partner h2, .study h2, .h2, .slide-title {
    font-size: 24px;
  }
  .help p, .study p, .contact p {
    font-size: 16px;
  }
  .pls {
    max-height: 70px;
    min-width: 100px;
  }
  .last {
    flex-direction: column;
    gap: 15px;
    padding: 0 10%;
  }
  footer {
    padding: 40px 20px;
  }
  .footerlink .item {
    font-size: 15px;
    padding: 10px 0;
  }
  .btt {
    width: 100%;
    margin-left: 0;
  }
  .social-icons {
    justify-content: center;
  }
}

/* Very Small Devices */
@media (max-width: 400px) {
  /* header {
    padding: 10px 15px;
  } */
  .nav-item a {
    font-size: 14px;
  }
  .hero h1, .hero h1 span {
    font-size: 22px;
  }
  .hero p {
    font-size: 14px;
  }
  .hero .cta {
    font-size: 13px;
    padding: 8px 18px;
  }
  .card {
    min-width: 200px;
    height: auto;
    padding: 15px;
  }
  .study h2, .help h2 {
    font-size: 20px;
  }
  .contact-form h2, .contact-info h2 {
    font-size: 1.4rem;
  }

/* LATESTTT */
/* ============================
   MOBILE RESPONSIVENESS
   Using Original Classes Only
===============================*/

/* Mobile Navigation for Existing Header */
@media (max-width: 768px) {
    /* Header & Navigation */
    header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .navbar {
        display: none;
    }
    
    .nav-list {
        display: none;
    }
    
    /* Show mobile menu button */
    header::after {
        content: '☰';
        font-size: 24px;
        color: orange;
        cursor: pointer;
        position: absolute;
        right: 80px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    header .cta {
        padding: 8px 16px;
        font-size: 12px;
        position: absolute;
        right: 20px;
    }
    
    #logo-in-header {
        width: 40px;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        padding: 0 20px;
    }
    
    .hero-content {
        margin-top: -30px;
        padding: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero h1 span {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero .cta {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Services Cards in Hero */
    .services {
        position: relative;
        top: 40px;
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
        left: 0;
        transform: none;
    }
    
    .services .card {
        width: 100%;
        min-width: auto;
        height: 70px;
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .services .card h3 {
        font-size: 12px;
    }
    
    .services .card i {
        font-size: 20px;
        margin-bottom: 5px;
    }

    /* Help Section */
    .help {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }
    
    .helpcontent {
        margin-left: 0;
        margin-right: 0;
        top: 100px;
        padding: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .helpheader h2 {
        font-size: 28px;
    }
    
    .helpheader h2 span {
        font-size: 28px;
    }
    
    .helpcontent p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .helpcontent .cta {
        margin-top: 25px;
        padding: 12px 24px;
    }

    /* About Section (From Dream to Departure) - This is actually .hoe */
    .hoe {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .about-animation dotlottie-wc {
        width: 300px !important;
        height: 300px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        position: relative !important;
        bottom: 0 !important;
    }

    /* Contact Section */
    .contact {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .contact-container {
        padding-top: 40px;
    }
    
    .h2o {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-inf p {
        font-size: 16px;
    }

    /* Contact Form Section */
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-form,
    .contact-info {
        flex: 1 1 100%;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100% !important;
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 24px;
    }
    
    .contact-info ul li {
        font-size: 16px;
        line-height: 1.4;
    }

    /* Study Section */
    .study {
        padding: 60px 20px;
        height: auto;
    }
    
    .study-content h2 {
        font-size: 24px;
    }
    
    .study-content p {
        font-size: 16px;
    }

    /* Lottie Animations Adjustments */
    .hero-content dotlottie-wc {
        width: 250px !important;
        height: 250px !important;
        left: 50% !important;
        top: -20% !important;
        transform: translateX(-50%) !important;
    }
    
    .help dotlottie-wc {
        width: 300px !important;
        height: 300px !important;
        left: 50% !important;
        bottom: 50px !important;
        position: relative !important;
        transform: translateX(-50%) !important;
    }
    
    /* Partner Section Swiper */
    .partner .swiper {
        width: 95%;
        padding: 10px 0;
    }
    
    .partner .swiper-slide img {
        max-height: 60px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero h1 span {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .services .card h3 {
        font-size: 11px;
    }
    
    .helpheader h2 {
        font-size: 22px;
    }
    
    .helpheader h2 span {
        font-size: 22px;
    }
    
    .about-text h2 {
        font-size: 20px;
    }
    
    .h2o {
        font-size: 1.6rem;
    }
    
    .hero-content dotlottie-wc {
        width: 180px !important;
        height: 180px !important;
    }
    
    header .cta {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .services {
        gap: 15px;
        padding: 40px 30px 0 30px;
    }
    
    .services .card {
        min-width: 180px;
    }
    
    .helpcontent {
        margin-left: 40px;
        max-width: 70%;
    }
}

/* Ensure desktop view remains completely unchanged above 768px */
@media (min-width: 769px) {
    /* All original desktop styles remain intact */
}

}
/* Add these styles to your existing CSS */
.about-text .text-container {
  position: relative;
  overflow: hidden;
}

.about-content {
  max-height: 150px !important;
  overflow: hidden !important;
  transition: max-height 0.5s ease !important;
  margin-bottom: 15px !important;
}

.about-content.expanded {
  max-height: 1000px !important;
}

.read-more-btn {
  background: transparent !important;
  color: orange !important;
  border: 1px solid orange !important;
  padding: 8px 16px !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  margin-bottom: 15px !important;
  transition: all 0.3s ease !important;
  display: block !important;
}

.read-more-btn:hover {
  background: orange !important;
  color: white !important;
}

/* Dynamic spacing for expanded state */
.about {
  overflow: visible !important;
  margin-bottom: 0 !important;
  padding-bottom: 80px !important;
  min-height: auto !important;
  height: auto !important;
  transition: padding-bottom 0.3s ease !important;
}

.about.expanded-section {
  padding-bottom: 150px !important;
}

.about-container {
  position: relative !important;
  z-index: 10 !important;
}

.why-us {
  position: relative !important;
  z-index: 5 !important;
  margin-top: 0 !important;
  padding-top: 60px !important;
  clear: both !important;
}