 :root {
     --primary-blue: #212E58;
     /* Doctor Blue */
     --light-blue: #e3f2fd;
     --dark-blue: #081839;
     /* Same as primary */
     --hover-blue: #112d60;
     /* Slightly lighter for hover states */
     --text-color: #333333;
     --text-light: #555555;
     --white: #ffffff;
     --accent-red: #d32f2f;
     /* Emergency Red */
     --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     --transition: all 0.3s ease;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }

 html,
 body {
     width: 100%;
     max-width: 100%;
     max-width: 100vw;
     overflow-x: hidden;
     /* Forces the browser to hide horizontal overflow */
     position: relative;
     /* Helps stabilize layout */
 }

 /* --- Hero Slider Styles --- */
 .hero-slider {
     position: relative;
     width: 100%;
     min-height: 85vh;
     /* Makes it big */
     background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
     /* Light Blue Gradient */
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;

 }

 /* --- Base Slide Styles --- */
 .slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     visibility: hidden;
     transition: opacity 1s ease-in-out, visibility 1s;
     display: flex;
     align-items: center;
     /* Vertically center content */
     overflow: hidden;
 }

 .slide.active {
     opacity: 1;
     visibility: visible;
     z-index: 2;
 }

 .hero-slider .container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     /* Default for split layout */
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
     height: 100%;
     position: relative;
     z-index: 5;
     /* Ensure text is above background */
 }

 /* --- Text Styling for Full BG Slides --- */
 /* When text is on top of a full image, we might need to force it left */
 .slide.has-bg-image .container {
     justify-content: flex-start;
     /* Aligns text to the left */
 }

 /* Optional: Add a slight dark overlay on slides with text so white text is readable */
 .overlay-dark::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .slide.has-bg-image .badge {
     background: #fff;
     color: #000;
 }

 /* Left Side: Content */
 .hero-content {
     flex: 1;
     max-width: 600px;
     padding-right: 20px;
     animation: slideUp 1s ease forwards;
 }

 .badge {
     background: var(--white);
     color: var(--primary-blue);
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 600;
     display: inline-block;
     margin-bottom: 20px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
 }

 .hero-content h1 {
     font-size: 3rem;
     /* Readable mobile size */
     font-weight: 800;
     /* Bold */
     line-height: 1.25;
     margin-bottom: 12px;
     text-transform: capitalize;

     /* GRADIENT TEXT MAGIC */
     background: linear-gradient(135deg, var(--primary-blue) 0%, #007bff 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;

     /* Fallback for old browsers */
     color: var(--primary-blue);
 }


 .hero-content p {
     font-size: 1.1rem;
     color: #555;
     margin-bottom: 30px;
     max-width: 90%;
 }

 .hero-btns {
     display: flex;
     gap: 15px;
 }

 .btn-secondary {
     background: rgba(0, 86, 179, 0.1);
     color: var(--primary-blue);
     padding: 12px 30px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: bold;
     display: flex;
     align-items: center;
     gap: 10px;
     transition: 0.3s;
 }

 .btn-secondary:hover {
     background: rgba(0, 86, 179, 0.2);
 }

 /* Right Side: Image */
 .hero-image {
     flex: 1;
     display: flex;
     justify-content: center;
     /* horizontal center */
     align-items: center;
     /* vertical center */
     position: relative;
     height: 100%;
     /* or min-height: 100% */
 }

 .img-wrapper {
     position: relative;
     width: 100%;
     max-width: 500px;
 }

 .img-wrapper img {
     width: 100%;
     height: 80% !important;
     height: auto;
     display: block;
     filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.15));
     mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
 }

 .slider-main {
     @media screen and (max-width:768px) {
         margin-top: 100px !important;
         padding-bottom: 50px;
     }
 }

 /* Floating "Happy Parents" Card */
 .floating-card {
     position: absolute;
     top: 20%;
     right: -20px;
     background: white;
     padding: 15px 25px;
     border-radius: 15px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     gap: 15px;
     animation: float 3s ease-in-out infinite;
 }

 .icon-circle {
     width: 40px;
     height: 40px;
     background: var(--light-blue);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-blue);
 }

 /* Slider Dots */
 .slider-dots {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
     z-index: 10;
 }

 .dot {
     width: 12px;
     height: 12px;
     background: rgba(0, 0, 0, 0.2);
     border-radius: 50%;
     cursor: pointer;
     transition: 0.3s;
 }

 .dot.active {
     background: var(--primary-blue);
     transform: scale(1.2);
 }

 /* Animations */
 @keyframes slideUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0);
     }
 }

 /* --- Mobile Responsiveness --- */
 @media (max-width: 968px) {
     .hero-slider {
         /* FIXED: Must have a defined height because children are absolute */
         height: 100vh;
         min-height: 700px;
         /* Prevents squashing on short screens */
         padding: 0;
         overflow: hidden;
     }

     .hero-slider .container {
         flex-direction: column-reverse;
         /* Image on top, Text on bottom */
         justify-content: center;
         width: 100%;
         padding: 0 20px;
     }

     /* --- Image Section Adjustments --- */
     .hero-image {
         flex: 0 0 auto;
         /* Don't grow, stick to size */
         height: 45%;
         /* Take up top 45% of screen */
         align-items: flex-end;
         /* Align image to bottom of its box */
         margin-bottom: 20px;
         max-width: 300px;
         margin: 0 auto;
         position: relative;
         /* Add this to cut off anything sticking out of the image area specifically */
         overflow: visible;
     }

     .img-wrapper {
         max-width: 300px;
         /* Smaller image on mobile */
         margin: 0 auto;
     }

     .floating-card {
         top: auto;
         bottom: 15px;

         /* CHANGED: Previously -10px. Now 0 to align with edge, or 10px to move inside */
         right: 0;

         padding: 8px 15px;
         /* Reduce padding slightly to fit better */
         transform: scale(0.9);

         /* Optional: Ensure it sits on top */
         z-index: 5;

         /* Prevent the card from being wider than the screen */
         max-width: 90%;
     }

     .floating-card strong {
         font-size: 0.9rem;
     }

     /* --- Content Section Adjustments --- */
     .hero-content {
         flex: 0 0 auto;
         height: 55%;
         /* Take up bottom 55% */
         width: 100%;
         max-width: 100%;
         text-align: center;
         padding-right: 0;
         margin-top: 0;
         display: flex;
         flex-direction: column;
         justify-content: flex-start;
         align-items: center;
     }

     .badge {
         margin-bottom: 15px;
         font-size: 0.8rem;
     }

     .hero-content h1 {
         font-size: 2rem;
         /* Significantly smaller for mobile */
         margin-bottom: 15px;
     }

     .hero-content p {
         font-size: 1rem;
         margin-bottom: 25px;
         line-height: 1.5;
         max-width: 100%;
     }

     .hero-btns {
         justify-content: center;
         flex-wrap: wrap;
         /* Allow buttons to stack on very small screens */
         width: 100%;
     }

     .btn-primary,
     .btn-secondary {
         padding: 10px 20px;
         font-size: 0.9rem;
     }

     /* Dots positioning */
     .slider-dots {
         bottom: 15px;
     }
 }

 /* Extra Small Screens (Phones < 400px) */
 @media (max-width: 400px) {
     .hero-content h1 {
         font-size: 1.75rem;
     }

     .floating-card {
         display: none;
         /* Hide floating card on very small screens to save space */
     }

     .hero-image {
         height: 40%;
     }

     .hero-content {
         height: 60%;
     }
 }

 .btn-primary {
     background: var(--white);
     color: var(--primary-blue);
     padding: 12px 30px;
     text-decoration: none;
     border-radius: 50px;
     font-weight: bold;
     display: inline-block;
     margin-top: 20px;
     transition: transform 0.2s;
 }

 .btn-primary:hover {
     transform: scale(1.05);
 }

 /* Sections General */
 .section {
     padding: 60px 5%;
 }

 .section-title {
     text-align: center;
     color: var(--primary-blue);
     margin-bottom: 40px;
     font-size: 2.2rem;
 }

 /* Features Grid */
 .features-grid,
 .services-grid,
 .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .card {
     background: var(--white);
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     border-top: 4px solid var(--primary-blue);
     transition: transform 0.3s;
 }

 .card:hover {
     transform: translateY(-5px);
 }

 .card h3 {
     color: var(--primary-blue);
     margin-bottom: 15px;
 }

 /* --- New Testimonials Section Styles --- */

 .testimonials-wrapper {
     background-color: #f0f4f8;
     /* Light blue-grey background */
     padding: 80px 5%;
     font-family: 'Segoe UI', sans-serif;
 }

 .section-header-center {
     text-align: center;
     max-width: 600px;
     margin: 0 auto 50px auto;
 }

 .section-header-center h2 {
     font-size: 2.5rem;
     color: #1a1a1a;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .section-header-center p {
     color: #666;
     font-size: 1.1rem;
 }

 /* Grid Layout */
 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto;
 }

 /* Individual Testimonial Card */
 .testi-card {
     background: var(--white);
     border-radius: 24px;
     /* Highly rounded corners like reference */
     padding: 40px 35px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
     /* Very soft shadow */
     display: flex;
     flex-direction: column;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid rgba(0, 0, 0, 0.02);
 }

 .testi-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

 /* Purple Quote Icon */
 .quote-icon {
     width: 50px;
     height: 50px;
     background-color: #7b61ff;
     /* Purple color from image */
     /* Or use var(--primary-blue) if you want it blue */
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
 }

 .quote-icon i {
     color: white;
     font-size: 1.2rem;
 }

 /* Stars */
 .stars {
     color: #4facfe;
     /* Light Blue stars */
     font-size: 0.9rem;
     margin-bottom: 20px;
     letter-spacing: 2px;
 }

 /* Review Text */
 .review-text {
     font-size: 1.05rem;
     color: #555;
     line-height: 1.7;
     margin-bottom: 30px;
     flex-grow: 1;
     /* Pushes profile to bottom */
 }

 /* User Profile Area */
 .reviewer-profile {
     display: flex;
     align-items: center;
     gap: 15px;
     border-top: 1px solid #eee;
     padding-top: 20px;
 }

 .reviewer-profile img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     object-fit: cover;
 }

 .reviewer-profile h4 {
     font-size: 1rem;
     color: #222;
     margin-bottom: 2px;
     font-weight: 700;
 }

 .reviewer-profile span {
     font-size: 0.85rem;
     color: #888;
 }

 /* Mobile Responsiveness */
 @media (max-width: 768px) {
     .section-header-center h2 {
         font-size: 2rem;
     }

     .testi-card {
         padding: 30px 25px;
     }
 }

 /* --- Introduction Section Styles --- */
 .intro-section {
     background-color: #f4f7fa;
     /* Very light grey-blue background */
     padding-top: 80px;
     padding-bottom: 0;
     /* Image sits at bottom */
     position: relative;
     overflow: hidden;
 }

 .intro-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 5%;
 }

 .intro-row {
     display: flex;
     flex-wrap: wrap;
     gap: 50px;
     margin-bottom: 60px;
 }

 /* Left Column: Text */
 .intro-text {
     flex: 1;
     min-width: 300px;
 }

 .sub-heading {
     color: #00bcd4;
     /* Teal accent color like reference */
     font-weight: 700;
     text-transform: uppercase;
     font-size: 0.9rem;
     letter-spacing: 1px;
     display: block;
     margin-bottom: 10px;
 }

 .intro-text h2 {
     font-family: 'Playfair Display', serif;
     /* Elegant Serif Font */
     color: var(--dark-blue);
     font-size: 2.8rem;
     line-height: 1.2;
     margin-bottom: 25px;
 }

 .lead-text {
     font-size: 1.05rem;
     color: #444;
     margin-bottom: 20px;
     line-height: 1.6;
     font-weight: 500;
 }

 .desc-text {
     color: #666;
     font-size: 0.95rem;
     line-height: 1.7;
     margin-bottom: 15px;
 }

 /* Right Column: Stats */
 .intro-stats {
     flex: 0 0 400px;
     /* Fixed width for stats column */
     display: flex;
     flex-direction: column;
     gap: 20px;
     justify-content: center;
 }

 .stat-item {
     display: flex;
     align-items: center;
     gap: 20px;
     padding: 20px;
     border-radius: 8px;
     transition: 0.3s;
 }

 /* The Active/Highlighted Card (Middle one in reference) */
 .stat-item.active {
     background: white;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transform: scale(1.02);
 }

 .stat-info h4 {
     color: var(--dark-blue);
     font-size: 1.1rem;
     margin-bottom: 5px;
     font-family: 'Playfair Display', serif;
     /* Match heading */
 }

 .stat-info p {
     font-size: 0.85rem;
     color: #777;
     line-height: 1.4;
     margin: 0;
 }

 /* Circular Progress Bar (SVG) */
 .progress-circle {
     position: relative;
     width: 70px;
     height: 70px;
 }

 .progress-circle svg {
     width: 70px;
     height: 70px;
     transform: rotate(-90deg);
     /* Start from top */
 }

 .progress-circle circle {
     fill: none;
     stroke-width: 5;
     stroke-linecap: round;
 }

 /* Background Circle (Grey) */
 .progress-circle circle:nth-child(1) {
     stroke: #e0e0e0;
 }

 /* Foreground Circle (Animated Color) */
 .progress-circle circle:nth-child(2) {
     stroke: var(--dark-blue);
     /* Default stroke color */
     stroke-dasharray: 188;
     /* Circumference of circle r=30 (2*pi*30 ~ 188) */
     /* stroke-dashoffset is handled inline in HTML for dynamic values */
     transition: stroke-dashoffset 1s ease-out;
 }

 /* Text inside circle */
 .progress-circle .percent {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-weight: 700;
     font-size: 0.9rem;
     color: var(--dark-blue);
 }

 /* Bottom Image */
 .intro-bottom-img {
     width: 100%;
     height: 400px;
     overflow: hidden;
     display: flex;
     justify-content: center;
     align-items: flex-end;
 }

 .intro-bottom-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: top;
     /* Focus on faces */
     mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
     /* Fade in top edge */
     -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
 }

 /* Responsive */
 @media (max-width: 968px) {
     .intro-row {
         flex-direction: column;
     }

     .intro-stats {
         flex: 1;
         width: 100%;
     }

     .intro-text h2 {
         font-size: 2.2rem;
     }

     .intro-bottom-img {
         height: 250px;
     }
 }


 /* --- Section Layout --- */
 .doctor-section {
     padding: 80px 5%;
     background-color: #f9fbfd;
     /* Very subtle grey/blue bg */
     overflow: hidden;
 }

 .doctor-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 /* --- Section Header --- */
 .doctor-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 80px auto;
 }

 .doctor-header .sub-heading {
     color: var(--accent-teal);
     font-weight: 700;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 2px;
     display: block;
     margin-bottom: 15px;
 }

 .doctor-header h2 {
     font-family: 'Playfair Display', serif;
     font-size: 2.8rem;
     color: var(--dark-blue);
     margin-bottom: 20px;
 }

 .doctor-header .section-desc {
     font-size: 1.1rem;
     color: var(--text-grey);
     line-height: 1.6;
 }

 /* --- Doctor Grid Wrapper --- */
 .doctor-grid {
     display: flex;
     flex-direction: column;
     gap: 100px;
     /* Space between the two doctor cards */
 }

 /* --- Individual Doctor Card --- */
 .doctor-card {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 60px;
 }

 /* Alternate Layout: Even children (2nd, 4th) reverse direction */
 .doctor-card:nth-child(even) {
     flex-direction: row-reverse;
 }

 /* --- Image Area --- */
 .doctor-image-wrapper {
     flex: 1;
     position: relative;
     max-width: 500px;
     /* Center image in its flex box */
     margin: 0 auto;
 }

 .doctor-image-wrapper img {
     width: 100%;
     height: auto;
     border-radius: 20px;
     position: relative;
     z-index: 2;
     transition: transform 0.3s ease;
 }

 /* Hover effect on image */
 .doctor-card:hover .doctor-image-wrapper img {
     transform: translateY(-5px);
 }

 /* Blue Background Shape */
 .doc-bg-shape {
     position: absolute;
     top: -20px;
     left: -20px;
     width: 100%;
     height: 100%;
     border-radius: 20px;
     z-index: 1;
     transition: all 0.3s ease;
 }

 /* Move shape opposite for reversed cards */
 .doctor-card:nth-child(even) .doc-bg-shape {
     left: auto;
     right: -20px;
 }

 /* Badge (Experience/Role) */
 .doc-badge {
     position: absolute;
     bottom: 40px;
     right: -30px;
     background: var(--white);
     padding: 12px 25px;
     border-radius: 50px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     z-index: 3;
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 600;
     color: var(--dark-blue);
     white-space: nowrap;
 }

 .doctor-card:nth-child(even) .doc-badge {
     right: auto;
     left: -30px;
 }

 .doc-badge i {
     color: var(--accent-teal);
     font-size: 1.2rem;
 }

 /* --- Text Content Area --- */
 .doctor-content {
     flex: 1;
 }

 .doctor-content h3 {
     font-family: 'Playfair Display', serif;
     font-size: 2.2rem;
     color: var(--dark-blue);
     margin-bottom: 5px;
 }

 .doc-specialty {
     font-size: 1rem;
     color: var(--primary-blue);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 25px;
     display: inline-block;
 }

 .doc-bio {
     font-size: 1.05rem;
     color: var(--text-grey);
     line-height: 1.8;
     margin-bottom: 30px;
 }

 /* --- Button Styling --- */
 .btn-primary {
     display: inline-block;
     padding: 15px 35px;
     background-color: var(--primary-blue);
     color: var(--white);
     text-decoration: none;
     border-radius: 30px;
     font-weight: 600;
     transition: background 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
 }

 .btn-primary:hover {
     background-color: var(--dark-blue);
     transform: translateY(-2px);
 }

 .btn-primary i {
     margin-left: 8px;
 }

 /* --- Responsive Design (Mobile/Tablet) --- */
 @media (max-width: 968px) {
     .doctor-section {
         padding: 60px 5%;
     }

     .doctor-header h2 {
         font-size: 2.2rem;
     }

     .doctor-grid {
         gap: 60px;
     }

     /* Stack cards vertically */
     .doctor-card,
     .doctor-card:nth-child(even) {
         flex-direction: column;
         text-align: center;
         gap: 40px;
     }

     .doctor-image-wrapper {
         width: 100%;
         max-width: 400px;
     }

     .doc-bg-shape {
         top: 15px;
         left: 15px;
         width: 100%;
     }

     .doctor-card:nth-child(even) .doc-bg-shape {
         right: auto;
         /* Reset specifically for mobile */
         left: 15px;
     }

     /* Center badge on mobile or tuck it in */
     .doc-badge,
     .doctor-card:nth-child(even) .doc-badge {
         right: 0;
         left: 0;
         bottom: -20px;
         margin: 0 auto;
         width: fit-content;
     }
 }

 /* --- Why Choose Us & Facilities Section --- */
 .why-choose-section {
     padding: 100px 5%;
     background-color: #f9f9f9;
     /* Slight contrast from white Doctor section */
 }

 .wc-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .wc-row {
     display: flex;
     gap: 60px;
     align-items: stretch;
     /* Makes both boxes equal height */
 }

 /* 1. Left Column: Benefits */
 .wc-content {
     flex: 1;
     padding-right: 20px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 /* Reusing your typography from previous sections */
 .wc-content h2 {
     font-family: 'Playfair Display', serif;
     font-size: 2.8rem;
     color: var(--dark-blue);
     line-height: 1.2;
     margin-bottom: 20px;
 }

 .wc-desc {
     font-size: 1.05rem;
     color: #666;
     margin-bottom: 40px;
 }

 /* Benefit Items (Icon + Text) */
 .benefit-list {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .benefit-item {
     display: flex;
     gap: 20px;
     align-items: flex-start;
 }

 .benefit-icon {
     width: 60px;
     height: 60px;
     background: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     flex-shrink: 0;
 }

 .benefit-icon i {
     color: var(--primary-blue);
     font-size: 1.5rem;
 }

 .benefit-item h4 {
     font-size: 1.1rem;
     color: #333;
     margin-bottom: 5px;
     font-weight: 700;
 }

 .benefit-item p {
     font-size: 0.95rem;
     color: #777;
     margin: 0;
 }

 /* 2. Right Column: Facilities Box */
 .wc-facilities-box {
     flex: 1;
     position: relative;
     background: var(--primary-blue);
     /* Matches Footer/Theme */
     color: var(--white);
     border-radius: 20px;
     padding: 50px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 /* Background Image Effect inside the Blue Box */
 .wc-img-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('https://img.freepik.com/free-photo/blur-hospital_1203-7957.jpg');
     background-size: cover;
     background-position: center;
     opacity: 0.1;
     /* Very subtle texture */
     mix-blend-mode: overlay;
 }

 .facilities-content {
     position: relative;
     z-index: 2;
 }

 .facilities-content h3 {
     font-family: 'Playfair Display', serif;
     font-size: 2rem;
     margin-bottom: 10px;
     color: var(--white);
 }

 .facilities-content p {
     color: #aab6cd;
     margin-bottom: 30px;
 }

 /* The Checklist */
 .facility-checklist {
     list-style: none;
     padding: 0;
 }

 .facility-checklist li {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 18px;
     font-size: 1.05rem;
     color: #e3f2fd;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     padding-bottom: 12px;
 }

 .facility-checklist li:last-child {
     border-bottom: none;
 }

 .facility-checklist li i {
     color: #00bcd4;
     /* Teal Accent for Checkmarks */
     font-size: 1.2rem;
 }

 /* Responsive */
 @media (max-width: 968px) {
     .wc-row {
         flex-direction: column;
     }

     .wc-facilities-box {
         padding: 30px;
     }
 }

 /* Doctor Section */
 .doctor-profile {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 40px;
     background: var(--light-blue);
     border-radius: 15px;
     padding: 40px;
 }

 .doc-img {
     flex: 1;
     min-width: 300px;
 }

 .doc-img img {
     width: 100%;
     border-radius: 10px;
 }

 .doc-info {
     flex: 2;
     min-width: 300px;
 }

 /* Contact Details (No Form) */
 .contact-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
 }

 .contact-box {
     text-align: center;
     padding: 30px;
     background: var(--white);
     border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
 }

 .contact-box i {
     font-size: 2rem;
     color: var(--primary-blue);
     margin-bottom: 15px;
 }

 /* --- Footer Styling --- */

 /* Parent Footer Container */
 footer {
     position: relative;
     background: var(--dark-blue);
     /* #081839 */
     color: var(--white);
     padding-top: 100px;
     /* Space for the floating banner */

 }

 /* 1. Floating CTA Banner */
 .footer-cta {
     background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
     /* Bright Blue Gradient */
     /* Alternatively, use your solid brand blue: background: var(--primary-blue); */

     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
     border-radius: 20px;
     padding: 40px 50px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: absolute;
     top: -80px;
     /* Moves it up to overlap */
     left: 50%;
     transform: translateX(-50%);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .cta-content h2 {
     font-size: 1.8rem;
     margin-bottom: 10px;
     color: var(--white);
 }

 .cta-content p {
     font-size: 1rem;
     opacity: 0.9;
 }

 .btn-white {
     background: var(--white);
     color: var(--primary-blue);
     padding: 12px 30px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: bold;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: var(--transition);
 }

 .btn-white:hover {
     transform: scale(1.05);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 /* 2. Main Footer Layout */
 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 5% 40px 5%;
 }

 .footer-row {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     /* 4 Columns: Wide brand col, then 3 links cols */
     gap: 40px;
     margin-bottom: 60px;
 }

 /* Brand Column */
 .footer-logo {
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--white);
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 20px;
 }

 .brand-desc {
     color: #b0b8c4;
     /* Light grey for text on dark bg */
     line-height: 1.6;
     margin-bottom: 25px;
     font-size: 0.95rem;
 }

 .contact-info p {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 12px;
     color: #b0b8c4;
     font-size: 0.9rem;
 }

 .contact-info i {
     color: #4facfe;
     /* Accent color for icons */
     width: 20px;
 }

 /* Link Columns */
 .footer-col h4 {
     font-size: 1.1rem;
     margin-bottom: 25px;
     color: var(--white);
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 15px;
 }

 .footer-col ul li a {
     color: #b0b8c4;
     text-decoration: none;
     transition: var(--transition);
     font-size: 0.95rem;
 }

 .footer-col ul li a:hover {
     color: var(--white);
     padding-left: 5px;
     /* Slight movement effect */
 }

 /* 3. Footer Bottom Bar */
 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 30px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: #7b8fac;
     font-size: 0.9rem;
 }

 .social-links {
     display: flex;
     gap: 15px;
 }

 .social-links a {
     width: 35px;
     height: 35px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     text-decoration: none;
     transition: var(--transition);
 }

 .social-links a:hover {
     background: var(--primary-blue);
     /* Or Accent color */
     transform: translateY(-3px);
 }

 /* --- Responsive Design for Footer --- */
 @media (max-width: 992px) {
     .footer-row {
         grid-template-columns: 1fr 1fr;
         /* 2 Columns layout */
     }

     .footer-cta {
         flex-direction: column;
         text-align: center;
         gap: 20px;
         padding: 30px;
     }
 }

 @media (max-width: 576px) {
     .footer-row {
         grid-template-columns: 1fr;
         /* 1 Column layout */
         text-align: center;
     }

     .footer-logo,
     .contact-info p {
         justify-content: center;
     }

     .footer-bottom {
         flex-direction: column;
         gap: 20px;
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .nav-links {
         display: none;
         flex-direction: column;
         position: absolute;
         top: 70px;
         left: 0;
         width: 100%;
         background: var(--white);
         padding: 20px;
         box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
     }

     .nav-links.active {
         display: flex;
     }

     .mobile-menu-btn {
         display: block;
     }

     .hero h1 {
         font-size: 2rem;
     }
 }

 .desc-text {
     font-weight: 500;
     line-height: 1.7;
     color: #444;
     /* slightly darker for contrast */
 }

 .progress-circle {
     width: 90px;
     height: 90px;
 }

 .progress-circle svg {
     width: 90px;
     height: 90px;
     transform: rotate(-90deg);
 }

 .progress-circle circle {
     cx: 45;
     cy: 45;
     r: 40;
     stroke-width: 6;
 }

 .progress-circle .percent {
     font-size: 18px;
     font-weight: 600;
 }

 /* Percentage inside circle */
 .progress-circle .percent {
     font-size: 18px;
     font-weight: 600;
     color: #222;
     font-family: 'Poppins', sans-serif;
 }

 /* Stat title */
 .stat-info h4 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 6px;
     color: #111;
     font-family: 'Poppins', sans-serif;
 }

 /* Stat description */
 .stat-info p {
     font-size: 14.5px;
     font-weight: 400;
     line-height: 1.6;
     color: #555;
     font-family: 'Inter', sans-serif;
 }

 @media (min-width: 992px) {
     .progress-circle .percent {
         font-size: 20px;
     }

     .stat-info h4 {
         font-size: 19px;
     }

     .stat-info p {
         font-size: 15px;
     }
 }

 /* Video Section Styles */
 .video-section {
     width: 100%;
     padding: 80px 0;
     background-color: var(--light-blue);
     /* Light blue background to stand out */
     position: relative;
 }

 .video-container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
 }

 .video-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 50px;
     flex-wrap: wrap;
 }

 /* Text Side Styling */
 .video-content {
     flex: 1;
     min-width: 300px;
 }

 .video-content .sub-heading {
     display: inline-block;
     color: var(--primary-blue);
     font-weight: 600;
     font-size: 0.9rem;
     text-transform: uppercase;
     margin-bottom: 10px;
     letter-spacing: 1px;
     background: white;
     padding: 5px 15px;
     border-radius: 20px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .video-content h2 {
     font-size: 2.5rem;
     color: var(--primary-blue);
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .video-desc {
     color: var(--text-light);
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 25px;
 }

 .video-features {
     list-style: none;
     margin-bottom: 30px;
 }

 .video-features li {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
     font-size: 1.05rem;
     color: var(--primary-blue);
     font-weight: 500;
 }

 .video-features li i {
     color: var(--accent-red);
     /* Using red for the play icon to grab attention */
     font-size: 1.2rem;
 }

 /* Video Wrapper Styling */
 .video-wrapper {
     flex: 1;
     min-width: 300px;
     position: relative;
 }

 .video-frame {
     position: relative;
     width: 100%;
     padding-bottom: 56.25%;
     /* 16:9 Aspect Ratio */
     height: 0;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: var(--shadow);
     z-index: 2;
     background: #000;
     /* Fallback for loading */
 }

 .video-frame iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

 /* Decorative background behind video */
 .video-bg-shape {
     position: absolute;
     top: -20px;
     right: -20px;
     width: 100%;
     height: 100%;
     background-color: rgba(33, 46, 88, 0.1);
     /* Primary blue with low opacity */
     border-radius: 15px;
     z-index: 1;
 }

 /* Responsive Adjustments */
 @media (max-width: 768px) {
     .video-row {
         flex-direction: column;
         text-align: center;
     }

     .video-content {
         margin-bottom: 30px;
     }

     .video-features {
         display: inline-block;
         text-align: left;
     }

     .video-content h2 {
         font-size: 2rem;
     }
 }

 /* Services Gallery Section */
 .services-gallery-section {
     padding: 80px 0;
     background-color: var(--white);
 }

 .services-container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
 }

 /* Header Styling */
 .services-header {
     text-align: center;
     margin-bottom: 50px;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .services-header .sub-heading {
     display: inline-block;
     color: var(--accent-red);
     font-weight: 600;
     font-size: 0.9rem;
     text-transform: uppercase;
     margin-bottom: 10px;
     letter-spacing: 1px;
 }

 .services-header h2 {
     font-size: 2.5rem;
     color: var(--primary-blue);
     margin-bottom: 15px;
 }

 .services-header p {
     color: var(--text-light);
 }

 /* Grid Layout */
 .services-grid {
     display: grid;
     /* This creates a responsive grid: 4 columns on large screens, auto-adjusting on smaller ones */
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
 }

 /* Service Card Item */
 .service-item {
     background: #fff;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
     border: 1px solid #f0f0f0;
     position: relative;
     display: flex;
     flex-direction: column;
 }

 .service-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(33, 46, 88, 0.15);
 }

 /* Image Box */
 .service-img-box {
     position: relative;
     width: 100%;
     height: 180px;
     /* Fixed height for uniformity */
     overflow: hidden;
 }

 .service-img-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .service-item:hover .service-img-box img {
     transform: scale(1.1);
     /* Zoom effect on hover */
 }

 /* Blue Overlay on Hover (Optional aesthetic touch) */
 .service-img-box .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to top, rgba(33, 46, 88, 0.4), transparent);
     opacity: 0;
     transition: var(--transition);
 }

 .service-item:hover .service-img-box .overlay {
     opacity: 1;
 }

 /* Service Text Info */
 .service-info {
     padding: 20px;
     text-align: center;
     background: #fff;
     flex-grow: 1;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .service-info h3 {
     font-size: 1.1rem;
     color: var(--primary-blue);
     font-weight: 600;
     margin: 0;
     line-height: 1.4;
 }

 /* Hover effect on text */
 .service-item:hover .service-info h3 {
     color: var(--accent-red);
     /* Changes text color on hover */
 }

 /* Responsive Tweaks */
 @media (max-width: 768px) {
     .services-header h2 {
         font-size: 2rem;
     }

     .services-grid {
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         /* Slightly wider cards on mobile */
     }
 }

 .full-img-slide-mobile-section {
     display: none;

     @media screen and (max-width:990px) {
         display: block;
     }
 }

 /* =========================================
   Responsive Display Logic
   ========================================= */

 #hero-slider-for-mobile {
     display: none;
     /* Hide Mobile Slider */
 }

 /* 2. Mobile State (Tablets and Phones) */
 @media screen and (max-width: 768px) {
     #hero-slider-for-desktop {
         display: none;
     }
 }

 .hero-slider {
     min-height: 85vh;
 }

 .full-img-slide {
     background-size: cover;
     background-position: center;
 }

 .full-img-slide-1,
 .full-img-slide-2,
 .full-img-slide-3,
 .full-img-slide-4 .full-img-slide-5 {
     background-position: center center;
     background-size: cover;
     background-repeat: no-repeat;
 }

 /* Specific Image URLs */
 .full-img-slide-1 {
     background-image: url("images/bannerx1400.png");
 }

 .full-img-slide-2 {
     background-image: url("images/banner2x1400.png");
 }

 .full-img-slide-3 {
     background-image: url("images/banner3x1400.png");
 }

 .full-img-slide-4 {
     background-image: url("images/banner4x1400.png");
 }

 .full-img-slide-5 {
     background-image: url("images/banner5x1400.png");
 }

 /* Hide mobile slider on desktop */
 @media (min-width: 769px) {
     #hero-slider-mobile {
         display: none;
     }
 }

 /* 1. Container Setup (Fixes the cutting issue) */
 .hero-slider-mobile {
     position: relative;
     width: 100%;
     /* This 60% makes the height match the image aspect ratio (768x420) */
     padding-top: 60%;
     overflow: hidden;
     background: #e3f2fd;
     /* Light blue placeholder */
 }

 /* 2. Slide Positioning */
 .m-slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     /* Hidden by default */
     visibility: hidden;
     transition: opacity 0.8s ease-in-out;
     z-index: 1;
 }

 .m-slide.active {
     opacity: 1;
     visibility: visible;
     z-index: 2;
     /* Active slide sits above others */
 }

 /* 3. Image Sizing */
 .m-full-img-1 {
     background: url("images/bannermobile.png") center/100% 100% no-repeat;
 }

 .m-full-img-2 {
     background: url("images/banner2mobile.png") center/cover no-repeat;
 }

 .m-full-img-3 {
     background: url("images/banner3mobile.png") center/100% 100% no-repeat;
 }

 .m-full-img-4 {
     background: url("images/banner4mobile.png") center/cover no-repeat;
 }

 .m-full-img-5 {
     background: url("images/banner5mobile.png") center/cover no-repeat;
 }

 /* 4. Dots Styling (High Z-Index to ensure visibility) */
 .m-slider-dots {
     position: absolute;
     bottom: 15px;
     left: 0;
     width: 100%;
     display: flex;
     justify-content: center;
     gap: 10px;
     z-index: 10;
     /* Force dots on top of everything */
     padding: 0;
     margin: 0;
 }

 .m-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     border: 1px solid rgba(0, 0, 0, 0.1);
     /* Slight border to see them on white */
     cursor: pointer;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
     /* Shadow helps visibility */
 }

 .m-dot.active {
     background: #ff5252;
     /* Active color (Red) so it stands out */
     border-color: #ff5252;
 }

 /* --- Mobile Hero Content Styling --- */

 /* 1. Container spacing */
 .m-hero-content {
     padding: 20px 15px;
     text-align: left;
     max-width: 100%;
     z-index: 2;
     position: relative;
 }

 /* 2. The Badge (Pill shape above title) */
 .m-badge {
     display: inline-block;
     background-color: var(--light-blue);
     color: var(--primary-blue);
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     padding: 6px 14px;
     border-radius: 50px;
     letter-spacing: 0.5px;
 }

 /* 3. The Main Heading with GRADIENT BLUE */
 .m-hero-content h1 {
     font-size: 28px;
     /* Readable mobile size */
     font-weight: 800;
     /* Bold */
     line-height: 1.25;
     text-transform: capitalize;

     /* GRADIENT TEXT MAGIC */
     background: linear-gradient(135deg, var(--primary-blue) 0%, #007bff 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;

     /* Fallback for old browsers */
     color: var(--primary-blue);
 }

 /* 4. The Highlight Span (Make it pop slightly more or keep gradient) */
 .m-highlight {
     font-weight: 900;
     /* Optional: If you want the highlight to be a different color (e.g. Red), uncomment below. 
       Otherwise, it keeps the blue gradient. */
     /* color: var(--accent-red); 
       -webkit-text-fill-color: var(--accent-red); */
 }

 /* 5. Paragraph Text */
 .m-hero-content p {
     font-size: 16px;
     color: var(--text-light);
     /* Dark Grey */
     font-weight: 500;
     line-height: 1.5;
     margin-bottom: 4px;
     max-width: 90%;
     /* Prevents text from hitting the edge too hard */
 }

 /* 6. Button Styling (Ensuring it matches your theme) */
 .m-btn {
     display: inline-block;
     background-color: var(--primary-blue);
     color: var(--white);
     padding: 12px 24px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 600;
     font-size: 14px;
     transition: var(--transition);
     box-shadow: 0 4px 10px rgba(33, 46, 88, 0.3);
 }

 .m-btn:hover {
     background-color: var(--hover-blue);
     transform: translateY(-2px);
 }