/* =============================
   ROOT COLORS
============================= */

:root{
  --primary:#0e1f3d;
  --accent:#1f3c88;
  --gold:#c8a951;
  --light:#f5f7fb;
  --text:#333;
}

/* =============================
   GLOBAL STYLES
============================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  line-height:1.7;
  color:#1a1a1a;
  background:#ffffff;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section{
  padding:60px 0;
}

.light-bg{
  background:#f7f9fc;
  padding:50px 0;
}

/* =============================
   TOP BAR
============================= */

.top-bar{
  background:#0b2c63;
  color:#fff;
  padding:8px 0;
  font-size:14px;
}

.top-bar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.top-bar a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

/* =============================
   NAVIGATION
============================= */

header{
  background:#ffffff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 3px 15px rgba(0,0,0,0.05);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo{
  font-weight:700;
  font-size:20px;
  color:#0b2c63;
}

nav ul{
  display:flex;
  list-style:none;
  gap:28px;
}

nav a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:0.3s ease;
}

nav a:hover{
  color:#0b2c63;
}

/* =============================
   BUTTONS
============================= */

.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  padding:14px 28px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  transition:all 0.3s ease;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

.btn-outline{
  border:2px solid #0b2c63;
  color:#0b2c63;
  padding:12px 22px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  margin-left:15px;
  transition:0.3s;
}

.btn-outline:hover{
  background:#0b2c63;
  color:#fff;
}


/* ==========================================
   PREMIUM SERVICES SECTION
========================================== */

.services-section{
  padding:120px 0;
  background:#f8fafc;
}

/* Section Header */
.section-header{
  text-align:center;
  max-width:850px;
  margin:0 auto 80px auto;
}

.section-badge{
  display:inline-block;
  background:#c8a951;
  color:#0e1f3d;
  padding:8px 22px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.5px;
  margin-bottom:18px;
}

.section-header h2{
  font-size:40px;
  font-weight:700;
  color:#0e1f3d;
  margin-bottom:20px;
}

.section-header p{
  font-size:16px;
  color:#555;
  line-height:1.6;
}

/* Grid Layout */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:35px;
}

/* Individual Service Card */
.service-card{
  background:#ffffff;
  padding:40px 30px;
  border-radius:18px;
  box-shadow:0 15px 45px rgba(0,0,0,0.05);
  transition:all 0.4s ease;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.03);
}

/* Gold Accent Top Border */
.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  height:4px;
  width:100%;
  background:linear-gradient(90deg,#0e1f3d,#c8a951);
}

/* Hover Effect */
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 65px rgba(0,0,0,0.12);
}

/* Service Title */
.service-card h3{
  font-size:20px;
  font-weight:600;
  color:#0e1f3d;
  margin-bottom:15px;
}

/* Description */
.service-card p{
  font-size:14px;
  color:#555;
  line-height:1.7;
  margin-bottom:25px;
}

/* Read More Button */
.read-more{
  display:inline-block;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color:#0e1f3d;
  position:relative;
  transition:0.3s ease;
}

.read-more::after{
  content:"";
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-4px;
  background:#c8a951;
  transition:0.3s ease;
}

.read-more:hover{
  color:#c8a951;
}

.read-more:hover::after{
  width:100%;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1100px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

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

  .section-header h2{
    font-size:30px;
  }
}
/* =============================
   HEADINGS
============================= */

h2{
  font-size:32px;
  margin-bottom:25px;
  color:#0b2c63;
}

h3{
  font-size:22px;
  margin:25px 0 10px;
  color:#222;
}

p{
  margin-bottom:15px;
  color:#444;
}
/* ================= MOBILE OVERLAY ================= */

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9998; /* below menu */
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* ==========================================
   PREMIUM ABOUT SECTION
========================================== */

.about-premium{
  padding:120px 0;
  background:#f8fafc;
}

.about-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

/* LEFT SIDE */
.about-content{
  flex:1;
}

