* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

body {
  color: #fff;
  background: linear-gradient(rgba(0, 80, 90, 0.8), rgba(0, 50, 50, 0.9)),
              url('Images1/about.webp') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

.navbar {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  padding: 10px;
  display: block;
}

.nav-links a:hover {
  color: #00b894;
}

.logo-text {
  font-size: 28px;
  margin-left: 40px;
  font-weight: bold;
  color: #00ffe0;
  text-decoration: none;
}

.btn-appointment {
  padding: 12px 28px;
  background-color: #20d6b5;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-appointment:hover {
  background-color: #18c1a3;
}

.divider {
  border: 0;
  height: 1px;
  background: #fff;
  margin: 0 60px;
  margin-top: 12px;
}


.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #033232;
  min-width: 120px;
  border-radius: 6px;
  z-index: 999;
  list-style: none;
}

.dropdown-menu li {
  width: 100%;
  margin-left: -10px;
}

.dropdown-menu a {
  padding: 10px 20px;
  color: #fff;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #055a5a;
}

.arrow {
  font-size: 16px;
  margin-left: 5px;
  cursor: pointer;
  user-select: none;
}


.logo img {
  height: 60px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}


.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {

  .navbar {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    position: relative;
  }

  /* LOGO ON LEFT SIDE */
  .logo {
    order: 1;
  }

  .logo img {
    height: 55px;
    margin-left: -100px;
  }

  /* HAMBURGER ON RIGHT SIDE */
  .menu-toggle {
    order: 2;
    display: block;
    font-size: 34px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 60px;
  }

  /* NAV DROPDOWN BELOW HEADER */
  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    background-color: rgba(0, 50, 50, 0.95);
    padding: 20px 0;
    border-radius: 6px;

    position: absolute;
    top: 100%;  /* BELOW HEADER */
    left: 0;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    padding: 12px 0;
    justify-content: center;
  }

  /* DROPDOWN */
  .arrow {
    margin-left: 6px;
    font-size: 20px;
    cursor: pointer;
  }

  .dropdown-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 6px;
  }

.dropdown.open .dropdown-menu {
    display: flex !important;
}


  .dropdown:hover .dropdown-menu {
    display: none !important;
}

}


.dropdown.open .dropdown-menu {
  display: flex !important;
}

@media screen and (max-width: 768px) {
  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .dropdown-menu li {
  background-color: #055a5a;   /* Your desired color */
  border-radius: 4px;
  height: 30px;
  margin-top: 10px;
  margin-bottom: 4px;
}
}


.hero {
  position: relative;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
}

.hero-content a {
  color: #fff;
  text-decoration: none;
}

.hero-content span {
  color: #00c291;
}

.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(
    to right,
    #00c291 40%,  
    #fffbe9 40% 
  );
}

.about-container {
  display: flex;
  max-width: 1200px;
  gap: 50px;
}

.about-images {
  flex: 1;
  position: relative;
}

.award-badge {
  position: absolute;
  left: 30px;
  background: #072b2d;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  width: 150px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.award-badge i {
  color: #00c291;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  position: relative;
}

.img1 {
  grid-column: 1/2;
  grid-row: 1/3;
  width: 100%;
  margin-top: 70px;
  height: auto;
  border-radius: 8px;
}

.img2 {
  grid-column: 2/3;
  grid-row: 1/2;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.video-box {
  grid-column: 2/3;
  grid-row: 2/3;
  position: relative;
}

.video-box img {
  width: 100%;
  border-radius: 8px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 194, 145, 0.9);
  color: white;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}


.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h4 {
  color: #00c291;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0a2e2c;
  line-height: 1.3;
}

.about-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
}

.btn {
  background: #00c291;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 0px 0px 20px 0px;
  width: 90px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #008a6e;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.img1 {
  animation: fadeInUp 1s ease-out forwards, float 4s ease-in-out infinite;
}

.img2 {
  animation: fadeInUp 1.2s ease-out forwards, float 4s ease-in-out infinite;
  animation-delay: 0.2s;
}

.video-box {
  animation: fadeInUp 2s ease-out forwards, float 4s ease-in-out infinite;
  animation-delay: 0.4s;
}


.img1:hover, .img2:hover, .video-box img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

@media screen and (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .image-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }

  .img1 {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-top: 50px;
  }

  .img2, .video-box {
    grid-column: 1/2;
    grid-row: auto;
  }

  .award-badge {
    left: 20px;
    width: 140px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-images {
    width: 100%;
  }

  .image-grid {
    display: block;
  }

  .img1, .img2, .video-box img {
    width: 100%;
    margin-top: 20px;
  }

  .video-box {
    margin-top: 20px;
  }

  .award-badge {
    position: relative;
    left: 0;
    margin-bottom: 15px;
    width: 100%;
    justify-content: flex-start;
  }

  .about-content h2 {
    font-size: 2rem;
    margin-left: 20px;
  }

  .about-content h4 {
    font-size: 20px;
    margin-left: 20px;
  }

  .about-content p {
    font-size: 0.95rem;
    margin-left: 20px;
  }

  .btn {
    width: 100%;
    padding: 12px 0;
    text-align: center;
  }
}


