:root{
  --white:#FFFFFF;
  --blue-soft:#ffce00;
  --yellow:rgba(0, 114, 167, 0.877);;
  /* #fbda1b; */
  --text:#1f2933;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
  font-family: 'Poppins', sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.6;
}


.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 clamp(16px, 6vw, 140px);
}

section {
  padding: clamp(24px, 4vw, 60px) clamp(16px, 6vw, 140px);
}


/* =================HERO SECTION==================*/

.page-hero {
            position: relative;
            height: 320px;
            background: url("../images/dental_clinic.jpeg") center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Gradient overlay */
        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,
                    rgba(0, 80, 157, 0.6),
                    rgba(14, 165, 233, 0.6));
            z-index: 1;
        }

        /* Text content */
        .page-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
        }

        .page-hero-content h1 {
            color: #ffffff;
            font-size: 48px;
            font-weight: 600;
            letter-spacing: -0.5px;
        }
        .page-hero-content p {
          color: #FFFFFF;
        }


        @media (max-width: 768px) {
            .page-hero {
                height: 240px;
            }

            .page-hero-content h1 {
                font-size: 30px;
            }
        }

        @media (max-width: 480px) {
            .page-hero-content h1 {
                font-size: 24px;
            }
        }

        .page-hero-content {
            animation: fadeUp 0.8s ease forwards;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



.about-main-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.about-badge{
  background: linear-gradient(90deg,
        rgba(0, 80, 157, 0.6),
        rgba(14, 165, 233, 0.6));
  display:inline-block;
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
  font-weight:500;
  margin-bottom:12px;
  color: var(--white);
}

.about-content h2{
  font-size:34px;
  font-weight:600;
  margin-bottom:16px;
}

.about-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:24px;
}

.feature{
  border:1px solid var(--blue-soft);
  border-radius:8px;
  padding:16px;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:500;
}

.icon{
  width:22px;
  height:22px;
  color:var(--yellow);
}

.about-image{
  position:relative;
}
.about-image img{
  width:100%;
  border-radius:12px;
}
.badge{
  position:absolute;
  right:20px;
  bottom:20px;
  background:var(--white);
  border:1px solid var(--blue-soft);
  border-radius:8px;
  padding:12px 16px;
  text-align:center;
}
.badge strong{
  color:var(--yellow);
  font-size:22px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.stat{
  border:1px solid var(--blue-soft);
  border-radius:8px;
  padding:24px;
  text-align:center;
}
.stat h3{
  font-size:32px;
  color:var(--yellow);
  font-weight:600;
}


/* ================= OUR DOCTORS ================= */
.doctors-section{
  padding: 60px 140px;
  text-align: center;
}

.doctor-title{
  font-size:32px;
  font-weight:600;
  margin-bottom:32px;
  text-align:center;
  color:var(--yellow);
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  justify-content: center;
  align-items: center;
}

.team-card{
  background:#fff;
  border:2px solid var(--blue-soft);
  border-radius:16px;
  padding:18px;
  text-align:center;
  cursor:pointer;
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.team-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,var(--yellow),transparent);
  opacity:0;
  transition:.35s;
}

.team-card:hover::before{
  opacity:.15;
}

.team-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.team-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:12px;
  transition:.4s ease;
}

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

.team-card h4{
  font-size:18px;
  font-weight:600;
  margin-top:8px;
}

.team-card p{
  font-size:14px;
  color:#475569;
}

/* ===== DOCTOR POPUP FIXED ===== */
.doctor-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.popup-content{
  background:#fff;
  width:90%;
  max-width:650px;
  border-radius:14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation:popupZoom .3s ease;
  position:relative;
}

.popup-content h2{
  /* color:var(--yellow);
  margin-bottom:10px; */
  background:#003b8f;
  color:#fff;
  margin:0;
  padding:22px 28px;
  font-size:26px;
  font-weight:600;
}

.popup-content p{
  /* color:#374151;
  font-size:15px; */
  padding:20px 28px;
  color:#374151;
  font-size:15.5px;
  line-height:1.7;
}

.popup-content h4,li {
    /* color:#374151;
  font-size:15px; */
    padding: 0px 28px;
    color: #374151;
    font-size: 15.5px;
    line-height: 1.7;
}

.popup-close{
   position:absolute;
  top:14px;
  right:16px;
  width:34px;
  height:34px;
  background:#111;
  color:#fff;
  border-radius:50%;
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.25s ease;
}

.popup-close:hover{
  color:red;
}