.about-content h2{
  font-size:38px;
  color:#0e1f3d;
  margin-bottom:25px;
}

.about-content p{
  font-size:16px;
  color:#555;
  line-height:1.8;
  margin-bottom:20px;
}

/* RIGHT SIDE EDUCATION */
.about-education{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:25px;
}

.edu-card{
  background:#ffffff;
  padding:25px 30px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
  transition:0.3s ease;
  border-left:4px solid #c8a951;
}

.edu-card h4{
  font-size:16px;
  font-weight:700;
  color:#0e1f3d;
  margin-bottom:8px;
}

.edu-card p{
  font-size:14px;
  color:#555;
}

.edu-card:hover{
  transform:translateY(-5px);
  box-shadow:0 25px 60px rgba(0,0,0,0.1);
}



/* ==========================================
   WHY BEST PREMIUM SECTION
========================================== */

.why-best{
  padding:110px 0;
  background:#ffffff;
}

.why-header{
  text-align:center;
  margin-bottom:60px;
}

.why-header h2{
  font-size:36px;
  color:#0e1f3d;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

/* Individual Card */
.why-card{
  background:#ffffff;
  padding:35px 30px;
  border-radius:18px;
  box-shadow:0 12px 35px rgba(0,0,0,0.05);
  transition:all 0.4s ease;
  position:relative;
  border:1px solid rgba(0,0,0,0.03);
}

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

/* Number Badge */
.why-number{
  font-size:14px;
  font-weight:700;
  background:#c8a951;
  color:#0e1f3d;
  display:inline-block;
  padding:6px 14px;
  border-radius:30px;
  margin-bottom:15px;
}

.why-card h3{
  font-size:18px;
  color:#0e1f3d;
  margin-bottom:10px;
}

.why-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

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

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

/* =============================
   FAQ SECTION
============================= */

.faq-item{
  border-bottom:1px solid #ddd;
  padding:18px 0;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  font-size:18px;
  font-weight:600;
  text-align:left;
  cursor:pointer;
  padding:10px 0;
  position:relative;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:0;
  font-size:20px;
  color:#0b2c63;
}

.faq-answer{
  display:none;
  padding-top:10px;
  color:#555;
}

.faq-answer.active{
  display:block;
}

.faq-question.active::after{
  content:"−";
}

/* =============================
   CTA SECTION
============================= */

.cta{
  background:#0b2c63;
  color:#fff;
  text-align:center;
  padding:80px 0;
}

.cta h2{
  color:#fff;
  margin-bottom:30px;
}

/* ==========================================
   PREMIUM SEO FOOTER
========================================== */

.premium-footer{
  background:#0e1f3d;
  color:#e6edf7;
  padding:80px 0 40px 0;
  font-size:14px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1.5fr 1fr;
  gap:60px;
}

.footer-col h3{
  font-size:20px;
  margin-bottom:15px;
  color:#ffffff;
}

.footer-col h4{
  font-size:16px;
  margin-bottom:20px;
  color:#c8a951;
}

.footer-designation{
  color:#cbd5e1;
  margin-bottom:20px;
  line-height:1.6;
}

.footer-contact p{
  margin-bottom:10px;
  color:#cbd5e1;
}

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

.footer-links{
  list-style:none;
  padding:0;
  columns:2;
}

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

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

.footer-links a:hover{
  color:#c8a951;
}

.footer-bottom{
  text-align:center;
  margin-top:60px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:13px;
  color:#9fb3d1;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-links{
    columns:1;
  }
}

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

.whatsapp-btn{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:#fff;
  padding:14px 24px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform:translateY(-3px);
}



/* ==========================================
   PREMIUM SYMPTOMS SECTION
========================================== */

.symptoms-premium{
  padding:120px 0;
  background:#f8fafc;
}

.symptoms-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px auto;
}

.symptoms-header h2{
  font-size:36px;
  color:#0e1f3d;
  margin-bottom:20px;
}

