/* 
=======================================
   Dr. Sushil Mehtaa - Style CSS
   Logo Color Combination Design
=======================================
*/

:root {
    /* Logo Color Palette */
    /* Primary: Cyan Blue */
    --color-primary: #0f9bd0;
    --color-primary-dark: #0b7da8;
    --color-primary-light: #3bc0f2;
    --gradient-primary: linear-gradient(135deg, #3bc0f2, #0f9bd0);
    
    /* Secondary: Emerald Green */
    --color-secondary: #14a955;
    --color-secondary-dark: #108d46;
    --color-secondary-light: #30cd74;
    --gradient-secondary: linear-gradient(135deg, #30cd74, #14a955);
    
    --bg-dark-grey: #1e293b;
    --bg-soft-gray: #f8fafc;
    --bg-soft-blue: #f0f9fd; /* Very soft primary tint */
    --bg-mint: #f0fdf5; /* Very soft secondary tint */
    
    --text-dark: #0f172a;
    --text-grey: #475569;
    --text-light: #ffffff;
    --text-white-80: rgba(255, 255, 255, 0.8);
    
    --border-color: #e2e8f0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow-primary: 0 10px 25px -5px rgba(15, 155, 208, 0.4);
    --shadow-glow-secondary: 0 10px 25px -5px rgba(20, 169, 85, 0.4);
    --shadow-soft-card: 0 12px 24px -6px rgba(0,0,0,0.05), 0 4px 12px -4px rgba(0,0,0,0.05);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.text-center { text-align: center; }
.text-white { color: var(--text-light) !important; }
.text-white-80 { color: var(--text-white-80); }
.text-muted { color: var(--text-grey); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.w-100 { width: 100%; }
.mt-2 { margin-top: 1rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }

.bg-soft-blue { background-color: var(--bg-soft-blue); }
.bg-soft-gray { background-color: var(--bg-soft-gray); }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-sec {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-glow { box-shadow: var(--shadow-glow-secondary); }

/* Badges */
.section-badge {
    display: inline-block;
    background: rgba(15, 155, 208, 0.1);
    color: var(--color-primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-badge.center {
    margin: 0 auto 16px;
}
.section-badge.dark {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-secondary);
}

.btn-outline-white {
    background-color: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}
.btn-outline-white:hover {
    background-color: rgba(255,255,255,1);
    color: var(--color-primary);
}

.btn-white {
    background-color: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition);
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* -------------------------------------
   Header Navigation 
-------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: white;
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

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

.logo-img {
    height: 45px;
    object-fit: contain;
    transition: var(--transition);
}

.site-header.scrolled .logo-img {
    height: 40px;
}

.site-header:not(.scrolled) .logo-img {
    /* No filter needed on white background */
}

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

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-primary); /* Logo color */
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.site-header.scrolled .nav-links a {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--color-primary);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 1000;
    top: 100%;
    left: -20px;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-dark) !important;
    padding: 12px 25px !important;
    display: block !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: background-color 0.2s, color 0.2s !important;
}

.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover {
    background-color: var(--bg-soft-blue) !important;
    color: var(--color-primary) !important;
}

.text-xs {
    font-size: 12px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--color-primary);
    cursor: pointer;
}

.site-header.scrolled .mobile-menu-btn {
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); /* Clean white background */
    color: var(--text-dark);
    padding: 120px 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Hero background is dark, but the header is now solid white, so no unscrolled text color overrides are needed */

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.blob-1 {
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: var(--color-primary);
}

.blob-2 {
    bottom: -10%; left: -10%;
    width: 500px; height: 500px;
    background: var(--color-secondary);
}

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.15;
}

.hero-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.2;
    padding-bottom: 80px;
    padding-right: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43, 182, 115, 0.08);
    border: 1px solid rgba(43, 182, 115, 0.15);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #1e5a3c;
}

.hero-title {
    color: var(--color-dark);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 30px;
    font-weight: 500;
}