.trusted-section {
      text-align: center;
      padding: 60px 20px;
      overflow: hidden;
      background-color: #fffbe9;
      height: 35vh;
    }

    .trusted-heading {
      font-size: 30px;
      margin-top: 50px;
      color: #132c2f;
      margin-bottom: 70px;
    }

    .trusted-heading span {
      color: #28c3a5;
      position: relative;
    }

    .trusted-heading span::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 100%;
      height: 3px;
      background-color: #28c3a5;
      animation: underline 2s ease-in-out infinite alternate;
    }

    @keyframes underline {
      0% { width: 100%; left: 0; }
      100% { width: 40%; left: 30%; }
    }

    .logo-slider-wrapper {
      position: relative;
      margin-left: 150px;
      margin-top: 20px;
      margin-right: 150px;
      overflow: hidden;
    }

    .logo-slider {
      display: flex;
      gap: 60px;
      animation: scroll 25s linear infinite;
    }

    .logo-slider img {
      height: 60px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .logo-slider img:hover {
      filter: none;
      opacity: 1;
    }

    @keyframes scroll {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }

.fade-in-section {
  opacity: 1;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


@media (max-width: 768px) {
  .trusted-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .logo-slider-wrapper {
    margin-left: 20px;
    margin-right: 20px;
  }

  .logo-slider {
    gap: 20px;
    animation: scroll 15s linear infinite;
  }

  .logo-slider img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .trusted-heading {
    font-size: 1.2rem;
  }

  .logo-slider-wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }

  .logo-slider {
    gap: 15px;
    animation: scroll 12s linear infinite;
  }

  .logo-slider img {
    height: 30px;
  }
}


.our-case {
  background-color: #fffbe9;
  padding-top: 50px;
  padding-bottom: 100px;
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}

.section-subtitle {
      font-size: 28px;
      text-align: center;
      font-weight: bold;
      text-align: center;
      margin-bottom: 10px;
      color: #1a1a1a;
    }

    .section-description {
      max-width: 700px;
      margin: auto;
      text-align: center;
      color: #333;
      font-size: 14px;
      margin-bottom: 10px;
    }

  .card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  z-index: 3;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  width: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background-color: transparent;
  transition: transform 0.3s ease;
  position: relative;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  background-color: #fef5e4;
  transition: all 0.3s ease;
}

.card-title {
  font-weight: bold;
  font-size: 18px;
  color: #1a1a1a;
  position: relative;
}

.hover-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: all 0.3s ease;
  font-size: 14px;
  color: #333;
}


.card:hover .hover-text {
  max-height: 100px;
  opacity: 1;
  margin-top: 10px;
}


@media (max-width: 768px) {
  .card-container {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }

  .card img {
    height: 180px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .section-description {
    font-size: 13px;
  }
}


.counter-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #14b8a6;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: -50px;
}

.counter-box {
  background: #14b8a6;
  color: white;
  text-align: center;
  flex: 1 1 200px;
  position: relative;
  margin-top: -20px;
  margin-bottom: 20px;
}

.counter-box .icon {
  background:rgb(3, 47, 3);
  padding: 15px;
  border-radius: 0 0 40px 0;
  font-size: 22px;
  width: 240px;
  margin-bottom: 15px;
  display: inline-block;
}

.counter {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
}

.counter::after {
  content: " +";
}

.counter-box p {
  margin-top: 8px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .counter-wrapper {
    padding: 20px;
    margin-top: 150px;
  }

  .counter-section {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    border-radius: 0;
  }

  .counter-box {
    flex: 1 1 100%;
    max-width: 300px;
    margin: 10px auto;
    border-radius: 10px;
  }

  .counter-box .icon {
    width: 100%;
    max-width: 200px;
    font-size: 18px;
    padding: 10px;
  }

  .counter {
    font-size: 24px;
  }

  .counter-box p {
    font-size: 14px;
  }
}

.team-section {
  background: #fff8e7;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
}

.section-title {
  color: #009688;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #444;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-card {
  width: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 300px;
  height: 420px;
  object-fit: cover;
  display: block;
}

.team-image .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
}

.team-card:hover .overlay {
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px; height: 40px;
  background: #00c4b4;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #009688;
}

.team-info {
  background: #0b2c25;
  color: #fff;
  padding: 15px;
  border-radius: 0 0 20px 0;
}

.team-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.team-info p {
  margin: 5px 0 0;
  color: #f4d03f;
  font-size: 14px;
}

.footer-section {
  background: url('Images1/footer-bg.webp') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 60px 20px 30px;
  overflow: hidden;
  position: relative;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: #00c6a9;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-column ul li i {
  margin-right: 10px;
  color: #00c6a9;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #00c6a9;
}

.footer-socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #00c6a9;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: background 0.3s;
}

.footer-socials a:hover {
  background: #ffffff;
  color: #00c6a9;
}

.newsletter-form {
  margin-top: 15px;
  display: flex;
  background: #fff6e5;
  border-radius: 4px;
  overflow: hidden;
  max-width: 100%;
}

.newsletter-form input {
  padding: 10px 15px;
  border: none;
  flex-grow: 1;
  outline: none;
  font-size: 15px;
}

.newsletter-form button {
  background: #00c6a9;
  border: none;
  color: white;
  padding: 0 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #00a08a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

.logo-text1 {
  font-size: 28px;
  font-weight: bold;
  color: #00ffe0;
  text-decoration: none;
}


@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-column h4 {
    font-size: 20px;
  }

  .footer-column p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-column ul li {
    font-size: 16px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input {
    width: 100%;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    width: 100%;
    padding: 12px;
  }

  .footer-socials {
    margin-top: 10px;
  }

  .footer-socials a {
    margin-right: 8px;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 30px;
  }
}


@media screen and (max-width: 768px) {
  body, html {
    overflow-x: hidden !important; /* Full-page fix */
  }
}
