 /* ===== GLOBAL RESET ===== */
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body { font-family:"Segoe UI", sans-serif; background:#f9fafc; }

    /* ===== HEADER ===== */
    .site-header {
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 9999;
      backdrop-filter: blur(20px);
      background: rgba(255,255,255,0.9);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    .header-wrapper {
      max-width: 1300px;
      margin:auto;
      padding: 0 30px;
      height: 80px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }
    .logo img { height: 150px; }

    /* ===== NAVIGATION ===== */
    .nav-desktop ul {
      list-style:none;
      display:flex;
      gap:35px;
      align-items:center;
    }
    .nav-desktop a {
      text-decoration:none;
      color:#111;
      font-weight:500;
      font-size:15px;
      transition:.3s;
    }
    .nav-desktop a:hover { color:#0066ff; }

    /* ===== CTA BUTTONS ===== */
    .header-actions {
      display:flex;
      align-items:center;
      gap:15px;
    }
    .cta-btn, .whatsapp-btn {
      padding:10px 18px;
      border-radius:6px;
      font-weight:500;
      cursor:pointer;
      transition:.3s;
      display:flex;
      align-items:center;
      gap:8px;
      text-decoration:none;
    }
    .cta-btn {
      background:#0066ff;
      color:#fff;
      border:none;
    }
    .cta-btn:hover { background:#0052cc; }

    .whatsapp-btn {
      background:#25D366;
      color:#fff;
      border:none;
    }
    .whatsapp-btn:hover { background:#1da851; }
    .whatsapp-btn span { font-family:"Font Awesome 6 Brands"; font-size:18px; }

    /* ===== MOBILE ===== */
    .mobile-toggle { display:none; font-size:28px; border:none; background:none; cursor:pointer; }

    .mobile-menu {
      position: fixed;
      inset:0;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(2px);
      opacity:0;
      pointer-events:none;
      transition: opacity 0.35s ease;
      z-index: 9999;
    }
    .mobile-menu.active { opacity:1; pointer-events:auto; }

    .mobile-drawer {
      position: absolute;
      right: -320px;
      top:0;
      width:300px;
      height:100%;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(15px);
      padding:30px;
      transition: right 0.35s ease;
      display:flex;
      flex-direction:column;
      box-shadow:-10px 0 30px rgba(0,0,0,0.1);
      overflow-y:auto;
    }
    .mobile-menu.active .mobile-drawer { right:0; }

    .close-menu {
      align-self:flex-end;
      font-size:22px;
      border:none;
      background:none;
      cursor:pointer;
      margin-bottom:20px;
      font-weight:600;
    }

    .mobile-drawer ul {
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:15px;
    }

    .mobile-submenu {
      max-height:0;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      gap:10px;
      padding-left:15px;
      transition: max-height 0.35s ease;
    }
    .mobile-submenu.open { max-height:500px; }

    .submenu-toggle::after {
      content: "▼";
      font-size:12px;
      transition: transform 0.3s;
    }
    .submenu-toggle.open::after { transform:rotate(-180deg); }

    .mobile-cta-btn {
      margin-top:15px;
      padding:10px;
      background:#0066ff;
      color:#fff !important;
      text-align:center;
      border-radius:4px;
      font-weight:500;
    }
    .mobile-whatsapp-btn {
      margin-top:10px;
      padding:10px;
      background:#25D366;
      color:#fff !important;
      text-align:center;
      border-radius:4px;
      font-weight:500;
      text-decoration:none;
      display:block;
    }
    .mobile-whatsapp-btn span { font-family:"Font Awesome 6 Brands"; font-size:18px; }

    @media(max-width:992px){
      .nav-desktop, .header-actions { display:none; }
      .mobile-toggle { display:block; }
    }

    /* ===== HERO ===== */
    .hero {
      height:120vh;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:40px;
      font-weight:700;
    }

    .uni-banner {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: fill;
  border-radius: 10px;
}

/* Prev / Next Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
}
.prev:hover, .next:hover {
  background: rgba(0,0,0,0.7);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots navigation */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #0066ff;
}

/* Responsive */
@media(max-width:992px){
  .slide img { height: 300px; }
  .prev, .next { font-size: 20px; padding: 8px 12px; }
}
/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  animation: dental-pulse 1.8s infinite;
}

/* Hover */
.floating-whatsapp:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #333;
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
}

/* Dental-themed pulse animation */
@keyframes dental-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== BANNER ===== */
.uni-banner { position:relative; overflow:hidden; }
.slides { display:flex; transition:0.5s; }
.slide { min-width:100%; }
.dot.active { background:#25d366; }

/* ===== TRANSFORMATIONS ===== */
.transformation-section { padding:80px 0; background:#f9fbff; }
.transformation-carousel { display:flex; overflow-x:auto; gap:25px; scroll-behavior:smooth; }
.transformation-card { flex:0 0 320px; background:#fff; border-radius:16px; box-shadow:0 12px 25px rgba(0,0,0,0.08); transition:transform 0.3s; cursor:pointer; }
.transformation-card:hover { transform:scale(1.05); box-shadow:0 20px 40px rgba(0,0,0,0.15); }
.before-after { display:flex; height:200px; border-radius:16px 16px 0 0; overflow:hidden; }
.before, .after { width:50%; position:relative; }
.label { position:absolute; bottom:10px; left:10px; padding:4px 10px; font-size:12px; font-weight:600; color:#fff; border-radius:20px; }
.before-label { background:#ff6b6b; } .after-label { background:#25d366; }

/* ===== SERVICES ===== */
.our-services-section { padding:80px 0; background:#f9fbff; text-align:center; }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:25px; max-width:1100px; margin:0 auto; }
.service-card { background:#fff; padding:25px; border-radius:16px; box-shadow:0 12px 25px rgba(0,0,0,0.08); transition:0.3s; }
.service-card:hover { transform:translateY(-8px); box-shadow:0 20px 40px rgba(0,0,0,0.15); }
.service-icon { font-size:48px; color:#0066ff; margin-bottom:15px; }
.view-all-services { display:inline-block; padding:12px 30px; background:#0066ff; color:#fff; border-radius:50px; font-weight:600; text-decoration:none; transition:0.3s; }
.view-all-services:hover { background:#0051cc; transform:scale(1.05); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding:80px 0; background:#f4f8ff; text-align:center; }
.testimonials-carousel { display:flex; overflow-x:auto; gap:25px; scroll-behavior:smooth; }
.testimonial-card { flex:0 0 300px; background:#fff; border-radius:16px; padding:25px; box-shadow:0 12px 25px rgba(0,0,0,0.08); transition:0.3s; }
.testimonial-card:hover { transform:scale(1.05); box-shadow:0 20px 40px rgba(0,0,0,0.15); }
.testimonial-quote { font-style:italic; color:#1a2b48; margin-bottom:15px; }
.testimonial-rating i { color:#ffbb33; margin-right:2px; }
.testimonial-patient { display:flex; justify-content:center; align-items:center; gap:10px; margin-top:15px; }
.testimonial-patient img, .placeholder-photo { width:40px; height:40px; border-radius:50%; object-fit:cover; background:#ccc; display:flex; align-items:center; justify-content:center; font-weight:700; color:#fff; }
.patient-name { font-weight:600; color:#1a2b48; }
.add-review-btn { padding:12px 30px; background:#0066ff; color:#fff; border-radius:50px; font-weight:600; cursor:pointer; border:none; transition:0.3s; }
.add-review-btn:hover { background:#0051cc; transform:scale(1.05); }
.section-title{font-size: 29px;}
/* ===== MODAL ===== */
.modal { display:none; position:fixed; z-index:999; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.6); }
.modal-content { background:#fff; margin:80px auto; padding:30px; border-radius:16px; max-width:500px; position:relative; box-shadow:0 20px 40px rgba(0,0,0,0.15); }
.close-modal { position:absolute; top:15px; right:20px; font-size:28px; cursor:pointer; color:#333; }
.modal-content input, .modal-content textarea { width:100%; padding:12px; margin-bottom:15px; border:1px solid #ccc; border-radius:8px; font-size:14px; }
.modal-content button { width:100%; padding:12px; background:#0066ff; color:#fff; border:none; border-radius:50px; font-weight:600; cursor:pointer; transition:0.3s; }
.modal-content button:hover { background:#0051cc; transform:scale(1.03); }

/* ===== LOCATION ===== */
.location-section { padding:80px 0; text-align:center; background:#fff; }
.map-wrapper { margin-top:30px; max-width:900px; margin-left:auto; margin-right:auto; border-radius:16px; overflow:hidden; box-shadow:0 12px 25px rgba(0,0,0,0.1); transition:0.3s; }
.map-wrapper:hover { transform:translateY(-5px); box-shadow:0 20px 40px rgba(0,0,0,0.15); }
.responsive-map { width:100%; height:450px; border:0; }

/* ===== MEDIA QUERIES ===== */
@media(max-width:992px){ .transformation-card{flex:0 0 280px;} .testimonial-card{flex:0 0 280px;} }
@media(max-width:576px){ .transformation-card{flex:0 0 240px;} .testimonial-card{flex:0 0 240px;} .responsive-map{height:300px;} }

    .why-choose-section {
    padding: 80px 0;
    background: #f9fbff;
    text-align: center;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.choose-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.choose-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #0066ff;
}

.choose-card h3 {
    font-size: 20px;
    color: #1a2b48;
    margin-bottom: 10px;
}

.choose-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Section headings */
.why-choose-section .section-title { 
    color: #1a2b48; 
    font-weight: 700; 
    margin-bottom: 10px; 
}
.why-choose-section .section-subtitle { 
    color: #666; 
    margin-bottom: 40px; 
}

/* Responsive */
@media(max-width: 992px){ 
    .choose-card { padding:25px 15px; } 
    .choose-icon { font-size:42px; } 
}
@media(max-width: 576px){ 
    .choose-card { padding:20px 12px; } 
    .choose-icon { font-size:36px; } 
    .section-title { font-size:28px; } 
}

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 14px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e6ecf5;
    background: #f9fbff;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a2b48;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 22px;
}

.faq-answer p {
    padding: 15px 0 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.articles-section {
    padding: 80px 0;
    background: #f9fbff;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
}

.view-all-btn {
    color: #0066ff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.view-all-btn:hover {
    color: #004ecc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 25px;
}

.article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.article-card a {
    text-decoration: none;
    color: inherit;
}

.article-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.article-content {
    padding: 18px;
}

.article-date {
    font-size: 12px;
    color: #888;
}

.article-content h3 {
    font-size: 18px;
    margin: 8px 0;
    color: #1a2b48;
}

.article-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
    /* ================= CLINIC FOOTER ================= */
    .footer-dev {
    font-size: 12px;
    color: #cfe2f7;
    margin-left: 6px;
}

.footer-dev strong {
    color: #25d366;
    font-weight: 600;
}
.clinic-footer {
    background: linear-gradient(135deg, #0b2c4d, #0e3c68);
    color: #fff;
    padding-top: 70px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #dce7f3;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-col h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #25d366;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-contact li {
    list-style: none;
    margin-bottom: 12px;
    font-size: 14px;
    color: #e3eefb;
}

.footer-contact i {
    color: #25d366;
    margin-right: 10px;
}

.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links a {
    color: #dce7f3;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #25d366;
    padding-left: 5px;
}

.footer-small {
    font-size: 14px;
    color: #dce7f3;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.newsletter-form button {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #1fa855;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #25d366;
    transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #dce7f3;
}

.footer-policy a {
    margin-left: 15px;
    color: #dce7f3;
    text-decoration: none;
}

.footer-policy a:hover {
    color: #25d366;
}

/* Responsive */
@media (max-width: 576px) {
    .footer-bottom {
        text-align: center;
        gap: 10px;
    }
}
  .footer-hours .hours-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}
.footer-col.footer-hours.mb-4 {
    margin-bottom: 20px;
}
.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: #eaf2ff;
    font-size: 14px;
}

.open-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.open { background: #25d366; color: #fff; }
.closed { background: #ff6b6b; color: #fff; }
.footer-map .mini-map {
    width: 100%;
    height: 160px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section .intro h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-section .intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Mission & Vision Cards ===== */
.about-section .card {
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    text-align: center;
}

.about-section .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-section .card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-section .card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-section .card p {
    font-size: 1.05rem;
}

/* ===== Core Values Grid ===== */
.values-section {
    margin-top: 60px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    border-radius: 12px;
    background-color: var(--bg-light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2rem;
    margin-right: 15px;
}

.value-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-section .intro h1 {
        font-size: 2.5rem;
    }
    .about-section .card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 15px;
    }
    .about-section .intro h1 {
        font-size: 2rem;
    }
    .about-section .card h3 {
        font-size: 1.4rem;
    }
    .value-card {
        flex-direction: row;
        padding: 20px;
    }
}

/* ===============================
   DESIGN SYSTEM (FAANG LEVEL)
================================ */

:root{
  --primary:#0ea5e9;
  --primary-dark:#0369a1;
  --text-dark:#0f172a;
  --text-light:#64748b;
  --bg-light:#f8fafc;
  --radius-lg:24px;
  --radius-md:16px;
  --shadow-soft:0 20px 50px rgba(0,0,0,.06);
  --shadow-hover:0 25px 60px rgba(0,0,0,.12);
  --transition:all .35s cubic-bezier(.4,0,.2,1);
}


/* ===============================
   HERO SECTION
================================ */

.about-hero{
  padding:140px 0 120px;
  color:white;
  position:relative;
  overflow:hidden;
}

.about-hero::after{
  content:"";
  position:absolute;
  bottom:-80px;
  left:50%;
  transform:translateX(-50%);
  width:120%;
  height:160px;
  background:white;
}

.hero-title{
  font-size:clamp(2.4rem,5vw,3.4rem);
  font-weight:800;
  letter-spacing:-1px;
}

.hero-subtitle{
  max-width:680px;
  margin:25px auto 0;
  font-size:1.15rem;
  opacity:.9;
  line-height:1.7;
}

.gradient-text{
  background:linear-gradient(90deg,#38bdf8,#f0f9ff);
  -webkit-text-fill-color:transparent;
}

/* Stats */
.hero-stats{
  display:flex;
  justify-content:center;
  gap:70px;
  margin-top:50px;
}

.hero-stats h3{
  font-size:2rem;
  font-weight:800;
}

.hero-stats p{
  opacity:.8;
  font-size:.95rem;
}


/* ===============================
   STORY SECTION
================================ */

.about-story img{
  transition:var(--transition);
}

.about-story img:hover{
  transform:scale(1.03);
  box-shadow:var(--shadow-hover);
}

.section-heading{
  font-weight:800;
  font-size:2rem;
  margin-bottom:20px;
  color:var(--text-dark);
}

.text-muted{
  color:var(--text-light) !important;
  line-height:1.8;
}


/* ===============================
   GLASS CARD (MISSION / VISION)
================================ */
.mission-vision{
  padding:120px 0;
}

.premium-card{
  background:#ffffff;
  padding:60px 50px;
  border-radius:28px;
  text-align:center;
  position:relative;
  transition:all .4s cubic-bezier(.4,0,.2,1);
  box-shadow:0 20px 60px rgba(0,0,0,.06);
  height:100%;
}

/* Soft gradient border glow */
.premium-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:30px;
  padding:2px;
  opacity:.6;
  transition:.4s;
}

.premium-card:hover{
  transform:translateY(-14px);
  box-shadow:0 35px 80px rgba(0,0,0,.12);
}

.premium-card:hover::before{
  opacity:1;
}

/* Icon */
.card-icon{
  width:70px;
  height:70px;
  margin:0 auto 30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#0ea5e9,#6366f1);
  color:white;
  font-size:26px;
  box-shadow:0 15px 35px rgba(14,165,233,.35);
  transition:.4s;
}

.premium-card:hover .card-icon{
  transform:scale(1.1) rotate(6deg);
}

/* Typography */
.premium-card h3{
  font-weight:800;
  font-size:1.6rem;
  margin-bottom:20px;
  color:#0f172a;
}

.premium-card p{
  color:#64748b;
  line-height:1.8;
  font-size:1.05rem;
}

/* Responsive */
@media(max-width:768px){
  .premium-card{
    padding:45px 30px;
  }
}

.glass-card{
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(18px);
  padding:50px;
  border-radius:var(--radius-lg);
  color:white;
  transition:var(--transition);
  box-shadow:var(--shadow-soft);
}

.glass-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow-hover);
}


/* ===============================
   CORE VALUES
================================ */

.values-section{
  background:var(--bg-light);
}

.value-card{
  text-align:center;
  padding:40px 30px;
  border-radius:var(--radius-lg);
  background:white;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
  height:100%;
}

.value-card:hover{
  transform:translateY(-12px);
  box-shadow:var(--shadow-hover);
}

.value-card i{
  font-size:36px;
  color:var(--primary);
  margin-bottom:18px;
  transition:var(--transition);
}

.value-card:hover i{
  transform:scale(1.2);
  color:var(--primary-dark);
}

.value-card h5{
  font-weight:700;
  margin-bottom:10px;
}


/* ===============================
   FOUNDER SECTION
================================ */

.founder-section{
  background:linear-gradient(to bottom,#f1f5f9,#ffffff);
}

.founder-card{
  max-width:650px;
  padding:50px;
  background:white;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.founder-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-hover);
}

.founder-card h4{
  font-weight:800;
}


/* ===============================
   CTA SECTION
================================ */

.about-cta{
  padding:100px 0;
  background:#0ea5e9;
  color:white;
}

.about-cta h2{
  font-weight:800;
  font-size:2.2rem;
}

.about-cta .btn{
  padding:14px 40px;
  border-radius:50px;
  font-weight:600;
  transition:var(--transition);
}

.about-cta .btn:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(0,0,0,.25);
}


/* ===============================
   RESPONSIVE
================================ */

@media(max-width:992px){
  .hero-stats{
    gap:40px;
  }
}

@media(max-width:768px){
  .about-hero{
    padding:100px 0 80px;
  }

  .hero-stats{
    flex-direction:column;
    gap:25px;
  }

  .glass-card{
    padding:35px;
  }

  .founder-card{
    padding:35px;
  }
}
/* HERO */
.about-hero{
padding:110px 0;
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
color:white;
}
.hero-title{
font-size:3rem;
font-weight:800;
}
.hero-subtitle{
max-width:600px;
margin:20px auto;
opacity:.9;
}
.hero-stats{
display:flex;
justify-content:center;
gap:50px;
margin-top:40px;
}
.hero-stats h3{
font-weight:800;
}

/* GLASS CARD */
.glass-card{
background:rgba(255,255,255,.1);
backdrop-filter:blur(10px);
padding:40px;
border-radius:20px;
color:white;
}

/* VALUES */
.value-card{
text-align:center;
padding:30px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
}
.value-card:hover{
transform:translateY(-8px);
}
.value-card i{
font-size:30px;
color:#007bff;
margin-bottom:15px;
}

/* FOUNDER */
.founder-card{
max-width:600px;
padding:40px;
background:white;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.1);
}

/* CTA */
.about-cta{
padding:80px 0;
background:#007bff;
color:white;
}

@media(max-width:768px){
.hero-title{font-size:2.2rem;}
.hero-stats{flex-direction:column;gap:20px;}
}

.opening-hours-section {
  padding: 20px 0;
  background: #ffffff;
  text-align: center;
}
.opening-hours-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a2b48;
  margin-bottom: 10px;
}
.opening-hours-section .section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.day {
  background: #f4f8ff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.day:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.day.closed { background: #ffe6e6; }

.day.today { border: 2px solid #25d366; }

.day-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: #1a2b48;
  margin-bottom: 5px;
}
.day-info i {
  color: #25d366;
  font-size: 18px;
}

.time {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.open-status {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
  color: #fff;
}
.open-status.open { background: #25d366; }
.open-status.closed { background: #ff6b6b; }

/* Responsive */
@media (max-width: 576px) {
  .hours-grid { gap: 15px; }
  .day { padding: 15px; }
  .day-info i { font-size: 16px; }
  .section-title { font-size: 28px; }
}
.service-card {
    transition: all 0.4s ease;
    border-radius: 18px;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,.12);
}
/* HERO */
.service-hero {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}
.service-hero-icon {
    height: 70px;
    width: auto;
}

/* CONTENT */
.service-content {
    font-size: 1.05rem;
    line-height: 1.9;
}
.service-content p {
    margin-bottom: 1.3rem;
}

/* BUTTON */
.btn-gradient {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: #fff;
    border-radius: 50px;
    transition: all .3s ease;
}
.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,123,255,.25);
}

/* OTHER SERVICES */
.service-card {
    display: block;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,.12);
}
.service-card-icon {
    height: 42px;
}
.service-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #007bff;
}
    .faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    color: #4b5563;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active i {
    transform: rotate(180deg);
}
/* Transformation carousel */
.transformation-section {
  padding: 60px 0;
  background: #f9fbff;
  position: relative;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.transformation-nav button {
  background: #0066ff;
  border: none;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  margin-left: 5px;
  transition: transform 0.2s;
}

.transformation-nav button:hover {
  transform: scale(1.1);
}

.transformation-carousel {
  display: flex;
  overflow: hidden;
  gap: 20px;
}

.transformation-card {
  min-width: 300px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.transformation-card:hover {
  transform: translateY(-5px);
}

/* Before / After */
.before-after {
  display: flex;
}

.before-after img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.before, .after {
  position: relative;
  width: 50%;
}

/* Labels */
.label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-radius: 20px;
}

.before-label { background: #ff6b6b; }
.after-label { background: #25d366; }

.transformation-info {
  padding: 15px;
}

.transformation-info h4 { font-size: 16px; margin-bottom: 5px; }
.transformation-info p { font-size: 14px; color: #666; }

/* Responsive */
@media (max-width: 768px) {
  .transformation-carousel { gap: 15px; }
  .before-after img { height: 140px; }
}

.transformation-nav {
    display: flex;
}
.testimonials-section { padding:80px 0; background:#f4f8ff; text-align:center; }
.testimonials-carousel { display:flex; overflow-x:auto; scroll-behavior:smooth; gap:25px; padding-bottom:10px; }
.testimonials-carousel::-webkit-scrollbar { display:none; }
.testimonial-card { flex:0 0 300px; background:#fff; border-radius:16px; padding:25px; box-shadow:0 12px 25px rgba(0,0,0,0.08); transition:transform 0.3s, box-shadow 0.3s; }
.testimonial-card:hover { transform:scale(1.05); box-shadow:0 20px 40px rgba(0,0,0,0.15); }
.testimonial-quote { font-size:16px; font-style:italic; color:#1a2b48; margin-bottom:15px; }
.testimonial-rating i { color:#ffbb33; margin-right:2px; }
.testimonial-patient { display:flex; align-items:center; justify-content:center; gap:10px; margin-top:15px; }
.testimonial-patient img, .placeholder-photo { width:40px; height:40px; border-radius:50%; object-fit:cover; background:#ccc; display:flex; align-items:center; justify-content:center; font-weight:700; color:#fff; }
.patient-name { font-weight:600; color:#1a2b48; }
.test-btn { transform:translateY(-50%); z-index:10; background:#0066ff; border:none; color:#fff; width:40px; height:40px; border-radius:50%; font-size:18px; cursor:pointer; box-shadow:0 5px 15px rgba(0,0,0,0.2); transition:0.2s; }
.test-btn:hover { transform:translateY(-50%) scale(1.1); }
.test-prev { left:-20px; } .test-next { right:-20px; }

/* Responsive */
@media(max-width:992px){ .testimonial-card{flex:0 0 280px;} .test-btn{width:35px;height:35px;font-size:16px;} }
@media(max-width:576px){ .testimonial-card{flex:0 0 240px;} .test-btn{width:30px;height:30px;font-size:14px;} }

/* Form container */
.booking-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.booking-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Input fields */
.booking-form .form-control {
    border-radius: 8px;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.booking-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
    outline: none;
}

/* Labels */
.booking-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333333;
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    padding: 14px 0;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

/* Form error styling */
.booking-form .text-danger, 
.booking-form .field-error {
    font-size: 0.875rem;
    color: #ff4d4f;
    margin-top: 4px;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .booking-form {
        padding: 25px 15px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .btn-gradient {
        font-size: 0.95rem;
        padding: 12px 0;
    }
}
/* ================= HERO ================= */
.articles-hero {
    background: #f5f8ff;
    text-align: center;
    padding: 20px;
}

.articles-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1f3c;
    margin-bottom: 0.5rem;
}

.articles-hero p {
    color: #555;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ================= SEARCH ================= */
.search-box {
    max-width: 480px;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #d3d3d3;
    background: #fff;
    margin: 1.5rem auto 0;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-size: 0.95rem;
}
.search-box input:focus {
    outline: none;
}

.search-box button {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.search-box button:hover {
    background: #0056b3;
}

/* ================= ARTICLE CARD ================= */
.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.article-thumb img {
    width: 100%;
    height: 220px;
    object-fit: fill;
    padding: 5px;
    border-radius: 12px;
}


/* HERO */
.contact-hero{
padding:100px 0;
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
color:white;
}
.hero-title{
font-size:3rem;
font-weight:800;
}
.hero-subtitle{
max-width:600px;
margin:20px auto;
font-size:1.1rem;
opacity:.9;
}
.hero-buttons .btn{
margin:10px;
padding:12px 25px;
border-radius:50px;
}
.btn-call{
background:#25d366;
color:white;
}

/* CARDS */
.contact-card, .info-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* FORM */
.form-group{
margin-bottom:20px;
}
.form-group label{
display:block;
margin-bottom:8px;
font-weight:600;
}
.form-group input,
.form-group textarea{
width:100%;
padding:12px;
border-radius:10px;
border:1px solid #ddd;
}
.form-group input:focus,
.form-group textarea:focus{
border-color:#007bff;
outline:none;
box-shadow:0 0 0 3px rgba(0,123,255,.1);
}

/* INFO */
.info-item{
display:flex;
gap:15px;
margin-bottom:20px;
}
.info-item i{
font-size:22px;
color:#007bff;
}

/* MAP */
.map-section iframe{
width:100%;
height:400px;
border:0;
}

/* FAQ */
.faq-item{
margin-bottom:30px;
}

/* WHATSAPP */
.floating-whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25d366;
color:white;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
box-shadow:0 8px 20px rgba(0,0,0,.2);
z-index:999;
}

@media(max-width:768px){
.hero-title{font-size:2.2rem;}
}
.article-body {
    padding: 18px 16px;
}

.article-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.article-title a {
    text-decoration: none;
    color: #0d1f3c;
}

.article-excerpt {
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 12px;
}

.read-more {
    font-weight: 500;
    color: #0d6efd;
    text-decoration: none;
}
.read-more:hover {
    text-decoration: underline;
}

/* ================= PAGINATION ================= */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 2rem;
}
.page-btn {
    padding: 8px 16px;
    border-radius: 50px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}
.page-btn:hover {
    background: #0056b3;
}
.page-info {
    font-weight: 500;
    color: #333;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {
    .articles-hero h1 {
        font-size: 2rem;
    }
    .search-box input {
        font-size: 0.9rem;
    }
    .article-thumb img {
        height: 180px;
    }
}
.carousel-wrapper {
    margin-top: 25px;
}

/* HERO */
.blog-hero {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    padding: 70px 0;
}
.blog-title {
    font-weight: 800;
    font-size: 2.6rem;
    max-width: 900px;
    margin: auto;
}
.blog-meta {
    color: #777;
    margin-top: 10px;
}

/* IMAGE */
.blog-image img {
    width: 100%;
    border-radius: 18px;
}

    .share_button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;          /* space between icon and text */
    padding: 0.5rem 1.25rem; /* px-5 py-2 equivalent */
    border-radius: 9999px;  /* full pill */
    background-color: #2563eb; /* blue-600 */
    color: white;
    font-weight: 500;
    font-size: 0.875rem; /* text-sm */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.share_button i {
    font-size: 1rem;
}

/* Hover effect */
.share_button:hover {
    background-color: #1d4ed8; /* blue-700 */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* shadow-lg */
    transform: translateY(-1px);
}

/* Focus effect for accessibility */
.share_button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); /* focus:ring-2 focus:ring-blue-400 */
}

/* Active click effect */
.share_button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustment for mobile */
@media (max-width: 575px) {
    .share_button {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    .share_button i {
        font-size: 0.9rem;
    }
}

/* CONTENT */
.blog-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
}
.blog-content h2,
.blog-content h3 {
    margin-top: 2.2rem;
    font-weight: 700;
}

/* CTA */
.btn-gradient {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: #fff;
    border-radius: 50px;
    transition: all .3s ease;
}
.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,123,255,.35);
}

/* SIDEBAR */
.sidebar-card {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}
.sidebar-title {
    font-weight: 700;
    margin-bottom: 18px;
}

/* RELATED ITEMS */
.related-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}
.related-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}
.related-title {
    font-size: .95rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
}
.related-date {
    font-size: .8rem;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }
}

.pagination-wrapper .page-btn {
    display: inline-block;
    padding: 6px 10px;
    margin: 2px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    min-width: 36px;
    text-align: center;
    font-size: 0.9rem;
}

.pagination-wrapper .page-btn:hover {
    background-color: #f0f0f0;
}

.pagination-wrapper .page-btn.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination-wrapper .page-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Ellipsis only on desktop (hide on mobile) */
.pagination-wrapper span.d-none.d-md-inline {
    display: none;
}

@media (min-width: 768px) {
    .pagination-wrapper span.d-none.d-md-inline {
        display: inline-block;
    }
}

/* Adjust spacing on small screens */
@media (max-width: 575px) {
    .pagination-wrapper {
        flex-wrap: wrap;
        gap: 4px;
    }
    .pagination-wrapper .page-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
        min-width: 28px;
    }
}