.qualification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.qualification-badges .badge {
    background-color: rgba(15, 155, 208, 0.06);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    box-shadow: none;
    border: 1px solid rgba(15, 155, 208, 0.15);
}

.hero-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* Modify btn-outline for dark hero */
.btn-outline-primary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(15, 155, 208, 0.2);
}

.hero-stats {
    display: flex;
    gap: 24px;
}

.glass-stat {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.glass-stat h3 {
    color: var(--color-secondary);
    font-size: 28px;
    margin-bottom: 4px;
}

.glass-stat p {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.hero-image-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 155, 208, 0.15) 0%, rgba(255,255,255,0) 70%);
    bottom: 0;
    z-index: 1;
}

.hero-doctor-img {
    position: relative;
    z-index: 2;
    max-height: min(720px, 75vh);
    object-fit: contain;
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}

.hero-floating-card {
    position: absolute;
    left: -20px;
    bottom: 60px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    color: var(--text-dark);
    background: white;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card .card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-soft-blue);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-floating-card strong {
    display: block;
    font-size: 15px;
    font-family: var(--font-heading);
}

.hero-floating-card p {
    font-size: 12px;
    color: var(--text-grey);
}

.hero-floating-card span {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Simple Stats Banner */
.simple-stats-banner {
    background-color: #f8fafc;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23f1f5f9" fill-opacity="1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.6;
}

.simple-stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: white;
    padding: 20px 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    flex: 1;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card h2 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.stat-icon {
    font-size: 20px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-grey);
    margin: 0;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-img-backdrop {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--bg-soft-blue);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    text-align: center;
    font-weight: 600;
    color: var(--text-grey);
    line-height: 1.2;
    border: 1px solid var(--border-color);
}

.experience-badge span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content {
    flex: 1.2;
}