.symptoms-header p{
  font-size:16px;
  color:#555;
  line-height:1.7;
}

.symptoms-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Symptom Card */
.symptom-card{
  background:#ffffff;
  padding:35px 30px;
  border-radius:16px;
  text-decoration:none;
  box-shadow:0 15px 45px rgba(0,0,0,0.05);
  transition:all 0.4s ease;
  border:1px solid rgba(0,0,0,0.03);
  position:relative;
}

.symptom-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  height:4px;
  width:100%;
  background:linear-gradient(90deg,#0e1f3d,#c8a951);
}

.symptom-card h3{
  font-size:18px;
  color:#0e1f3d;
  margin-bottom:12px;
}

.symptom-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

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

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

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

  .symptoms-header h2{
    font-size:28px;
  }
}

/* ==========================================
   PREMIUM PHILOSOPHY SECTION
========================================== */

.philosophy-premium{
  padding:120px 0;
  background:#f8fafc;
}

.philosophy-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

/* LEFT CONTENT */
.philosophy-content{
  flex:1;
}

.philosophy-content h2{
  font-size:36px;
  color:#0e1f3d;
  margin:20px 0 50px 0;
}

.philosophy-list{
  display:flex;
  flex-direction:column;
  gap:35px;
}

.philosophy-item{
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.philo-number{
  font-size:22px;
  font-weight:700;
  color:#c8a951;
  min-width:40px;
}

.philosophy-item h4{
  font-size:18px;
  color:#0e1f3d;
  margin-bottom:8px;
}

.philosophy-item p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

.philosophy-summary{
  margin-top:50px;
  font-size:16px;
  font-weight:500;
  color:#1f3c88;
}


/* RIGHT IMAGE - FREE FLOWING STYLE */

.philosophy-image{
  flex:1;
  display:flex;
  align-items:stretch;
}

.philosophy-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
  box-shadow:none;
}

/* RESPONSIVE */
@media(max-width:992px){
  .philosophy-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .philosophy-image{
    text-align:center;
    margin-top:40px;
  }
}

/* ==========================================
   PREMIUM CALL BACK SECTION
========================================== */

.callback-section{
  padding:120px 0;
  background:linear-gradient(135deg,#0e1f3d,#1f3c88);
  color:#ffffff;
}

.callback-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:80px;
}

.callback-info{
  flex:1;
}

.callback-info h2{
  font-size:36px;
  margin:20px 0 30px 0;
}

.callback-designation{
  font-size:16px;
  margin-bottom:30px;
  color:#dce3f2;
}

.callback-contact p{
  margin-bottom:10px;
  color:#e6edf7;
}

.callback-contact a{
  color:#ffffff;
  text-decoration:none;
  font-weight:500;
}

.callback-form{
  flex:1;
  background:#ffffff;
  padding:40px;
  border-radius:18px;
  box-shadow:0 30px 70px rgba(0,0,0,0.3);
}

.callback-form h3{
  margin-bottom:25px;
  color:#0e1f3d;
}

.callback-form form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.callback-form input,
.callback-form textarea{
  padding:14px;
  border-radius:8px;
  border:1px solid #ddd;
  font-size:14px;
}

.callback-form textarea{
  resize:none;
  min-height:90px;
}

.callback-form button{
  margin-top:10px;
}

/* Responsive */
@media(max-width:992px){
  .callback-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .callback-form{
    width:100%;
  }
}

/* FIX TEXT VISIBILITY */

.callback-info h2{
  font-size:38px;
  margin:20px 0 30px 0;
  color:#ffffff;
  line-height:1.2;
  font-weight:700;
  text-shadow:0 4px 20px rgba(0,0,0,0.4);
}


.callback-designation{
  font-size:17px;
  margin-bottom:30px;
  color:#e2e8f0;
}

.callback-contact p{
  margin-bottom:12px;
  color:#f1f5f9;
  font-size:15px;
}

.callback-contact a{
  color:#ffffff;
  font-weight:600;
}