@keyframes popupZoom{
  from{
    transform:scale(.85);
    opacity:0;
  }
  to{
    transform:scale(1);
    opacity:1;
  }
}


/* Responsive */
@media(max-width:900px){
  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .team-grid{
    grid-template-columns:1fr;
  }
}



.fade{
  opacity:0;
  transform:translateY(10px);
  transition:all .25s ease;
}
.fade.show{
  opacity:1;
  transform:none;
}




@media(max-width:900px){
    .hero img{
        height: auto;
        justify-items: center;
    }
  .hero-wrap,
  .about-main-grid{
    justify-items: center;
    grid-template-columns:1.5fr;
  }
  .hero-line{
    margin-top: -50px;
  }
  .stats{
    grid-template-columns:repeat(2,1fr)
}
  .team-grid{
    grid-template-columns:repeat(2,1fr)
}
}

@media(max-width:768px){
  .about-main-grid{
    grid-template-columns: 1fr;
  }

  .about-content{
    text-align: center;
    max-width: 100%;
  }

  .hero img{
    width: 100%;
    height: auto;
  }
}
@media(max-width:600px){
  section{padding:20px 0}
  .hero h1{font-size:28px}
  .about-content h2{font-size:26px}
  .about-features,
  .stats,
  .team-grid{
    grid-template-columns:1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.35s; }


.vision-mission {
  padding: 80px 20px;
  background: linear-gradient(90deg,
              rgba(14, 165, 233, 0.6),     
              rgba(0, 80, 157, 0.6));
  text-align: center;
}

.vision-mission h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #FFFFFF;
}


.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.vm-card {
  background: rgba(255,255,255,0.85);
  padding: 36px 28px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}


.vm-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #003f88;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #003f88;
}

.vm-icon svg {
  width: 34px;
  height: 34px;
}

.vm-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0f172a;
}

.vm-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}


.site-header {
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 18px;
  font-weight: 600;
  color: #1F2A37;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin: 0 14px;
  text-decoration: none;
  font-size: 15px;
  color: #1F2A37;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,
                   rgba(0, 80, 157, 0.6) ,
                    rgba(14, 165, 233, 0.6)
                    );
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ================= BUTTON ================= */

.btn-primary {
  background: #fbda1b;
  color: #111827;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border: none;
  cursor: pointer;
}
/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1F2A37;
  margin: 6px 0;
}

/* ================= DROPDOWN ================= */

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 10px 0;
  min-width: 230px;
  display: none;
  z-index: 1000;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #1F2A37;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #F3F4F6;
}

/* Desktop hover */
@media (min-width: 901px) {
  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile dropdown */
@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 10px 0 0;
  }
}

.nav-dropdown.open .dropdown-menu {
  display: block;
}


@media (max-width: 768px) {
    .nav-brand span {
        font-size: 16px;
    }

    .brand-logo {
        width: 36px;
    }
}
/* BRAND LOGO */
.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 80px;
    height: auto;
}

.nav-brand span {
    font-size: 20px;
    font-weight: 600;
    color: #1F2A37;
    /* heading color */
}

@media (max-width: 768px) {
    .nav-brand span {
        font-size: 16px;
    }

    .brand-logo {
        width: 36px;
    }
}

/* ================= FLOATING ICONS ================= */

.floating-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

/* Hover effect */
.float-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Individual colors */
.float-icon.call {
  background: #1e88e5;
}

.float-icon.whatsapp {
  background: #25D366;
}

.float-icon.instagram {
  background: radial-gradient(circle at 30% 110%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );
}

.float-icon.facebook {
  background: #1877F2;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .floating-icons {
    right: 12px;
  }

  .float-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
        /* ================= COLORFUL FOOTER ================= */

.hospital-footer {
  background: linear-gradient(135deg,
    rgba(0, 80, 157, 0.95),
    rgba(14, 165, 233, 0.9)
  );
  color: #F9FAFB;
  padding: 60px 20px 0 20px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* BRAND */
.footer-logo {
  width: 110px;
  margin-bottom: 16px;
  /* filter: brightness(0) invert(0); */
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #E5E7EB;
  font-size: 15px;
  line-height: 1.7;
  max-width: 360px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #FFCE00;
  color: #111827;
  transform: translateY(-3px);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #E5E7EB;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFCE00;
  text-decoration: none;
  font-weight: bold;
}

/* CONTACT */
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #E5E7EB;
}

.footer-contact i {
  color: #FFCE00;
  margin-top: 4px;
}

