   /* ================= GLOBAL ================= */

   :root {
       --primary: #047857;
       /* Deep Teal/Green for Trust */
       --primary-dark: #064e3b;
       --secondary: #dc2626;
       /* Red for Accent/Urgency */
       --dark: #0f172a;
       --light: #f8fafc;
       --gray: #64748b;
   }

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Inter', sans-serif;
       scroll-behavior: smooth;
   }

   body {
       background: var(--light);
       color: var(--dark);
       overflow-x: hidden;
   }

   .container {
       max-width: 1200px;
       margin: auto;
       padding: 0 20px;
   }

   section {
       padding: 100px 0;
   }

   h2 {
       font-size: 36px;
       font-weight: 800;
       margin-bottom: 20px;
       text-align: center;
       color: var(--primary-dark);
   }

   .section-desc {
       text-align: center;
       max-width: 800px;
       margin: 0 auto 40px auto;
       color: var(--gray);
       font-size: 18px;
       line-height: 1.6;
   }

   /* Animations */
   .animate-on-scroll {
       opacity: 0;
       transform: translateY(30px);
       transition: all 0.8s ease-out;
   }

   .animate-on-scroll.visible {
       opacity: 1;
       transform: translateY(0);
   }

   /* ================= TOP BAR ================= */

   .topbar {
       background: var(--primary-dark);
       color: white;
       padding: 10px 0;
       font-size: 14px;
   }

   .topbar .container {
       display: flex;
       justify-content: space-between;
   }

   .top-link {
       text-decoration: none;
       color: inherit;
       display: inline-flex;
       align-items: center;
       gap: 6px;
   }

   /* 
   .top-link:hover {
       color: #0d6efd;
       
   } */

   /* ================= NAV ================= */

   header {
       background: rgba(255, 255, 255, 0.95);
       backdrop-filter: blur(10px);
       position: sticky;
       top: 0;
       z-index: 999;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   }

   .nav {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 15px 20px;
       height: 85px;

   }

   .nav-logo img {
       height: 70px;
       width: auto;
       /* Adjust based on actual logo aspect ratio */
   }

   .nav ul {
       display: flex;
       gap: 30px;
       list-style: none;
   }

   .nav a {
       text-decoration: none;
       color: var(--dark);
       font-weight: 600;
       transition: color 0.3s;
   }

   .nav a:hover {
       color: var(--primary);
   }

   #header-button {
       color: white;
       background-color: #0d9488;
   }

   .btn {
       /* background: var(--secondary); */
       background: #064e3b;
       color: white;
       padding: 12px 25px;
       border-radius: 30px;
       text-decoration: none;
       font-weight: 600;
       transition: transform 0.3s, box-shadow 0.3s;
       display: inline-block;
   }

   .btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
   }

   .menu-toggle {
       display: none;
       font-size: 24px;
       cursor: pointer;
       color: var(--dark);
   }

   /* ================= HERO ================= */

   .hero {
       position: relative;
       height: 90vh;
       overflow: hidden;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .slide {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-size: cover;
       background-position: center 15%;
       opacity: 0;
       transition: opacity 1s ease-in-out;
       /* Removed transform transition to avoid conflict or weirdness during manual nav, can add back later */
       z-index: 0;
       display: flex;
       align-items: center;
       justify-content: center;
       pointer-events: none;
   }


   .slide.active {
       opacity: 1;
       z-index: 1;
       pointer-events: auto;
   }

   .hero-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
       z-index: -1;
   }

   .hero-content {
       position: relative;
       z-index: 2;
       color: white;
       text-align: center;
       max-width: 900px;
       padding: 0 20px;
   }

   /* Animation States */
   .slide:not(.active) .hero-content h1,
   .slide:not(.active) .hero-content p,
   .slide:not(.active) .hero-content .btn,
   .slide:not(.active) .hero-content .rudra-list {
       opacity: 0;
       animation: none;
   }

   .slide.active .hero-content h1 {
       animation: fadeInUp 1s ease-out forwards 0.5s;
   }

   .slide.active .hero-content p,
   .slide.active .hero-content .rudra-list {
       animation: fadeInUp 1s ease-out forwards 0.8s;
   }

   .slide.active .hero-content .btn {
       animation: fadeInUp 1s ease-out forwards 1.1s;
   }

   .hero-content h1 {
       font-size: 56px;
       font-weight: 800;
       text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
       margin-bottom: 20px;
       opacity: 0;
       /* Initial state before animation */
   }

   .hero-content p {
       margin-bottom: 30px;
       font-size: 20px;
       opacity: 0;
       /* Initial state before animation */
       text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
   }

   .hero-content .btn {
       opacity: 0;
       /* Initial state before animation */
   }

   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(20px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   /* Slider Navigation */
   .slider-nav {
       position: absolute;
       top: 50%;
       bottom: auto;
       transform: translateY(-50%);
       background: transparent;
       border: none;
       color: rgba(255, 255, 255, 0.4);
       /* Faint initially */
       font-size: 64px;
       /* Large and thin look */
       width: auto;
       height: auto;
       cursor: pointer;
       z-index: 10;
       transition: all 0.3s ease;
       padding: 20px;
       backdrop-filter: none;
       box-shadow: none;
       font-weight: 300;
       /* Try to make font awesome appear thinner */
   }

   .slider-nav:hover {
       background: transparent;
       color: white;
       transform: translateY(-50%);
       /* No scaling needed */
       box-shadow: none;
   }

   .prev-btn {
       left: 20px;
       right: auto;
   }

   .prev-btn:hover {
       left: 15px;
       /* Subtle nudge */
   }

   .next-btn {
       right: 20px;
       left: auto;
   }

   .next-btn:hover {
       right: 15px;
       /* Subtle nudge */
   }

   /* Rudra List Styles */
   .rudra-list {
       text-align: left;
       /* Removed background box */
       padding: 0;
       max-width: 100%;
       margin-top: 20px;
   }

   .rudra-item {
       font-size: 24px;
       /* Increased slightly */
       margin-bottom: 12px;
       font-weight: 700;
       line-height: 1.4;
       color: white;
       text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
       /* Strong shadow for readability */
       display: flex;
       /* Align letters nicely */
       align-items: center;
   }

   .rudra-red {
       color: #ff4d4d;
       /* Brighter red for dark background */
       font-weight: 800;
       margin-right: 5px;
       display: inline-block;
       width: 25px;
       /* Fixed width for alignment */
   }

   .rudra-green {
       color: #34d399;
       /* Brighter green for dark background */
       font-weight: 800;
       margin-right: 5px;
       display: inline-block;
       width: 25px;
       /* Fixed width for alignment */
   }

   /* ================= FEATURES ================= */

   .features-section {
       padding-top: 0;
       padding-bottom: 30px;
       /* Reduced bottom padding */
   }

   .features {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 30px;
       margin-top: -100px;
       position: relative;
       z-index: 10;
       padding: 0 20px;
   }

   .feature-card {
       background: white;
       padding: 40px 30px;
       border-radius: 20px;
       box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
       text-align: center;
       transition: all 0.4s ease;
       border-top: 5px solid var(--primary);
       position: relative;
       overflow: hidden;
   }

   .feature-card:hover {
       transform: translateY(-15px);
       box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
   }

   .feature-card:nth-child(2) {
       border-top-color: var(--secondary);
   }

   .feature-card i {
       font-size: 32px;
       color: white;
       margin-bottom: 25px;
       width: 80px;
       height: 80px;
       background: var(--primary);
       display: inline-flex;
       align-items: center;
       justify-content: center;
       border-radius: 50%;
       box-shadow: 0 10px 20px rgba(4, 120, 87, 0.3);
       transition: 0.3s;
   }

   .feature-card:nth-child(2) i {
       background: var(--secondary);
       box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
   }

   .feature-card:hover i {
       transform: scale(1.1) rotate(5deg);
   }

   .feature-card h4 {
       font-size: 22px;
       margin-bottom: 15px;
       color: var(--dark);
       font-weight: 700;
   }

   .feature-card p {
       color: var(--gray);
       line-height: 1.6;
   }

   /* ================= ABOUT ================= */
   /* 
   .about {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       align-items: center;
   }

   .about img {
       width: 100%;
       border-radius: 20px;
       box-shadow: 20px 20px 0 var(--primary-dark);
   } */
   /* ===== ABOUT SECTION ===== */
   #about {
       background: white;
   }

   .about-hospital {
       display: grid;
       grid-template-columns: 1fr 1.5fr;
       gap: 60px;
       align-items: center;
       margin-bottom: 80px;
   }

   .about-hospital img {
       width: 100%;
       border-radius: 16px;
       box-shadow: var(--shadow);
       height: 625px;
   }

   .about-hospital h3 {
       font-size: 32px;
       margin-bottom: 20px;
       color: var(--primary);
   }

   .about-hospital p {
       margin-bottom: 16px;
       color: var(--gray);
       font-size: 16px;
       line-height: 1.8;
   }


   .about-doctor {
       display: grid;
       grid-template-columns: 1.5fr 1fr;
       gap: 60px;
       align-items: center;
       margin-top: 80px;
   }

   .about-doctor h3 {
       font-size: 32px;
       margin-bottom: 20px;
       color: var(--primary);
   }

   .doctor-credentials {
       display: flex;
       gap: 15px;
       flex-wrap: wrap;
       margin: 20px 0;
   }

   .credential {
       background: var(--primary);
       color: white;
       padding: 8px 20px;
       border-radius: 20px;
       font-size: 14px;
       font-weight: 600;
   }

   .doctor-specialty {
       font-size: 18px;
       font-weight: 600;
       color: var(--primary-dark);
       margin: 20px 0;
   }

   .about-doctor p {
       margin-bottom: 16px;
       color: var(--gray);
       font-size: 16px;
       line-height: 1.8;
   }

   .about-doctor img {
       width: 100%;
       border-radius: 16px;
       box-shadow: var(--shadow);
   }


   /* ================= COUNTER ================= */

   .counter-section {
       background: var(--primary);
       color: white;
       text-align: center;
       padding: 80px 0;
   }

   .counters {
       display: flex;
       justify-content: center;
       gap: 80px;
       flex-wrap: wrap;
   }

   .counter h3 {
       font-size: 48px;
       font-weight: 800;
       color: white;
       /* Ensure visible on green background */
   }

   /* ================= SERVICES ================= */

   .services {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
   }

   .service-card {
       background: white;
       padding: 0;
       /* Changed from 30px to 0 for full width image */
       border-radius: 15px;
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
       transition: transform 0.3s;
       border: 1px solid #eee;
       overflow: hidden;
       /* For image */
       height: 100%;
   }

   .service-card:hover {
       transform: translateY(-5px);
       border-color: var(--primary);
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   }

   .service-card img {
       width: 100%;
       height: 200px;
       object-fit: fill;
       transition: transform 0.5s;
   }

   .service-card:hover img {
       transform: scale(1.05);
   }

   .service-content {
       padding: 25px;
   }

   .service-content h4 {
       margin: 0 0 15px 0;
       color: var(--primary);
       font-size: 22px;
       font-weight: 700;
       border-bottom: 2px solid #f0f0f0;
       padding-bottom: 10px;
   }

   .service-content ul {
       list-style: none;
       padding: 0;
   }

   .service-content ul li {
       position: relative;
       padding-left: 20px;
       margin-bottom: 8px;
       color: var(--gray);
       font-size: 15px;
       line-height: 1.5;
   }

   .service-content ul li::before {
       content: "•";
       /* OR "\f00c" for checkmark if we want fontawesome */
       color: var(--secondary);
       font-weight: bold;
       position: absolute;
       left: 0;
       top: 0;
   }

   /* ===== FACILITIES SECTION ===== */
   #facilities {
       background: white;
   }

   .facilities-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 40px;
   }

   .facility-card {
       background: white;
       padding: 0;
       border-radius: 15px;
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
       transition: transform 0.3s;
       border: 1px solid #eee;
       overflow: hidden;
       height: 100%;
   }

   .facility-card:hover {
       transform: translateY(-5px);
       border-color: var(--primary);
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   }

   .facility-card img {
       width: 100%;
       height: 200px;
       object-fit: fill;
       transition: transform 0.5s;
   }

   .facility-card:hover img {
       transform: scale(1.05);
   }

   .facility-content {
       padding: 25px;
       text-align: center;
   }

   .facility-content h4 {
       margin: 0 0 10px 0;
       color: var(--primary);
       font-size: 20px;
       font-weight: 700;
   }

   .facility-content p {
       color: var(--gray);
       font-size: 15px;
       line-height: 1.6;
   }

   /* ================= CTA ================= */

   .cta {
       background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
       color: white;
       text-align: center;
       padding: 80px 20px;
   }

   .cta h2 {
       color: white;
   }

   .cta .btn {
       background: white;
       color: var(--primary);
   }

   .cta .btn:hover {
       background: var(--light);
   }

   /* ================= GALLERY ================= */
   /* Gallery Section Styles */
   #gallery {
       padding: 60px 20px;
       background-color: #f5f5f5;
   }

   #gallery .container {
       max-width: 1200px;
       margin: 0 auto;
   }

   #gallery h2 {
       text-align: center;
       color: #1a5f4f;
       font-size: 2.5rem;
       margin-bottom: 50px;
       font-weight: bold;
   }

   .gallery {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 30px;
       padding: 0 20px;
   }

   .video-card {
       background: white;
       border-radius: 12px;
       overflow: hidden;
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       opacity: 0;
       transform: translateY(30px);
       text-decoration: none;
       display: block;
   }

   .video-card.animate-on-scroll {
       animation: slideUp 0.6s ease forwards;
   }

   .video-card:hover {
       transform: translateY(-8px);
       box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   }

   .video-thumbnail {
       position: relative;
       width: 100%;
       padding-bottom: 56.25%;
       /* 16:9 aspect ratio */
       overflow: hidden;
       background: #000;
   }

   .video-thumbnail img {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.3s ease;
   }

   .video-card:hover .video-thumbnail img {
       transform: scale(1.05);
   }

   .play-button {
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       z-index: 2;
       transition: transform 0.3s ease;
       cursor: pointer;
   }

   .video-card:hover .play-button {
       transform: translate(-50%, -50%) scale(1.1);
   }

   .play-button svg {
       filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
   }

   .video-title {
       padding: 20px;
       text-align: center;
       font-size: 1.1rem;
       font-weight: 600;
       color: #333;
       background-color: white;
       border-top: 3px solid #1a5f4f;
   }

   @keyframes slideUp {
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   /* Stagger animation delays */
   .video-card:nth-child(1) {
       animation-delay: 0s;
   }

   .video-card:nth-child(2) {
       animation-delay: 0.1s;
   }

   .video-card:nth-child(3) {
       animation-delay: 0.2s;
   }

   .video-card:nth-child(4) {
       animation-delay: 0.3s;
   }

   .video-card:nth-child(5) {
       animation-delay: 0.4s;
   }

   .video-card:nth-child(6) {
       animation-delay: 0.5s;
   }

   /* Responsive design */
   @media (max-width: 768px) {
       .gallery {
           grid-template-columns: 1fr;
           gap: 25px;
       }

       #gallery h2 {
           font-size: 2rem;
           margin-bottom: 30px;
       }

       .video-title {
           font-size: 1rem;
           padding: 15px;
       }
   }

   @media (min-width: 769px) and (max-width: 1024px) {
       .gallery {
           grid-template-columns: repeat(2, 1fr);
       }
   }


   /* ================= CONTACT ================= */



   .contact {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       padding: 0 20px;
   }

   .contact-info-item {
       display: flex;
       align-items: center;
       gap: 15px;
       margin-bottom: 20px;
       font-size: 18px;
       word-break: break-word;
   }

   .contact-info-item>div {
       min-width: 0;
   }

   .contact-info-item i {
       flex-shrink: 0;
       min-width: 50px;
       width: 50px;
       height: 50px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 20px;
       transition: 0.3s;
   }

   .contact-info-item:hover i {
       /* background: var(--secondary); */
       background: #FFFFFF80;
       transform: scale(1.1);
   }

   .contact-form-card {
       background: rgba(255, 255, 255, 0.95);
       padding: 40px;
       border-radius: 25px;
       box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
       backdrop-filter: blur(10px);
       border: 1px solid rgba(255, 255, 255, 0.5);
   }

   input,
   textarea {
       width: 100%;
       padding: 15px 20px;
       margin-top: 15px;
       border-radius: 12px;
       border: 2px solid #e2e8f0;
       outline: none;
       transition: all 0.3s;
       background: #f8fafc;
       font-size: 16px;
       font-family: inherit;
   }

   input:focus,
   textarea:focus {
       border-color: var(--primary);
       background: white;
       box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1);
   }

   button {
       margin-top: 25px;
       padding: 16px 40px;
       border: none;
       background: linear-gradient(135deg, #0d9488 0%, #0d9488 100%);
       color: white;
       border-radius: 50px;
       font-weight: 700;
       font-size: 16px;
       cursor: pointer;
       transition: transform 0.3s, box-shadow 0.3s;
       width: 100%;
       text-transform: uppercase;
       letter-spacing: 0.5px;
   }

   button:hover {
       transform: translateY(-3px);
       box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
   }

   /* ================= FOOTER ================= */

   footer {
       background: var(--dark);
       color: white;
       padding: 60px 0 30px;
       text-align: center;
       border-top: 5px solid var(--primary);
   }

   .footer-links {
       display: flex;
       justify-content: center;
       gap: 30px;
       margin-bottom: 30px;
       flex-wrap: wrap;
   }

   .footer-links a {
       color: white;
       text-decoration: none;
       opacity: 0.8;
       transition: 0.3s;
   }

   .footer-links a:hover {
       /* color: var(--secondary); */
       color: #0d9488;
       opacity: 1;
   }

   .social-links {
       margin-bottom: 30px;
   }

   .social-links a {
       display: inline-flex;
       width: 40px;
       height: 40px;
       background: rgba(255, 255, 255, 0.1);
       color: white;
       align-items: center;
       justify-content: center;
       border-radius: 50%;
       margin: 0 10px;
       text-decoration: none;
       transition: 0.3s;
   }

   .social-links a:hover {
       background: var(--secondary);
       transform: translateY(-3px);
   }

   /* ================= WHATSAPP ================= */

   .whatsapp {
       position: fixed;
       bottom: 30px;
       right: 30px;
       background: #25D366;
       color: white;
       width: 60px;
       height: 60px;
       border-radius: 50%;
       font-size: 30px;
       text-decoration: none;
       display: flex;
       align-items: center;
       justify-content: center;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
       transition: transform 0.3s;
       z-index: 1000;
   }

   .whatsapp:hover {
       transform: scale(1.1);
   }

   /* Mission Section */
   .mission-box {
       background: #115e59;
       /* Deep Teal/Green manually set to ensure visibility if var missing */
       background: var(--primary);
       color: white;
       padding: 60px 40px;
       border-radius: 20px;
       text-align: center;
       margin-top: 80px;
       position: relative;
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
       overflow: hidden;
       border: 1px solid rgba(255, 255, 255, 0.1);
   }

   /* Decorative background element */
   .mission-box::before {
       content: '\f479';
       /* fa-kit-medical icon */
       font-family: "Font Awesome 6 Free";
       font-weight: 900;
       position: absolute;
       top: -30px;
       right: -30px;
       font-size: 300px;
       opacity: 0.07;
       color: white;
       transform: rotate(15deg);
       pointer-events: none;
   }

   .mission-box h3 {
       color: white;
       font-size: 14px;
       font-weight: 600;
       text-transform: uppercase;
       letter-spacing: 2px;
       margin-bottom: 30px;
       display: inline-block;
       background: rgba(255, 255, 255, 0.15);
       padding: 10px 20px;
       border-radius: 50px;
       backdrop-filter: blur(5px);
   }

   .mission-quote {
       font-size: 36px;
       font-weight: 800;
       color: white;
       margin: 0 0 15px 0;
       font-family: 'Inter', sans-serif;
       line-height: 1.3;
       position: relative;
       z-index: 1;
   }

   .mission-gujarati {
       font-size: 20px;
       color: rgba(255, 255, 255, 0.9);

       font-weight: 500;
       margin-bottom: 35px;
       position: relative;
       z-index: 1;
       display: block;
   }

   .mission-desc {
       font-size: 18px;
       line-height: 1.8;
       color: rgba(255, 255, 255, 0.9);
       max-width: 800px;
       margin: 0 auto;
       position: relative;
       z-index: 1;
   }

   /* ================= RESPONSIVE ================= */

   @media(max-width:900px) {
       .nav .btn {
           display: none;
       }

       .menu-toggle {
           display: block;
       }

       .nav ul {
           position: fixed;
           top: 70px;
           left: -100%;
           width: 100%;
           height: calc(100vh - 70px);
           background: white;
           flex-direction: column;
           justify-content: center;
           align-items: center;
           transition: 0.3s;
           gap: 40px;
           box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
       }

       .nav ul.active {
           left: 0;
       }

       .nav ul li a {
           font-size: 24px;
       }

       .hero-content h1 {
           font-size: 36px;
       }

       .about,
       .contact {
           grid-template-columns: 1fr;
           gap: 40px;
       }

       .features {
           margin-top: 0;
           padding-top: 40px;
       }

       .contact-form-card {
           padding: 30px 20px;
       }
   }

   @media(max-width: 600px) {
       .topbar {
           display: none;
       }

       .hero-content h1 {
           font-size: 28px;
       }

       .hero-content p {
           font-size: 16px;
       }

       .counter h3 {
           font-size: 36px;
       }

       .features,
       .services,
       .gallery {
           grid-template-columns: 1fr;
       }

       section {
           padding: 60px 0;
       }

       .hero {
           height: 80vh;
       }
   }

   /* ================= NEW STYLES FROM INLINE ================= */

   /* ================= UTILITY CLASSES ================= */
   .delay-100 {
       transition-delay: 0.1s;
   }

   .delay-200 {
       transition-delay: 0.2s;
   }

   .delay-300 {
       transition-delay: 0.3s;
   }

   .delay-400 {
       transition-delay: 0.4s;
   }

   .delay-500 {
       transition-delay: 0.5s;
   }

   .delay-600 {
       transition-delay: 0.6s;
   }

   .delay-700 {
       transition-delay: 0.7s;
   }

   .delay-800 {
       transition-delay: 0.8s;
   }

   .delay-900 {
       transition-delay: 0.9s;
   }

   .text-center {
       text-align: center;
   }

   .img-overflow {
       overflow: hidden;
   }

   /* ================= SLIDER & HERO ================= */
   .slide-1 {
       background-image: url('../img/Screenshot (1510).png');
   }

   .slide-2 {
       background-image: url('../img/header-slider.jpeg');
   }

   .slide-3 {
       background-image: url('../img/header-slider-ot.jpeg');
   }

   .hero-doctor-name {
       font-size: 32px;
       margin-bottom: 10px;
   }

   .hero-doctor-stats {
       font-size: 18px;
       max-width: 800px;
       margin: 0 auto 30px auto;
       line-height: 1.6;
   }

   .hero-cta-btn {
       margin-top: 20px;
   }

   /* ================= ABOUT SECTION ================= */
   .about-img {
       object-fit: cover;
       height: 100%;
   }

   /* Mission Section Overrides */
   .mission-box {
       margin-top: 40px;
       text-align: left;
       padding: 30px;
       background: var(--light) !important;
       color: var(--dark) !important;
       box-shadow: none !important;
       border-left: 5px solid var(--primary);
       border-right: none;
       border-top: none;
       border-bottom: none;
       border-radius: 10px;
   }

   .mission-box::before {
       display: none;
   }

   .mission-box h3 {
       background: none !important;
       padding: 0 !important;
       border-radius: 0 !important;
       backdrop-filter: none !important;
       display: block !important;
       text-transform: none !important;
       letter-spacing: normal !important;
       margin-bottom: 10px !important;
       color: var(--primary) !important;
       font-size: 20px !important;
       font-weight: 700;
       /* Assuming bold from h3 */
   }

   .mission-title {
       font-size: 20px;
       color: var(--primary);
       margin-bottom: 10px;
       background: none;
       padding: 0;
       backdrop-filter: none;
       display: block;
   }

   .mission-quote {
       font-size: 20px;
       color: var(--dark) !important;
       margin-bottom: 5px !important;
       font-weight: normal;
   }

   .mission-gujarati {
       font-size: 16px;
       color: var(--gray) !important;
       margin-bottom: 15px !important;
       display: block !important;
       font-weight: normal;
   }

   .mission-desc {
       font-size: 15px;
       color: var(--gray) !important;
       max-width: 100%;
   }

   .doctor-intro {
       margin-bottom: 20px;
       font-weight: 500;
   }

   .doctor-profile-img {
       border-radius: 20px;
       box-shadow: var(--shadow);
       width: 100%;
       height: auto;
       margin-bottom: 20px;
   }

   /* Doctor Credentials Override */
   .doctor-credentials {
       display: flex;
       flex-direction: column;
       gap: 5px;
       margin: 20px 0;
       flex-wrap: nowrap;
   }

   .doctor-degree {
       color: var(--primary);
       font-size: 20px;
       margin: 0;
   }

   .doctor-specialty-text {
       color: var(--gray);
       font-size: 16px;
   }

   /* ================= CONTACT SECTION ================= */
   #contact {
       position: relative;
       padding: 120px 20px;
       color: white;
   }

   .contact-bg {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: url('../img/contact.jpg') center/cover no-repeat;
       z-index: -2;
   }

   .contact-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(6, 78, 59, 0.9);
       z-index: -1;
   }

   .contact-title {
       color: white;
       font-size: 48px;
       text-align: left;
       margin-bottom: 30px;
   }

   .contact-desc {
       margin-bottom: 40px;
       font-size: 18px;
       opacity: 0.9;
       max-width: 400px;
       line-height: 1.6;
   }

   .contact-info-wrapper {
       margin-top: 30px;
   }

   .contact-label {
       font-size: 12px;
       opacity: 0.7;
       text-transform: uppercase;
       letter-spacing: 1px;
   }

   .contact-link {
       text-decoration: none;
       color: inherit;
   }

   .form-title {
       color: var(--dark);
       font-size: 24px;
       font-weight: 700;
       margin-bottom: 20px;
   }

   .send-icon {
       margin-right: 10px;
   }

   /* ================= FOOTER ================= */
   .copyright {
       opacity: 0.6;
       font-size: 14px;
   }

   /* ================= IMPROVED RESPONSIVE DESIGN ================= */

   /* Laptop & Small Desktop (max-width: 1024px) */
   @media (max-width: 1024px) {
       .container {
           max-width: 960px;
       }

       .hero-content h1 {
           font-size: 42px;
       }

       .about-hospital,
       .about-doctor {
           gap: 40px;
       }

       .about-hospital img,
       .doctor-profile-img {
           height: auto;
           max-height: 400px;
       }
   }

   /* Tablet (max-width: 900px) */
   @media (max-width: 900px) {
       .nav .btn {
           display: none;
       }

       .menu-toggle {
           display: block;
       }

       .nav ul {
           position: fixed;
           top: 70px;
           left: -100%;
           width: 100%;
           height: calc(100vh - 70px);
           background: white;
           flex-direction: column;
           justify-content: center;
           align-items: center;
           transition: 0.3s;
           gap: 30px;
           box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
           z-index: 998;
       }

       .nav ul.active {
           left: 0;
       }

       .nav ul li a {
           font-size: 22px;
       }

       .hero-content h1 {
           font-size: 36px;
       }

       /* Stack Grids */
       .about,
       .contact,
       .about-hospital,
       .about-doctor {
           grid-template-columns: 1fr;
           gap: 40px;
           display: grid;
       }



       .features {
           margin-top: 0;
           padding-top: 40px;
       }

       .contact-form-card {
           padding: 30px 20px;
       }

       .counters {
           gap: 40px;
       }
   }

   /* Mobile (max-width: 600px) */
   @media (max-width: 600px) {
       .topbar {
           display: none;
       }

       .nav {
           padding: 10px 20px;
       }

       .hero {
           height: 85vh;
       }

       .hero-content h1 {
           font-size: 28px;
           line-height: 1.3;
       }

       .hero-content p {
           font-size: 16px;
       }

       .slider-nav {
           font-size: 40px;
           padding: 10px;
       }

       .prev-btn {
           left: 10px;
       }

       .next-btn {
           right: 10px;
       }

       .rudra-item {
           font-size: 18px;
       }

       .rudra-red,
       .rudra-green {
           width: 20px;
           margin-right: 2px;
       }

       .counter h3 {
           font-size: 36px;
       }

       /* Single Column Layouts */
       .features,
       .services,
       .gallery,
       .facilities-grid {
           grid-template-columns: 1fr;
           gap: 30px;
       }

       .service-card img,
       .facility-card img {
           height: 200px;
       }

       section {
           padding: 60px 0;
       }

       h2 {
           font-size: 28px;
       }

       .contact-title {
           font-size: 32px;
       }

       .contact-info-item {
           font-size: 16px;
       }

       .mission-box::before {
           font-size: 150px;
           opacity: 0.05;
       }

       .mission-quote {
           font-size: 24px;
       }

       .doctor-profile-img {
           max-width: 100%;
           margin: 0 auto 20px;
           display: block;
       }

       .about-doctor {
           text-align: center;
       }

       .about-doctor h3,
       .about-hospital h3 {
           text-align: center;
       }

       .doctor-credentials {
           justify-content: center;
       }

       .contact {
           padding: 0 20px;
           /* Restore padding */
       }

       .whatsapp {
           width: 50px;
           height: 50px;
           font-size: 24px;
           bottom: 20px;
           right: 20px;
       }
   }

   /* Brand Hover Effects */
   .social-links a.facebook:hover {
       background: #1877F2 !important;
       transform: translateY(-3px);
   }

   .social-links a.instagram:hover {
       background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
       transform: translateY(-3px);
   }

   .social-links a.youtube:hover {
       background: #FF0000 !important;
       transform: translateY(-3px);
   }

   .social-links a.location:hover {
       background: white url('https://upload.wikimedia.org/wikipedia/commons/a/aa/Google_Maps_icon_%282020%29.svg') no-repeat center center !important;
       background-size: 65% !important;
       transform: translateY(-3px);
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   }

   .social-links a.location:hover i {
       display: none;
   }