.about-title {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-subtitle {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qual-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.qual-list li {
    background: var(--bg-soft-gray);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.about-text p {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-dark);
}

/* -------------------------------------
   Logo Slider Section
-------------------------------------- */
.logo-slider-section {
    padding: 40px 0;
    background: #0b1c2b; /* Premium dark background */
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 35s linear infinite;
    align-items: center;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-strip {
    height: 90px;
    width: calc(20vw - 30px); /* Exactly 5 images per viewport width */
    min-width: 180px; /* Ensure they don't get too small on mobile */
    flex-shrink: 0;
    object-fit: contain;
    margin-right: 30px;
    padding: 15px 25px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.logo-strip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Why Choose Us / Top Services */
.services-section {
    padding: 50px 0;
    /* Soft gradient using the logo's primary (cyan) and secondary (green) colors */
    background: linear-gradient(135deg, rgba(15, 155, 208, 0.2) 0%, rgba(20, 169, 85, 0.2) 100%);
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.services-header .section-subtitle {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 40px;
}

.top-services-container {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.large-service-card {
    flex: 1;
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.large-service-card.active {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.large-service-card.active p {
    color: rgba(255,255,255,0.8);
}

.ls-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-soft-blue);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.large-service-card.active .ls-icon {
    background: rgba(255,255,255,0.1);
    color: white;
}

.large-service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.large-service-card p {
    font-size: 14px;
    color: var(--text-grey);
}

/* Perfect Our Services Section (Grid) */
.our-services-perfect {
    padding: 100px 0;
    background-color: var(--bg-mint);
}

.services-clean-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.clean-service-card {
    background-color: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft-card);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.clean-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: var(--bg-soft-blue);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.clean-service-card h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.clean-service-card p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

/* Risk Section */
.risk-section {
    padding: 100px 0;
    background-color: white;
}

.risk-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.risk-content {
    flex: 1;
}

.risk-desc {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 30px;
    line-height: 1.8;
}

.risk-list-wrapper {
    background: var(--bg-soft-gray);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.risk-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.risk-list li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.risk-list li i {
    color: var(--color-secondary);
    font-size: 16px;
    margin-top: 3px;
}

.risk-image-wrapper {
    flex: 1;
    position: relative;
}

.risk-blob {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; height: 90%;
    background: var(--gradient-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    z-index: 0;
}

.risk-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: top;
    height: 500px;
    width: 100%;
}

.floating-badge {
    position: absolute;
    bottom: 30px; left: -30px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--color-primary);
    animation: float 5s ease-in-out infinite;
}

/* Conditions Section */
.conditions-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.conditions-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-primary);
    transform: skewY(-3deg);
    transform-origin: 0;
    z-index: 0;
}

.badge-white {
    display: inline-block;
    background-color: white;
    color: var(--color-primary-dark);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.condition-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 30px 15px;
    color: white;
}

.cond-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    color: var(--color-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 20px;
}

.condition-card p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.conditions-footer-text {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Beautiful Gallery */
.gallery-section {
    padding: 100px 0;
}

.gallery-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    display: none !important;
}

.gallery-overlay span {
    color: white;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Video Section Placeholder */
.video-section {
    padding: 80px 0;
    background-color: var(--bg-soft-gray);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

@media (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
    aspect-ratio: 16 / 9;
    transition: var(--transition);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.video-info h4 {
    color: white;
    font-size: 24px;
    margin-bottom: 8px;
}

.video-info p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-dark-grey);
    padding: 100px 0;
}

.testi-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    position: relative;
}

.testi-card.active {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(15, 155, 208, 0.15);
    z-index: 1;
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
    background-color: white !important;
    opacity: 0.4 !important;
    width: 10px !important;
    height: 10px !important;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: var(--color-primary) !important;
    width: 25px !important;
    border-radius: 5px !important;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--bg-soft-blue);
    opacity: 0.7;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testi-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.bg-gradient-1 { background: var(--gradient-primary); }
.bg-gradient-2 { background: var(--gradient-secondary); }
.bg-gradient-3 { background: linear-gradient(135deg, #0f9bd0, #14a955); }

.testi-user h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.testi-user .time {
    font-size: 12px;
    color: #94a3b8;
}

.testi-card .stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
    font-style: italic;
}

.verified-text {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    background: rgba(255,255,255,0.05);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    display: inline-block;
}

/* Contact Section */
.contact-section {
    padding: 0;
    background-color: white;
}

.contact-container {
    display: flex;
    padding: 0;
    max-width: 100%;
    min-height: 700px;
}

.contact-image-col {
    flex: 1;
    position: relative;
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(255,255,255,1) 100%);
}

.contact-form-area {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-box {
    background: var(--bg-soft-blue);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-box i {
    color: var(--color-primary);
    font-size: 18px;
    margin-top: 2px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--text-grey);
    font-size: 16px;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    background-color: var(--bg-soft-gray);
    transition: var(--transition);
}

.appointment-form input:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(15, 155, 208, 0.1);
}

/* Page Title Banner */
.page-title-banner {
    background-color: #1a1a1a;
    padding: 30px 0;
    margin-top: 80px; /* Offset for fixed header */
}

.page-title-banner h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.page-title-banner p {
    color: #aaaaaa;
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

/* Contact Cards Layout (New Design) */
.contact-cards-section {
    padding: 80px 0 40px;
    background-color: #fdf8f4; /* Light off-white/beige background */
}

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

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary); /* Cyan Blue */
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* rounded square */
    margin: 0 auto 20px;
}

/* First card green icon */
.contact-info-card:nth-child(1) .card-icon {
    background-color: var(--color-secondary); /* Emerald Green */
}

.contact-info-card .card-title {
    color: var(--color-primary); /* Cyan Blue */
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-card .card-text {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    margin: 0;
}

/* Form Section below cards */
.contact-form-section {
    padding: 40px 0 80px;
    background-color: #fdf8f4;
}

.form-container-centered {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-card {
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.detailed-form .form-group {
    margin-bottom: 25px;
    text-align: left;
}

.detailed-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.detailed-form input,
.detailed-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #fcfcfc;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.detailed-form input:focus,
.detailed-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(15, 155, 208, 0.1);
}

.name-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sub-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    margin-top: 10px;
}

.btn-outline-custom:hover {
    background: var(--color-primary);
    color: white;
}

/* Map Section */
.map-section {
    line-height: 0;
}

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

/* Footer CTA */
.footer-cta {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(20, 169, 85, 0.2) 0%, transparent 50%);
}

.footer-cta h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 16px;
}

.footer-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Comprehensive Footer (4 Sections) */
.site-footer {
    background-color: var(--bg-dark-grey);
    color: #cbd5e1;
    padding: 80px 0 0 0;
    font-family: var(--font-body);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.widget-title {
    color: white;
    font-size: 20px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.about-widget p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #94a3b8;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: #94a3b8;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 10px;
    color: var(--color-primary);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info-list li i {
    font-size: 18px;
    color: var(--color-primary);
    margin-top: 4px;
}

.contact-info-list li div strong {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-list li div span {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.map-container {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
}

.footer-bottom {
    background-color: #0f172a;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Gradient Backgrounds for Services */
.bg-gradient-1 {
    background: linear-gradient(135deg, #108d46 0%, #14a955 100%);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #0b7da8 0%, #0f9bd0 100%);
}

.bg-gradient-3 {
    background: linear-gradient(135deg, #f0a020 0%, #f69c27 100%);
}

/* Utilities for text inside gradient sections */
.text-white {
    color: #ffffff !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-orange {
    color: #f0a020 !important;
}

/* Service Details Sections (services.html) */
.service-detail-section {
    padding: 30px 0;
}

.service-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.bg-soft-gray .service-content-wrapper {
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.service-content-wrapper .content-heading {
    color: var(--color-primary-dark);
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.service-content-wrapper .content-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.service-content-wrapper p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 20px;
}

.lead-box {
    background: var(--bg-soft-blue);
    padding: 30px;
    border-left: 5px solid var(--color-primary);
    border-radius: 8px;
    margin-bottom: 40px;
}

.lead-text {
    font-size: 18px !important;
    color: var(--color-primary-dark) !important;
    font-weight: 600;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.styled-list li:hover {
    padding-left: 10px;
    border-color: var(--color-primary-light);
}

.styled-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.styled-list li i {
    color: var(--color-secondary);
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.styled-list li span {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.7;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* Utilities */
.py-100 { padding: 100px 0; }
.py-80 { padding: 80px 0; }
.py-60 { padding: 60px 0; }
.text-cyan { color: var(--color-secondary); }
.text-uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.1em; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.text-dark { color: #1a1a1a; }
.leading-relaxed { line-height: 1.6; }
.leading-loose { line-height: 1.8; }
.leading-tight { line-height: 1.2; }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }
.text-4xl { font-size: 36px; }
.bg-soft-gray { background-color: #fdf8f4; }
.text-white-80 { color: rgba(255,255,255,0.8); }
.w-100 { width: 100%; }
.object-cover { object-fit: cover; }
.flex-row { display: flex; flex-wrap: wrap; }
.align-center { align-items: center; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }
.gap-50 { gap: 50px; }
.col-md-6 { width: calc(50% - 15px); }
.col-md-8 { width: 66.666%; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.border-top { border-top: 1px solid #eef2f6; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.bg-black-50 { background-color: rgba(0,0,0,0.4); }

/* About Page Specific Styles (from screenshot) */
.bg-light-cyan { background-color: #f2f9f9; }

.about-intro-image {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.image-backdrop-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-light);
    border-radius: 20px;
    z-index: 0;
    opacity: 0.3;
}

.experience-float-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--color-secondary), #0e7a7a);
    color: white;
    padding: 25px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(32, 188, 188, 0.3);
    z-index: 20;
    line-height: 1.2;
}

.text-3xl { font-size: 30px; }
.text-2xl { font-size: 24px; }
.block { display: block; }
.z-10 { z-index: 10; }
.rounded-xl { border-radius: 12px; }

.about-page-banner {
    background: linear-gradient(135deg, #f0fbfa 0%, #e0f6f5 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-page-banner h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.about-page-banner a {
    color: var(--color-primary);
    text-decoration: none;
}

.wwa-row {
    display: flex;
    gap: 50px;
}
.col-left {
    width: 20%;
    flex-shrink: 0;
}
.col-right {
    width: 80%;
}
.two-col-text {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.two-col-text > div {
    flex: 1;
}

.stats-counter-section {
    background-color: #ffffff;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-number {
    font-size: 56px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.stat-label {
    position: relative;
    display: inline-block;
    padding-top: 15px;
}

.stat-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.network-section {
    background-color: #ffffff;
}

.video-banner-section .play-btn-circle {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-decoration: none;
}
.video-banner-section .play-btn-circle:hover {
    background: #ffffff;
    color: var(--color-primary);
    transform: scale(1.1);
}

.logos-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}
.company-logo-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.company-logo-card img {
    max-height: 80px;
    max-width: 100%;
    margin: 0 auto 20px;
    object-fit: contain;
}

.cyan-cta-section {
    background: linear-gradient(135deg, #20bcbc 0%, #159a9a 100%);
    padding: 100px 0;
}
.btn-white-rounded {
    background: #ffffff;
    color: #159a9a;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.btn-white-rounded:hover {
    background: var(--color-primary-dark);
    color: #ffffff;
}

.white-footer {
    background: #ffffff;
    border-top: 1px solid #eef2f6;
}
.footer-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 12px;
}
.footer-links-list a {
    color: var(--text-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links-list a:hover {
    color: var(--color-primary);
}
.social-icons-cyan a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--color-secondary);
    background: rgba(32, 188, 188, 0.1);
    margin-left: 10px;
    transition: all 0.3s ease;
}
.social-icons-cyan a:hover {
    background: var(--color-secondary);
    color: #ffffff;
}

/* Committed to Quality Section */
.committed-section {
    background-color: #f5fdfc;
    padding: 80px 0;
}

.committed-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.committed-image-col {
    flex: 1;
}

.committed-image-col img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.committed-content-col {
    flex: 1;
}

.teal-text {
    color: #1ebdb4;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.committed-services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.committed-service-item {
    display: flex;
    gap: 15px;
}

.committed-service-item .service-icon {
    color: #1ebdb4;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.committed-service-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.committed-service-item p {
    color: var(--text-grey);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}

.call-btn {
    background-color: var(--color-primary);
}

.whatsapp-btn {
    background-color: #25D366;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .wwa-row { flex-direction: column; gap: 20px; }
    .col-left, .col-right { width: 100%; }
    .two-col-text { flex-direction: column; gap: 20px; }
    .stats-grid-4, .logos-grid-4, .footer-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .flex-row { flex-direction: column; }
    .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8 { width: 100% !important; }
}
@media (max-width: 768px) {
    .stats-grid-4, .logos-grid-4, .footer-grid-4 { grid-template-columns: 1fr; }
    .cyan-cta-section h2 { font-size: 28px; }
    .py-100 { padding: 50px 0 !important; }
    .flex-row { gap: 20px !important; }
    
    /* Override inline paddings for container cards on mobile */
    .container > div[style*="padding"],
    .col-md-7 > div[style*="padding"],
    .col-md-6 > div[style*="padding"] {
        padding: 30px 20px !important;
    }
    
    /* Scale down hero about images on mobile */
    .about-intro-image img {
        height: 350px !important;
    }
}
@media (max-width: 1200px) {
    .hero-title { font-size: 48px; }
    .gallery-modern-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item.wide { grid-column: span 1; }
    .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .site-header { padding: 10px 0; background: rgba(255,255,255,0.95); }
    .site-header .logo-img { filter: none; }
    .mobile-menu-btn { display: block; color: var(--text-dark); }
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%; /* Off-screen */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-links a { color: var(--text-dark); padding: 15px 24px; display: block; border-bottom: 1px solid var(--border-color); }
    
    .hero-container, .about-container, .risk-container, .contact-container, .committed-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        order: 2;
        padding-right: 0;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-image-wrapper {
        order: 1;
        margin-top: 0;
        margin-bottom: 12px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
    }
    .hero-doctor-img {
        width: 90%;
        max-width: 320px;
        height: auto;
        max-height: none;
        object-fit: contain;
        margin: 0 auto;
        border-radius: 0 0 150px 150px;
        overflow: hidden;
    }
    .hero-floating-card {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        padding: 6px 12px;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 3;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow-md);
        width: max-content;
        animation: none;
    }
    .hero-floating-card .card-icon {
        width: 24px;
        height: 24px;
        background-color: var(--color-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        flex-shrink: 0;
    }
    .hero-floating-card .card-info {
        text-align: left;
    }
    .hero-floating-card .card-info strong {
        display: block;
        font-size: 10px;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.2;
    }
    .hero-floating-card .card-info p {
        display: none;
    }
    .hero-floating-card .card-info span {
        display: block;
        font-size: 9px;
        font-weight: 600;
        color: var(--color-primary);
        margin-top: 1px;
    }
    .hero-content, .about-content, .risk-content {
        padding-right: 0;
    }
    .hero-actions {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        width: 100%;
        max-width: 360px;
        margin-bottom: 20px;
    }
    .hero-actions .btn {
        flex: 1;
        font-size: 13px;
        padding: 10px 12px;
        white-space: nowrap;
    }
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        width: 100%;
        max-width: 360px;
    }
    .glass-stat {
        flex: 1;
        padding: 8px;
        min-width: 0;
    }
    .glass-stat h3 {
        font-size: 20px;
        margin-bottom: 2px;
    }
    .glass-stat p {
        font-size: 9px;
    }
    .qualification-badges {
        justify-content: center;
        margin-bottom: 15px;
    }
    .about-image { margin-bottom: 40px; }
    .qual-list { justify-content: center; }
    .top-services-container { flex-direction: column; gap: 20px; }
    .services-clean-grid { grid-template-columns: repeat(2, 1fr); }
    .risk-list { text-align: left; }
    .conditions-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-modern-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
    .contact-img-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(255,255,255,1) 100%);
    }
    .committed-service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .committed-service-item .service-icon {
        margin-top: 0;
        font-size: 28px;
    }
    .committed-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 77px 0 15px 0;
    }
    .hero-badge {
        font-size: 10px;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    .hero-title { font-size: 28px; margin-bottom: 6px; }
    .hero-desc { font-size: 13px; line-height: 1.5; margin-bottom: 15px; padding: 0 10px; }
    .section-title { font-size: 26px; }
    .conditions-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-actions { flex-direction: column; }
    .risk-list { grid-template-columns: 1fr; }
    .contact-form-area { padding: 40px 20px; }
    .footer-top-grid { grid-template-columns: 1fr; gap: 30px; }
    .clean-service-card { align-items: center; text-align: center; padding: 15px 12px; }
    .services-clean-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .logo-track {
        display: grid;
        grid-template-rows: repeat(2, auto);
        grid-auto-flow: column;
        gap: 15px;
        animation: scrollLogos 25s linear infinite;
    }
    .logo-strip {
        height: 60px;
        width: 130px;
        min-width: 130px;
        margin-right: 0;
        padding: 10px 15px;
    }
    .simple-stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-card {
        max-width: 100%;
        margin: 0;
        padding: 12px 10px;
    }
    .gallery-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .simple-stats-banner {
        padding: 25px 0;
    }
    .services-section, .our-services-perfect, .about-section, .risk-section, .committed-section, .contact-cards-section, .contact-form-section {
        padding: 35px 0;
    }
    .qualification-badges {
        margin-bottom: 12px;
        gap: 8px;
    }
    .qualification-badges .badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    .hero-actions {
        margin-bottom: 15px;
        gap: 8px;
    }
    .hero-actions .btn {
        font-size: 12px;
        padding: 8px 10px;
    }
    .hero-stats {
        gap: 8px;
    }
    .glass-stat {
        padding: 6px;
    }
    .glass-stat h3 {
        font-size: 18px;
    }
    .glass-stat p {
        font-size: 8px;
    }
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        left: auto;
        gap: 10px;
    }
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}