.footer-contact a {
  color: #E5E7EB;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #FFCE00;
  text-decoration: none;
}

/* FOOTER BOTTOM */
/* .footer-bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.322);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
} */
.footer-bottom {
  margin-top: 60px;
  padding: 18px 20px;
  border-top: 1px solid rgba(31,42,55,0.2);
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}
.footer-bottom a:hover{
  color: #FFCE00;
  text-decoration: none;
  font-weight: bold;
}

.dev-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.dev-logo {
  width: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact li {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}



/* TESTIMONIALS */
.testimonials {
  background: #F9FAFB;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 50px;
}

/* Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 820px;
  margin: auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Card */
.testimonial-card {
  min-width: 100%;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 20px;
  position: relative;
}

/* Quote icon */
.quote-icon {
  font-size: 70px;
  color: #E5E7EB;
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: serif;
}

/* Text */
.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 30px;
}

.testimonial-card strong {
  display: block;
  font-size: 16px;
  color: #111827;
}

.stars {
  color: #FFCE00;
  font-size: 18px;
  margin-top: 6px;
}

/* Arrows (FIXED POSITION) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Dots */
.carousel-dots {
  margin-top: 25px;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  background: #D1D5DB;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}

.carousel-dots span.active {
  background: #00509d;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 40px 24px;
  }
  .carousel-btn {
    display: none;
  }
}

/* ================= FLOATING ICONS ================= */

.floating-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

/* Hover effect */
.float-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Individual colors */
.float-icon.call {
  background: #1e88e5;
}

.float-icon.whatsapp {
  background: #25D366;
}

.float-icon.instagram {
  background: radial-gradient(circle at 30% 110%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );
}

.float-icon.facebook {
  background: #1877F2;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .floating-icons {
    right: 12px;
  }

  .float-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
        /* ================= COLORFUL FOOTER ================= */

.hospital-footer {
  background: linear-gradient(135deg,
    rgba(0, 80, 157, 0.95),
    rgba(14, 165, 233, 0.9)
  );
  color: #F9FAFB;
  padding: 60px 20px 0 20px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* BRAND */
.footer-logo {
  width: 110px;
  margin-bottom: 16px;
  /* filter: brightness(0) invert(0); */
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #E5E7EB;
  font-size: 15px;
  line-height: 1.7;
  max-width: 360px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #FFCE00;
  color: #111827;
  transform: translateY(-3px);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #E5E7EB;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFCE00;
  text-decoration: none;
  font-weight: bold;
}

/* CONTACT */
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #E5E7EB;
}

.footer-contact i {
  color: #FFCE00;
  margin-top: 4px;
}

.footer-contact a {
  color: #E5E7EB;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #FFCE00;
  text-decoration: none;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.322);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}
.footer-bottom a:hover{
  color: #FFCE00;
  text-decoration: none;
  font-weight: bold;
}

.dev-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.dev-logo {
  width: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact li {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


.stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
@media (max-width: 600px) {
  .team-card {
    padding: 14px;
  }

  .team-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .team-card {
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .floating-icons {
    right: 10px;
  }
}


/* ================= OUR DOCTORS – MOBILE FIX ================= */

@media (max-width: 768px) {
  .doctors-section {
    padding: 40px 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 16px;
  }

  .team-card img {
    height: auto;
    aspect-ratio: 3 / 4;
  }
}

.site-header {
            background: #ffffff;
            border-bottom: 1px solid #E5E7EB;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: auto;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-brand {
            font-size: 18px;
            font-weight: 600;
            color: #1F2A37;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
        }

        .nav-links a {
            margin: 0 14px;
            text-decoration: none;
            font-size: 15px;
            color: #1F2A37;
            font-weight: 500;
            position: relative;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg,
                    rgba(0, 80, 157, 0.6),
                    rgba(14, 165, 233, 0.6));
                z-index: 1;;
            transition: width 0.25s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* ================= BUTTON ================= */

        .btn-primary {
            background: #fbda1b;
            color: #111827;
            padding: 12px 22px;
            border-radius: 6px;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            border: none;
            cursor: pointer;
        }

        /* ================= HAMBURGER ================= */

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: #1F2A37;
            margin: 6px 0;
        }
 @media (max-width: 900px) {
            .hamburger {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #ffffff;
                flex-direction: column;
                align-items: center;
                gap: 18px;
                padding: 30px 20px;
                border-bottom: 1px solid #E5E7EB;
                display: none;
            }

            .nav-links.active {
                display: flex;
            }
        }