/* ================= CONTACT PAGE ================= */

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

.contact-info h2{
  margin-bottom:20px;
}

.contact-card{
  background:#f8f9fc;
  padding:20px;
  margin-bottom:20px;
  border-left:4px solid #c8a951;
  border-radius:8px;
}

.contact-card h4{
  margin-bottom:10px;
  font-weight:600;
}

.appointment-form{
  background:#ffffff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.appointment-form h3{
  margin-bottom:25px;
}

.form-row{
  margin-bottom:20px;
}

.form-row input,
.form-row select,
.form-row textarea{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
}

.form-row textarea{
  min-height:100px;
  resize:vertical;
}

.map-wrapper{
  margin-top:30px;
  border-radius:12px;
  overflow:hidden;
}

/* Responsive */
@media(max-width:992px){
  .contact-wrapper{
    grid-template-columns:1fr;
  }
}

/* ===== PREMIUM APPOINTMENT V2 ===== */

.premium-appointment-section{
  padding:120px 20px;
  background:linear-gradient(135deg,#0f2b52 0%, #1d4f91 100%);
}

.premium-appointment-wrapper{
  max-width:950px;
  margin:auto;
}

.premium-appointment-card{
  background:#ffffff;
  padding:60px;
  border-radius:20px;
  box-shadow:0 40px 100px rgba(0,0,0,0.25);
}

.premium-appointment-header{
  text-align:center;
  margin-bottom:40px;
}

.row-split{
  display:flex;
  gap:20px;
}

/* Floating Labels */

.floating-group{
  position:relative;
  margin-bottom:25px;
  flex:1;
}

.floating-group input{
  width:100%;
  padding:16px 14px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:15px;
  outline:none;
  transition:0.3s;
}

.floating-group label{
  position:absolute;
  left:14px;
  top:16px;
  color:#777;
  font-size:14px;
  transition:0.3s;
  pointer-events:none;
  background:#fff;
  padding:0 5px;
}

.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label{
  top:-8px;
  font-size:12px;
  color:#1d4f91;
}
/* ===== PREMIUM SELECT STYLING ===== */

.select-group select{
  width:100%;
  padding:16px 14px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:15px;
  background:#fff;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  cursor:pointer;
  transition:0.3s;
}

/* Custom arrow */
.select-group{
  position:relative;
}

.select-group::after{
  content:"▼";
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  font-size:12px;
  color:#1d4f91;
  pointer-events:none;
}

.select-group select:focus{
  border-color:#1d4f91;
  box-shadow:0 0 0 3px rgba(29,79,145,0.15);
  outline:none;
}

/* Floating label fix for select */
.select-group select:focus + label,
.select-group select:not([value=""]) + label{
  top:-8px;
  font-size:12px;
  color:#1d4f91;
}
/* Time Grid */

.time-slot-wrapper{
  margin-bottom:25px;
}

.time-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:10px;
}

.time-grid button{
  padding:12px;
  border-radius:8px;
  border:1px solid #1d4f91;
  background:#f2f6fb;
  cursor:pointer;
  transition:0.3s;
}

.time-grid button:hover{
  background:#1d4f91;
  color:#fff;
}

.time-grid button.active{
  background:#1d4f91;
  color:#fff;
}

.time-grid button.disabled{
  background:#eee;
  border-color:#ccc;
  color:#aaa;
  cursor:not-allowed;
}

/* Submit */

