* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* ----------- SOCIAL NAVBAR (TOP) ------------ */
.navbar1 {
  background-color: white;
  padding: 10px 20px;
  height: 50px; /* fixed height */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  flex-wrap: wrap;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.left-nav a {
  margin-right: 15px;
  text-decoration: none;
  color: #005751;
  font-size: 1rem;
}
.left-nav a i {
  margin-right: 5px;
}
.right-nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #005751;
  font-size: 1.2rem;
}

.right-nav a:hover,
.left-nav a:hover {
  color: #00c8b3;
}

/* ----------- MAIN NAVBAR ------------ */
header {
  background-color: #005751;
  padding: 10px 20px;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.navbar2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav_toggle {
  display: none;
}
.nav_icon {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  order: 3;
}

.nav_left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 50px;
  width: 60px;
  border-radius: 10px;
}
.nav_c_name {
  font-size: 22px;
  color: white;
  font-weight: bold;
}
.nav_content {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav_a_content {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
}
.nav_a_content:hover {
  text-decoration: underline #00c8b3 2px;
  text-underline-offset: 4px;
}

.social_mobile {
  display: none;
  gap: 15px;
}

.social_mobile a {
  color: white;
  font-size: 1.2rem;
}

/* ----------- RESPONSIVE CSS ------------ */
@media (max-width: 768px) {
  .navbar1 {
    display: none;
  }

  header {
    top: 0;
  }

  .nav_icon {
    display: block;
    order: 3;
  }

  .nav_content {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    order: 4;
  }

  .nav_toggle:checked ~ .nav_content {
    display: flex;
  }

  .nav_a_content {
    padding: 10px 0;
  }

  .social_mobile {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .navbar2 {
    flex-direction: row;
  }
}


.about {
      min-height: 50vh; 
      display: flex;
      justify-content: center;
      align-items: center;
      background-color:white;
      padding: 1rem;
    }
.about h1 {
      font-size: clamp(2.5rem, 6vw, 5rem); 
      color: #005751;
      margin: 0;
      padding-top:100px;
      font-weight: bold;
      text-align: center;
      line-height: 1.2;
    }
@media (max-width: 600px) {
      .about {
        min-height: 40vh;
        padding: 1.5rem;
      }
      .about h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        padding-top: 80px;
      }
    }
.who {
      background-color: #f1f8f7;
      padding: 30px 0;
    }

    .who-heading {
      text-align: center;
      font-size: 20px;
      color: #005751;
    }

    .who-list {
      width: 100%;
      display: flex;
      justify-content: space-evenly;
      flex-wrap: wrap;
    }

    .who-iteam {
      width: 49%;
      padding: 30px;
      box-sizing: border-box;
      margin-top: 20px;
    }

    .iteam-heading {
      color: #005751;
      font-size: 20px;
      padding-top: 20px;
    }

    .who-description {
      padding-top: 5px;
      font-size: 17px;
    }

    .who-img {
      background-image: url(how2.jpg);
      height: 600px;
      width: 100%;
      max-width: 600px;
      background-size: cover;
      background-position: center;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      border-radius: 5px;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .who-img:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    /* Responsive styles */
    @media (max-width: 1024px) {
      .who-iteam {
        width: 100%;
        padding: 20px;
      }
      .who-img {
        height: 400px;
      }
    }

    @media (max-width: 768px) {
      .who-list {
        flex-direction: column;
        align-items: center;
      }
      .who-img {
        height: 300px;
      }
      .iteam-heading {
        font-size: 18px;
      }
      .who-description {
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {
      .who-heading h1 {
        font-size: 1.5rem;
      }
      .who-img {
        height: 200px;
      }
      .iteam-heading {
        font-size: 16px;
      }
      .who-description {
        font-size: 14px;
      }
    }
.How-We-work {
        padding: 40px 0;
        background-color: white;
    }

    .how-heading {
        text-align: center;
        font-size: 22px;
        color: #005751;
        margin-bottom: 20px;
    }

    .how-list {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .how-iteam {
        width: 49%;
        padding: 20px;
        box-sizing: border-box;
        margin-top: 20px;
    }
    .how-img {
        background-image: url(choose1.jpg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        height: auto;
        width: 100%;
        aspect-ratio: 4 / 3;
        box-shadow: 0 10px 15px #f1f8f7;
        border-radius: 5px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    /* Hover effect */
    .how-img:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    }

    .iteam-heading {
        color: #005751;
        font-size: 18px;
        padding-top: 10px;
    }

    .who-description {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    /* Tablet view */
    @media (max-width: 1024px) {
        .how-iteam {
            width: 100%;
        }
        .how-img {
            aspect-ratio: 16 / 9;
        }
    }

    /* Mobile view */
    @media (max-width: 768px) {
        .how-list {
            flex-direction: column;
            align-items: center;
        }
        .how-iteam {
            width: 100%;
            padding: 10px;
        }
        .how-img {
            aspect-ratio: 4 / 3;
        }
    }

    /* Small mobile view */
    @media (max-width: 480px) {
        .how-heading h1 {
            font-size: 1.4rem;
        }
        .iteam-heading {
            font-size: 16px;
        }
        .who-description {
            font-size: 14px;
        }
        .how-img {
            aspect-ratio: 1 / 1;
        }
    }
.choose-us {
        padding: 40px 0;
    }

    .why-choose-heading {
        text-align: center;
        font-size: 24px;
        color: #005751;
        margin-bottom: 30px;
    }

    .choose-us-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .choose-us-iteam {
        background-color: #f1f8f7;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        width: 48%;
        min-width: 280px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .choose-us-iteam:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .choose-us-img {
        width:55%;
        height: 180px; /* Fixed small image height */
        background-image: url(choose2.jpg);
        background-size: cover;
        background-position: center;
    }

    .choose-us-heading {
        color: #005751;
        font-size: 18px;
        font-weight: bold;
        padding: 15px 15px 5px;
    }

    .choose-us-description {
        color: #333;
        font-size: 14px;
        padding: 0 15px 10px;
        line-height: 1.5;
    }

    .choose-des-point {
        padding: 0 15px 15px;
    }

    .choose-des-point div {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #005751;
        font-weight: bold;
        font-size: 14px;
        margin-top: 4px;
    }

    .fa-solid {
        border: 1.5px solid #005751;
        border-radius: 50%;
        padding: 2px;
        font-size: 12px;
    }

    @media (max-width: 768px) {
        .choose-us-iteam {
            width: 100%;
        }
    }
.mission {
    padding: 40px 0;
    background-color: #f1f8f7;
}
.mission-heading {
    text-align: center;
    font-size: 20px;
    color: #005751;
    margin-bottom: 20px;
}
.mission-list {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
}
.mission-iteam {
    width: 49%;
    box-sizing: border-box;
    margin-top: 20px;
}
.mission-description {
    font-family: Poppins, Raleway, sans-serif;
    font-size: 18px;
    line-height: 25px;
    font-weight: bold;
    padding: 10px;
}
.mission-img {
    background-image: url("mission.png");
    background-size: cover;
    background-position: center;
    height: 400px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 15px #d0e5e1;
    border-radius: 5px;
    margin: 0 auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
    .mission-iteam {
        width: 100%;
        padding: 15px;
    }
    .mission-img {
        height: 300px;
    }
}
@media (max-width: 576px) {
    .mission-description {
        font-size: 16px;
        line-height: 22px;
        font-weight: normal;
    }
    .mission-img {
        height: 250px;
    }
}
.Key-Features {
    padding: 40px 0;
}

.key-heading {
    text-align: center;
    color: #005751;
    font-size: 20px;
    margin-bottom: 20px;
}
.feature-list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    perspective: 1000px;
}

.feature-iteam {
    width: 23%;
    min-width: 250px;
    box-sizing: border-box;
}

.card {
    position: relative;
    width: 100%;
    height: 300px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card:hover {
    transform: rotateY(180deg);
}
.front, .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    backface-visibility: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.front {
    background-color: #005751;
    transform: rotateY(0deg);
    justify-content: flex-start;
}

.front img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card:hover .front img {
    transform: scale(1.05); 
}

.front h2 {
    margin: 10px 0;
    color: white;
    font-size: 18px;
    text-align: center;
}
.back {
    background-color: #f1f8f7;
    color: black;
    transform: rotateY(180deg);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}


@media (max-width: 992px) {
    .feature-iteam {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .feature-list {
        flex-direction: column;
        align-items: center;
    }
    .feature-iteam {
        width: 90%;
    }
    .card {
        height: 250px;
    }
    .front h2 {
        font-size: 16px;
    }
    .back {
        font-size: 13px;
        padding: 10px;
    }
}
.social {
    background-color: #f1f8f7;
    padding: 30px 0;
}
.social_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.social_item {
    width: 19%;
    border-top: 1px solid #005751;
    padding-top: 5px; /* Reduced for better vertical alignment */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.social_item h3 {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 5px 0 8px 0; /* Tighter spacing above */
}
.bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: #005751;
    margin-right: 8px;
}
.social_item p {
    font-size: 15px;
    margin: 3px 0;
    line-height: 1.4;
}
.social_icons {
    display: flex;
    gap: 10px;
    font-size: 20px;
    margin-top: 3px; 
}
.social_icons a {
    color: #005751; 
    transition: color 0.3s, transform 0.3s;
}
.social_icons a:hover {
    color: #009688;
    transform: scale(1.2); 
}
/* Tablet view */
@media (max-width: 992px) {
    .social_item {
        width: 45%;
        margin-bottom: 20px;
        text-align: center;
    }
}

/* Mobile view */
@media (max-width: 576px) {
    .social_item {
        width: 100%;
    }
    .social_icons {
        justify-content: center;
    }
    .social_item h3 {
        justify-content: center;
    }
}
.foot {
    padding: 20px 10px;
    background-color: #005751;
}
.p_footer {
    text-align: center;
    font-size: 18px;
    color: white;
    margin: 0;
}
@media (max-width: 992px) {
    .p_footer {
        font-size: 16px;
        padding: 0 15px;
    }
}
@media (max-width: 576px) {
    .p_footer {
        font-size: 14px;
        padding: 0 10px;
        line-height: 1.4;
    }
}