.premium-submit-btn{
  width:100%;
  padding:18px;
  background:#1d4f91;
  color:#fff;
  border:none;
  border-radius:12px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.premium-submit-btn:hover{
  background:#0f2b52;
}

/* Modal */

.appointment-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.modal-content{
  background:#fff;
  padding:40px;
  border-radius:16px;
  text-align:center;
  max-width:400px;
}

.modal-content button{
  margin-top:20px;
  padding:10px 20px;
  background:#1d4f91;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

@media(max-width:768px){
  .row-split{
    flex-direction:column;
  }

  .time-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .premium-appointment-card{
    padding:40px;
  }
}

/* ================= CLINIC LOCATION SECTION ================= */

.clinic-location-section{
  padding:100px 0;
  background:#f5f8fc;
}

.location-header{
  text-align:center;
  margin-bottom:60px;
}

.location-header h2{
  font-size:32px;
  margin-bottom:10px;
  color:var(--primary);
}

.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.location-card-premium{
  background:#ffffff;
  padding:40px;
  border-radius:18px;
  box-shadow:0 25px 70px rgba(0,0,0,0.07);
  transition:0.3s;
  border-top:5px solid var(--gold);
}

.location-card-premium:hover{
  transform:translateY(-6px);
}

.location-card-header{
  margin-bottom:20px;
}

.location-card-header h3{
  margin-bottom:10px;
  font-size:20px;
  color:var(--primary);
}

.timing-badge{
  display:inline-block;
  padding:6px 12px;
  background:#eef3fb;
  color:#1d4f91;
  font-size:13px;
  border-radius:20px;
}

.location-address{
  margin-bottom:25px;
  line-height:1.6;
  color:#555;
}

.location-actions{
  display:flex;
  gap:15px;
}

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

/* ================= LOGO ================= */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        max-height: 45px;
    }
}

/* ================= PREMIUM GOOGLE REVIEWS ================= */

.premium-reviews {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */

.reviews-summary h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #0c3c60;
}

.rating-block {
    margin-bottom: 40px;
}

.rating-score {
    font-size: 64px;
    font-weight: 700;
    color: #0c3c60;
    line-height: 1;
}

.rating-stars {
    color: #f4b400;
    font-size: 22px;
    margin: 10px 0;
    letter-spacing: 3px;
}

.rating-block p {
    color: #666;
    font-size: 15px;
}

.google-review-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #0c3c60;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.google-review-btn:hover {
    background: #092b46;
}

/* RIGHT SIDE */

.reviews-cards {
    display: grid;
    gap: 30px;
}

.review-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
}

.review-card .stars {
    color: #f4b400;
    margin-bottom: 15px;
    font-size: 16px;
}

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

.review-card h4 {
    margin-top: 20px;
    font-weight: 600;
    color: #0c3c60;
}

/* RESPONSIVE */

@media(max-width:992px){
    .reviews-wrapper {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        text-align: center;
    }
}
.related-symptoms {
    padding: 60px 0;
    background: #f8f9fb;
    border-top: 1px solid #eee;
}

.related-symptoms h3 {
    margin-bottom: 20px;
    color: #0c3c60;
}

.related-symptoms ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.related-symptoms li {
    list-style: none;
}

.related-symptoms a {
    color: #0c3c60;
    font-weight: 500;
    text-decoration: none;
}

.related-symptoms a:hover {
    text-decoration: underline;
}




/* =============================
   SERVICE MINI BANNER
============================= */

.service-mini-banner {
  background: linear-gradient(135deg, #0e1f3d, #1f3c88);
  color: #ffffff;
  padding: 70px 0 60px 0;
}

.mini-breadcrumb {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 18px;
}

.mini-breadcrumb a {
  color: #e2e8f0;
  text-decoration: none;
}

.mini-breadcrumb a:hover {
  color: #c8a951;
}

.service-mini-banner h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.mini-subtitle {
  font-size: 17px;
  color: #e2e8f0;
  max-width: 800px;
  line-height: 1.6;
}

/* Push content down */


.service-mini-banner {
  background: linear-gradient(135deg, #0e1f3d, #1f3c88);
}

/* ================= CLEAN 2-LEVEL NAVIGATION ================= */

.main-menu {
  list-style:none;
  display:flex;
  gap:30px;
  align-items:center;
}

.main-menu > li {
  position:relative;
}

.main-menu > li > a {
  text-decoration:none;
  color:#0e1f3d;
  font-weight:600;
}

/* LEVEL 1 DROPDOWN */
.dropdown-menu {
  position:absolute;
  top:100%;
  left:0;
  background:#ffffff;
  min-width:260px;
  padding:10px 0;
  display:none;
  border-radius:10px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  z-index:9999;
}

.dropdown:hover > .dropdown-menu {
  display:block;
}

.dropdown-menu li {
  position:relative;
}

.dropdown-menu li a {
  display:block;
  padding:12px 20px;
  font-size:14px;
  color:#333;
  text-decoration:none;
}

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

/* LEVEL 2 SUBMENU */
.submenu-menu {
  position:absolute;
  top:0;
  left:100%;
  background:#ffffff;
  min-width:260px;
  padding:10px 0;
  display:none;
  border-radius:10px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.submenu:hover > .submenu-menu {
  display:block;
}

/* REMOVE HOVER GAP */
.submenu-menu {
  margin-left:-1px;
}

/* Prevent clipping */
header,
nav,
.nav-container {
  overflow:visible !important;
}

/* =============================
   DARK SERVICE TOP SECTION
============================= */

.service-dark-banner{
  background:#0e1f3d;
  padding:90px 0 80px 0;
  color:#ffffff;
  border-bottom:4px solid #1f3c88;
}

.dark-breadcrumb{
  font-size:14px;
  margin-bottom:20px;
  color:#cbd5e1;
}

.dark-breadcrumb a{
  color:#e2e8f0;
  text-decoration:none;
}

.dark-breadcrumb a:hover{
  color:#c8a951;
}

.service-dark-banner h1{
  font-size:42px;
  font-weight:700;
  margin-bottom:18px;
  line-height:1.2;
}

.dark-subtitle{
  font-size:18px;
  color:#dbe4f5;
  max-width:850px;
  line-height:1.6;
}

/* Responsive */
@media(max-width:768px){
  .service-dark-banner h1{
    font-size:28px;
  }

  .dark-subtitle{
    font-size:16px;
  }
}
/* ===== FOOTER IMPROVEMENTS ===== */

/* ===== FOOTER BOTTOM CENTER FIX ===== */

.footer-bottom {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;   /* full white */
  opacity: 1;       /* remove fade */
}

.footer-bottom br {
  display: block;
  margin-top: 6px;
}

.footer-bottom strong {
  color: #c8a951;   /* premium gold accent if needed */
}

/* ================= PREMIUM MOBILE MENU ================= */

@media (max-width: 992px) {

  nav {
    position: relative;
  }

  .main-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column !important;
    align-items: flex-start;
    padding: 120px 30px;
    gap: 25px;
    transition: 0.35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    z-index: 9999;
  }

  .main-menu.active {
    right: 0;
  }

  .main-menu li {
    width: 100%;
  }

  .main-menu a {
    font-size: 18px;
    font-weight: 600;
    color: #0b2c63;
  }

  /* Hamburger styling */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: #0b2c63;
    border-radius: 3px;
  }

}
/* ================= MOBILE SUBMENU FIX ================= */

@media (max-width: 992px) {

  .dropdown-menu,
  .submenu-menu {
    display: none;
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }

  .submenu.open > .submenu-menu,
  .dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown > a::after {
    content: " ▾";
    font-size: 14px;
  }

}

/* BLOG HERO */
.blog-hero-strip {
    background: #0d3f5f;
    padding: 35px 0;
    text-align: center;
}

.blog-hero-strip h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-hero-strip p {
    color: rgba(255,255,255,0.85);   /* makes it visible */
    font-size: 16px;
    margin: 0;
}


/* FEATURED SECTION */
.blog-featured {
    padding: 80px 0;
}

.featured-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.featured-image img {
    width: 100%;
    border-radius: 14px;
}

.featured-badge {
    background: #0a3d62;
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
}

.featured-content h2 {
    margin: 20px 0;
    font-size: 30px;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tablet */
@media(max-width: 992px){
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width: 600px){
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.blog-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.card-content a {
    color: #0a3d62;
    font-weight: 600;
    text-decoration: none;
}

/* CTA */
.blog-cta {
    padding: 80px 0;
    background: #0a3d62;
    color: white;
    text-align: center;
}

.btn-white {
    background: white;
    color: #0a3d62;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* SEO */
.blog-seo {
    padding: 60px 0 100px;
}

/* MOBILE */
@media (max-width: 992px) {
    .grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-wrapper {
        flex-direction: column;
    }

    .grid-wrapper {
        grid-template-columns: 1fr;
    }
}
/* BUTTON WRAPPER */
.featured-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}



/* YOUTUBE BUTTON */
.btn-youtube {
    background: #ff0000;
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-youtube:hover {
    background: #cc0000;
}

/* Simple red icon */
.yt-icon {
    font-size: 14px;
}

/* VIDEO THUMBNAIL */
.video-thumbnail {
    position: relative;
    display: inline-block;
    border-radius: 14px;
    overflow: hidden;
}

.video-thumbnail img {
    display: block;
    width: 100%;
    border-radius: 14px;
    transition: 0.3s;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

/* PLAY BUTTON OVERLAY */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    font-size: 26px;
    padding: 18px 22px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.video-thumbnail:hover .play-overlay {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}
img {
   max-width: 100%;
   height: auto;
   display:block;
}
/* YouTube Button */
.blog-buttons {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.blog-buttons a {
    flex: 1;
    text-align: center;
    padding: 14px 18px;   /* <-- added horizontal padding */
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;  /* prevents squeezing */
}

/* Read Button */
.btn-read {
    background: #0a4f9c;
    color: #fff;
}

/* YouTube Button */
.btn-youtube {
    background: #e10600;
    color: #fff;
}

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


.hero-main{
padding:90px 0;
background:linear-gradient(
90deg,
#f1f5fb 55%,
#ffffff 55%
);
border-bottom:1px solid #e6ecf3;
}

.hero-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
min-height:420px;
}

/* LEFT SIDE */

.hero-left{
max-width:620px;
}

/* RIGHT SIDE IMAGE */



.hero-right{
position:relative;
display:flex;
justify-content:center;
align-items:center;
min-height:420px;
}

.hero-right::before{
content:"";
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:420px;
height:420px;
background:linear-gradient(135deg,#eaf2fb,#dce9f8);
border-radius:50%;
z-index:1;
}

.hero-right img{
position:relative;
z-index:2;
max-width:420px;
height:auto;
filter:drop-shadow(0px 25px 40px rgba(0,0,0,0.08));
}

/* BUTTONS */

.hero-buttons{
display:flex;
gap:15px;
margin-top:25px;
flex-wrap:wrap;
}

.hero-buttons a{
display:inline-block;
padding:14px 26px;
white-space:nowrap;
}

/* =========================
MOBILE HERO
========================= */

@media (max-width:768px){

.hero-main{
padding:50px 50px 40px;
}

.hero-wrapper{
flex-direction:column;
align-items:flex-start;
gap:25px;
}

.hero-left{
max-width:100%;
}

.hero-right{
display:none;
}

/* Typography */

.hero-left h1{
font-size:28px;
line-height:1.25;
margin-bottom:10px;
}

.hero-tag{
font-size:14px;
margin-bottom:8px;
color:#666;
}

.hero-subtitle{
font-size:18px;
line-height:1.35;
margin-bottom:12px;
}

.hero-description{
font-size:15px;
}

.hero-trust{
font-size:14px;
}

/* Buttons */

.hero-buttons{
flex-direction:column;
align-items:flex-start;
}

.hero-buttons a{
width:100%;
max-width:260px;
}

}

.hero-main{
padding-top:10px;
}

.hero-left > *:first-child{
margin-top:0;
}



/* Desktop alignment fix */

@media (min-width:769px){

.hero-main{
padding-top:25px;
padding-bottom:60px;
}

.hero-wrapper{
align-items:center;
min-height:440px;
}

}


/* ==========================================
   PREMIUM MOBILE OPTIMIZATION
   (DESKTOP NOT AFFECTED)
========================================== */

@media (max-width:768px){

/* GLOBAL MOBILE SPACING */

.container{
width:92%;
}

.section{
padding:50px 0;
}

h2{
font-size:26px;
line-height:1.3;
}

h3{
font-size:20px;
}

p{
font-size:15px;
line-height:1.6;
}

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

.hero-main{
background:#f5f7fb !important;   /* remove split background */
padding:35px 20px 30px;
border-bottom:none;
}

.hero-wrapper{
flex-direction:column;
align-items:flex-start;
gap:20px;
min-height:auto;
}

.hero-left{
max-width:100%;
}

.hero-right{
display:none;   /* hide doctor image */
}

/* Hero typography */

.hero-left h1{
font-size:28px;
line-height:1.25;
margin-bottom:12px;
}

.hero-tag,
.hero-tagline{
font-size:13px;
color:#6b7280;
margin-bottom:6px;
}

.hero-subtitle{
font-size:16px;
margin-bottom:10px;
}

.hero-description{
font-size:14px;
color:#555;
}

.hero-trust{
font-size:14px;
margin-top:8px;
}

/* Hero buttons */

.hero-buttons{
flex-direction:column;
gap:12px;
margin-top:18px;
width:100%;
}

.hero-buttons a{
width:100%;
padding:14px;
font-size:16px;
border-radius:10px;
text-align:center;
}

/* =============================
   SERVICES SECTION
============================= */

.services-section{
padding:70px 0;
}

.services-grid{
grid-template-columns:1fr;
gap:20px;
}

.service-card{
padding:30px 25px;
border-radius:16px;
}

/* =============================
   SYMPTOMS GRID
============================= */

.symptoms-grid{
grid-template-columns:1fr;
gap:20px;
}

.symptom-card{
padding:28px 22px;
}

/* =============================
   WHY BEST SECTION
============================= */

.why-grid{
grid-template-columns:1fr;
gap:22px;
}

.why-card{
padding:28px 24px;
}

/* =============================
   REVIEWS SECTION
============================= */

.reviews-wrapper{
grid-template-columns:1fr;
gap:40px;
text-align:center;
}

.rating-score{
font-size:50px;
}

/* =============================
   APPOINTMENT SECTION
============================= */

.premium-appointment-section{
padding:70px 20px;
}

.premium-appointment-card{
padding:35px 25px;
border-radius:16px;
}

.row-split{
flex-direction:column;
}

.time-grid{
grid-template-columns:repeat(2,1fr);
gap:10px;
}

/* =============================
   LOCATION SECTION
============================= */

.location-grid{
grid-template-columns:1fr;
gap:25px;
}

.location-card-premium{
padding:30px 25px;
}

/* =============================
   FOOTER
============================= */

.footer-grid{
grid-template-columns:1fr;
gap:35px;
text-align:center;
}

.footer-links{
columns:1;
}

/* =============================
   MOBILE MENU
============================= */

.main-menu{
width:85%;
padding:110px 30px;
}

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

.whatsapp-btn{
bottom:15px;
right:15px;
padding:12px 20px;
font-size:14px;
}

/* =============================
   OPTIONAL: HIDE ABOUT SECTION
============================= */

.about-premium{
display:none;
}

}


/* =============================
HERO BUTTON ALIGNMENT FIX
============================= */

@media (max-width:768px){

.hero-buttons{
display:flex;
flex-direction:column;
gap:12px;
width:100%;
align-items:stretch;
}

.hero-buttons a{
width:100%;
max-width:100%;
text-align:center;
display:block;
padding:14px 0;
border-radius:10px;
}

}

.hero-buttons a:last-child{
background:#25D366;
color:#fff;
border:none;
}