/* Custom CSS for Imagon Radiology Theme */

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #4a90e2;
    --accent-color: #ECF4FB;
    --dark-color: #1a1a1a;
    --light-gray: #f5f7fa;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    --shadow-light: 0 5px 15px rgba(44, 90, 160, 0.1);
    --shadow-medium: 0 10px 30px rgba(44, 90, 160, 0.15);
    --transition: all 0.3s ease;
}

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

.style-1 {
    background: #ffffff;
    position: relative;
    border-radius: 30px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #ECF4FB;
    font-family: 'Khand', 'Poppins', sans-serif;
}

/* Custom Bootstrap Overrides */
.min-vh-80 {
    min-height: 80vh !important;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, #1e3f73 0%, #3a7bc8 100%);
}

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

/* Modern Navigation */
.modern-navbar {
    padding: 0.8rem 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.95), rgba(15, 177, 209, 0.95)) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 30px rgba(30, 136, 229, 0.3);
    transition: all 0.3s ease;
    font-family: 'Khand', 'Poppins', sans-serif;
}

.modern-navbar.scrolled {
    padding: 0.5rem 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.98), rgba(15, 177, 209, 0.98)) !important;
    box-shadow: 0 2px 40px rgba(30, 136, 229, 0.4);
}

/* Modern Brand */
.modern-brand {
    text-decoration: none;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #ffffff 60%, #e3f0ff 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e88e5;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px #1a237e22, 0 1px 4px #1a237e11;
    border: 2px solid #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
    overflow: hidden;
}
.brand-icon img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: contain;
    background: #fff;
    box-shadow: none;
}
@media (max-width: 576px) {
    .brand-icon {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }
    .brand-icon img {
        width: 36px;
        height: 36px;
        border-radius: 5px;
    }
}


.brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff !important;
    letter-spacing: 0.5px;
    font-family: 'Khand', sans-serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.brand-tagline {
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 0.3px;
    margin-top: -2px;
}

/* Modern Toggler */
.modern-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    width: 35px;
    height: 35px;
    position: relative;
}

.modern-toggler:focus {
    box-shadow: none;
}

.toggler-line {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.modern-toggler:not(.collapsed) .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.modern-toggler:not(.collapsed) .toggler-line:nth-child(2) {
    opacity: 0;
}

.modern-toggler:not(.collapsed) .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Modern Navigation Links */
.modern-nav {
    gap: 0.5rem;
}

.modern-nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px !important;
    border-radius: 8px;
    font-family: 'Khand', sans-serif;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.modern-nav-link:hover,
.modern-nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.nav-text {
    position: relative;
}

.modern-nav-link.active .nav-text::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Modern Dropdown */
.modern-dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.modern-dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #495057;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: 'Khand', sans-serif;
    font-weight: 500;
}

.modern-dropdown-item:hover {
    background: rgba(30, 136, 229, 0.1);
    color: #1e88e5;
    transform: translateX(2px);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: 'Khand', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.action-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-modern-primary {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #1e88e5;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    font-family: 'Khand', sans-serif;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    color: #0d47a1;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Legacy navbar class for backward compatibility */
.navbar {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-family: 'Khand', 'Poppins', sans-serif;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.12);
}

.brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    font-family: 'Khand', 'Poppins', sans-serif;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    font-family: 'Khand', 'Poppins', sans-serif;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section with Swiper */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh; /* Reduced from 100vh to 80vh */
    padding: 2rem; /* Added padding to all sides */
    margin-top: 80px; /* Add top margin to account for fixed navbar */
}

.banner-swiper {
    width: 100%;
    height: 80vh; /* Reduced from 100vh to 80vh */
    border-radius: 20px; /* Added border radius for rounded corners */
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(75vh - 4rem); /* Reduced height for less spacing */
    border-radius: 20px;
    overflow: hidden;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    font-family: 'Share Tech', 'Poppins', sans-serif;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text {
    background: #4ade80; /* bg-green-400 equivalent */
    border: 1px solid #16a34a; /* border-green-600 */
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #15803d; /* text-green-700 */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.1);
    font-family: 'Share Tech', 'Poppins', sans-serif;
}
.badge-service {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: 1px solid #16a34a;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Khand', 'Poppins', sans-serif;
}

.badge-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.service-card-enhanced:hover .badge-service::before {
    left: 100%;
}

.service-card-enhanced:hover .badge-service {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    font-family: 'Righteous', 'Poppins', sans-serif;
}

.text-gradient {
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-family: 'Share Tech', 'Poppins', sans-serif;
}

.hero-buttons .btn {
    margin: 0.5rem 0.5rem 0.5rem 0;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    font-family: 'Share Tech', 'Poppins', sans-serif;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
}

.hero-contact-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 0;
    margin-left: auto;
    width: fit-content;
}

.contact-card-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-header i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.contact-card-action {
    padding: 1rem 1.5rem;
}

.btn-quote {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-quote:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ====================================
   MEDICAL CENTER HERO SPECIFIC STYLES
   ==================================== */

/* Enhanced Medical Center Hero Section */
.hero-medical-center {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.hero-medical-center .hero-bg-overlay {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.88) 0%, rgba(44, 62, 80, 0.78) 100%);
}

/* Centered Content Layout */
.hero-content-centered {
    text-align: left;
    max-width: 100%;
    padding-right: 2rem;
}

/* Medical Center Title Styling */
.hero-title-medical {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-title-medical .text-gradient {
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Medical Center Description */
.hero-description-medical {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

/* Medical Center Badge Enhancement */
.hero-medical-center .hero-badge {
    margin-bottom: 1.5rem;
}

.hero-medical-center .badge-text {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: 1px solid #065f46;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    display: inline-block;
}

/* Enhanced Button Styling for Medical Center */
.hero-medical-center .hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
    transition: all 0.3s ease;
}

.hero-medical-center .hero-buttons .btn-primary:hover {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.5);
}

.hero-medical-center .hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: rgba(255, 255, 255, 0.95);
    background: transparent;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-medical-center .hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Medical Center Hero */
@media (max-width: 992px) {
    .hero-content-centered {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-title-medical {
        font-size: 3.2rem;
    }
    
    .hero-description-medical {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title-medical {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-description-medical {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-medical-center .badge-text {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-medical-center .hero-buttons .btn-primary,
    .hero-medical-center .hero-buttons .btn-outline-light {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        margin: 0.3rem;
    }
}

@media (max-width: 576px) {
    .hero-title-medical {
        font-size: 2.4rem;
    }
    
    .hero-description-medical {
        font-size: 1rem;
    }
    
    .hero-medical-center .hero-buttons .btn-primary,
    .hero-medical-center .hero-buttons .btn-outline-light {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

.btn-quote:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-1px);
}

/* Hero Navigation Control */
.hero-nav-control {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 4;
}

.nav-control-box {
    /* background: rgba(255, 255, 255, 0.15); */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-control-box:hover {
    /* background: rgba(255, 255, 255, 0.2); */
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav-text {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.nav-text:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--dark-color);
}

.nav-text:first-child {
    cursor: pointer;
}

.nav-text:last-child {
    cursor: pointer;
}

.nav-divider {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 0.9rem;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    left: 15%;
    animation-delay: -2s;
}

.icon-3 {
    top: 30%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Swiper Custom Styles */
.banner-swiper .swiper-slide-active .hero-content {
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
/* Doctors page spacing */
.doctors-section {
    padding-top: 5rem !important; /* larger than py-5 */
    padding-bottom: 5rem !important;
}

@media (min-width: 992px) {
    .doctors-section {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

@media (max-width: 576px) {
    .doctors-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
}

/* ---- Doctors Page UI ---- */
.doctors-hero {
    position: relative;
    isolation: isolate;
    padding: 4rem 0;
    min-height: 320px;
    display: grid;
    align-items: center;
}
.doctors-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(6, 76, 190, 0.25), rgba(6, 76, 190, 0.05)), url('/images/doctor-holding-stethoscope.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.doctors-hero .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 400px at 50% 0%, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
    z-index: -1;
}

.profile-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
}
.profile-card:hover { 
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.09);
}
.profile-header { 
    padding: 1.5rem 1.5rem 0.75rem; 
}
.profile-body { 
    padding: 0 1.5rem 1.5rem; 
}
.profile-avatar {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 9999px;
    border: 4px solid #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.doctor-meta li {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #495057;
    margin-bottom: .35rem;
}

/* Fallback for Bootstrap 5.1 if bg-primary-subtle isn't available */
.bg-primary-subtle { 
    background-color: rgba(13,110,253,.12) !important; 
}

@media (max-width: 576px) {
    .doctors-hero { padding: 3rem 0; min-height: 260px; }
    .profile-avatar { width: 96px; height: 96px; }
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}


/* Contact Page Styles */
.contact-hero-section {
    position: relative;
    min-height: 80vh;
    padding: 2rem;
    margin-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-container {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
    border-radius: 25px 25px 0 0;
}

.contact-header {
    text-align: center;
    position: relative;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    background: rgba(248, 249, 250, 0.5);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.15);
    background: white;
    transform: translateY(-2px);
}

/* Contact Information Column */
.contact-info-container {
    padding-left: 0;
    margin-top: 0;
}

.contact-info-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #4a90e2, #00d4ff);
    border-radius: 25px 25px 0 0;
}

.contact-map-card,
.contact-social-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-header,
.social-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-header h4,
.social-header h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-header p,
.social-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    width: 30px;
}

.social-link span {
    font-weight: 500;
}

/* Contact Form Radio Buttons */
.contact-form .form-check {
    margin-bottom: 0.75rem;
}

.contact-form .form-check-input[type="radio"] {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.contact-form .form-check-input[type="radio"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 1.5rem 1rem;
        margin-top: 70px;
    }

    .contact-form-container,
    .contact-info-card,
    .contact-map-card,
    .contact-social-card {
        padding: 2rem 1.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .contact-info-container {
        margin-top: 2rem;
        padding-left: 0;
    }

    .contact-title {
        font-size: 2rem;
    }

    .info-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 1rem 0.75rem;
        margin-top: 60px;
    }

    .contact-form-container,
    .contact-info-card,
    .contact-map-card,
    .contact-social-card {
        padding: 1.5rem 1rem;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .form-section-title {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
    }

    .header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .social-link {
        padding: 0.75rem;
    }

    .social-link i {
        font-size: 1.2rem;
        margin-right: 0.5rem;
    }
}

/* Brand Marquee Section */
.brand-marquee-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
    padding-left: 0;
    font-family: 'Righteous', 'Poppins', sans-serif;
}

.marquee-content:nth-child(2) {
    animation-delay: -20s;
}

.marquee-text {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marquee-icon {
    color: #4ade80;
    font-size: 1.5rem;
    margin: 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes marquee {
    0% {
        transform: translate3d(50%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Responsive marquee */
@media (max-width: 768px) {
    .marquee-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin: 0 30px;
    }
    
    .marquee-icon {
        font-size: 1.2rem;
        margin: 0 15px;
    }
    
    .marquee-content {
        animation: marquee 30s linear infinite;
    }
}

@media (max-width: 576px) {
    .brand-marquee-section {
        padding: 15px 0;
    }
    
    .marquee-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin: 0 20px;
    }
    
    .marquee-icon {
        font-size: 1rem;
        margin: 0 10px;
    }
    
    .marquee-content {
        animation: marquee 24s linear infinite;
    }
}

/* Event Banner Section */
.event-banner-section {
    margin: 0;
    padding: 2rem; /* Same padding as hero section */
    position: relative;
}

.event-banner-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 20px;
}

.event-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.507), rgba(0, 51, 102, 0.638));
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-banner-content {
    color: white;
    z-index: 2;
}

.event-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-banner-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for event banner */
@media (max-width: 768px) {
    .event-banner-section {
        padding: 1.5rem; /* Same as hero section tablet padding */
    }
    
    .event-banner-image-container {
        height: 250px;
    }
    
    .event-banner-title {
        font-size: 2rem;
    }
    
    .event-banner-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .event-banner-section {
        padding: 1rem; /* Same as hero section mobile padding */
    }
    
    .event-banner-image-container {
        height: 200px;
    }
    
    .event-banner-title {
        font-size: 1.8rem;
    }
    
    .event-banner-description {
        font-size: 0.9rem;
    }
}

/* Featured Services Section */
.featured-services-section {
    padding: 2rem; /* Same padding as hero section */
    /* background: #f8f9fa; */
    margin: 0;
}

.services-container {
    /* Custom container that matches hero section layout */
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.featured-item {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 25px 35px 25px;
    height: 240px; /* Reduced height by 25% */
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Reusable Service Card Background Classes */
.service-card-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.service-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* filter: blur(3px); */
    /* opacity: 0.4; */
    z-index: -1;
    transition: all 0.4s ease;
    /* Background image will be inherited from specific selectors */
}

.service-card-bg:hover::before {
    /* filter: blur(0px); - Removed blur effect */
    /* opacity: 0.8; - Removed opacity effect */
    transform: scale(1.05);
}

.service-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(44, 90, 160, 0.02) 0%,
        rgba(74, 144, 226, 0.05) 50%,
        rgba(44, 90, 160, 0.08) 100%);
    /* opacity: 0; - Removed opacity effect */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    border-radius: 30px;
}

.service-card-bg:hover::after {
    /* opacity: 1; - Removed opacity effect */
    background: linear-gradient(135deg, 
        rgba(44, 90, 160, 0.05) 0%,
        rgba(74, 144, 226, 0.08) 50%,
        rgba(44, 90, 160, 0.12) 100%);
}

/* Service Card Enhanced Icon and Text Effects */
.service-card-enhanced .featured-icon {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
}

.service-card-enhanced:hover .featured-icon {
    transform: scale(1.05) translateY(-3px);
}

.service-card-enhanced .icon-container {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.2);
}

.service-card-enhanced:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.service-card-enhanced .featured-icon i {
    transition: all 0.4s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.service-card-enhanced:hover .featured-icon i {
    transform: scale(1.1);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* SVG Icon Hover Effects */
.service-card-enhanced:hover .service-icon-svg {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.service-card-enhanced .featured-title h5 {
    transition: all 0.4s ease;
    color: var(--text-dark) !important;
    font-weight: 700;
    font-family: 'Righteous', 'Poppins', sans-serif;
    position: relative;
    z-index: 3;
    opacity: 1;
}

.service-card-enhanced:hover .featured-title h5 {
    color: var(--primary-color);
    transform: translateY(-2px);
    font-weight: 800;
    font-family: 'Righteous', 'Poppins', sans-serif;
    position: relative;
    z-index: 3;
    opacity: 1;
}

.service-card-enhanced .featured-subtitle {
    transition: all 0.4s ease;
    font-family: 'Khand', 'Poppins', sans-serif;
}

.service-card-enhanced:hover .featured-subtitle {
    color: var(--primary-color);
    transform: translateY(-1px);
    /* opacity: 1; */
    /* font-family: 'Khand', 'Poppins', sans-serif; */
}

.service-card-enhanced .featured-description {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-enhanced:hover .featured-description {
    color: var(--text-dark);
    opacity: 1;
    max-height: 120px;
    transform: translateY(0);
    margin-top: 12px;
    font-weight: 500;
}

/* Featured Description Layout and Animation */
.featured-desc {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card-enhanced .featured-desc {
    transform: translateY(0);
    opacity: 1;
}

.service-card-enhanced:hover .featured-desc {
    transform: translateY(-3px);
}

/* Staggered animation for content elements */
.service-card-enhanced .featured-subtitle {
    transition-delay: 0.1s;
}

.service-card-enhanced .featured-title {
    transition-delay: 0.15s;
}

.service-card-enhanced .featured-description {
    transition-delay: 0.2s;
}

/* Specific background images for each service */
#mri,
#mri::before {
    background-image: url('../images/mri-scanner.jpg');
    background-color: #e3f2fd; /* Fallback color */
    opacity: 0.3;
}

#xray,
#xray::before {
    background-image: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=400&h=300&fit=crop'), url('../images/xray-machine.jpg');
    background-color: #f3e5f5; /* Fallback color */
    opacity: 0.3;
}

#ctscan,
#ctscan::before {
    background-image: url('https://images.unsplash.com/photo-1581594693702-fbdc51b2763b?w=400&h=300&fit=crop'), url('../images/ct-scanner.jpg');
    background-color: #e8f5e8; /* Fallback color */
    opacity: 0.3;
}

#ultrasound,
#ultrasound::before {
    background-image: url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?w=400&h=300&fit=crop'), url('../images/ultrasound-machine.jpg');
    background-color: #fff3e0; /* Fallback color */
    opacity: 0.3;
}

/* Hover effects for non-clipped cards */
.featured-item:not(.style-1):hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(44, 90, 160, 0.15);
}

/* Enhanced hover effects for service cards */
.service-card-enhanced:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(44, 90, 160, 0.15);
}

/* Floating animation for icons */
@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

.service-card-enhanced:hover .icon-container {
    animation: float-icon 2s ease-in-out infinite;
}

/* Subtle parallax effect for background images */
.service-card-bg:hover::before {
    filter: blur(1px);
    opacity: 0.8;
    transform: scale(1.08) translateZ(0);
}

/* Hover effects for clipped cards - more precise detection */
.featured-item.style-1 .featured-icon:hover ~ .featured-item,
.featured-item.style-1 .featured-desc:hover ~ .featured-item,
.featured-item.style-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.1);
}


.featured-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #505501;
    letter-spacing: 1px;
}

.featured-icon {
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.2);
}

.icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.icon-container:hover::before {
    opacity: 1;
}

.featured-icon i {
    font-size: 32px;
    color: white;
    z-index: 1;
    transition: all 0.4s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* SVG Icon Styling */
.service-icon-svg {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.2)); /* Makes SVG white with shadow */
    z-index: 1;
    transition: all 0.4s ease;
}

.featured-subtitle {
    font-size: 10px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
    opacity: 1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.featured-title {
    margin-bottom: 12px;
    position: relative;
    z-index: 3;
}

.featured-title h5 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
    font-family: 'Righteous', 'Poppins', sans-serif;
    position: relative;
    z-index: 3;
}

.featured-description {
    font-size: 12px;
    color: white;
    line-height: 1.5;
    margin: 8px 0 0 0;
    opacity: 1;
    max-height: 100px;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button-style-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-bottom-right-radius: 30px; /* Match the card's border radius */
}

.button-style-2 svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.button-style-2 svg:first-child {
    opacity: 1;
    z-index: 1;
}

.button-style-2 svg:last-child {
    opacity: 0;
    z-index: 0;
}

.button-style-2:hover svg:first-child {
    opacity: 0;
}

.button-style-2:hover svg:last-child {
    opacity: 1;
}

.button-style-2-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--primary-color);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.button-style-2:hover .button-style-2-link {
    color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

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

.about-content {
    padding: 2rem 0;
}

.feature-list {
    margin: 2rem 0;
}

.feature-item {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark-color) !important;
    padding: 60px 0 20px 0;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer .brand-footer{
    color:#ffffff;
    font-size: 2rem;
    font-family: 'Righteous', 'Poppins', sans-serif;
}
.footer .text-muted {
    color: #adb5bd !important;
}

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

.footer a.text-muted:hover {
    color: var(--secondary-color) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    margin: 0 0.5rem 0.5rem 0;
}

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

/* Large Tablet Responsive Styles */
@media (max-width: 992px) {
    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.4rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
    
    .btn-primary {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Hero Section Improvements */
    .hero-section {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        min-width: 200px;
    }
    
    /* Services Section */
    .featured-services-section {
        padding: 4rem 1.5rem;
    }
    
    .featured-item {
        margin-bottom: 2rem;
    }
    
    .style-1 {
        height: 260px;
    }
    
    /* About Section */
    .about-section-modern {
        padding: 4rem 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .xray-container {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .stat-card-vertical {
        padding: 20px 0;
        margin-bottom: 25px;
    }
    
    .stat-circle-large {
        width: 80px;
        height: 80px;
    }
    
    .stat-number-large {
        font-size: 18px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 5rem 0;
    }
    
    .faq-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .faq-card h4 {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0;
    }
    
    .brand-footer {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero and Services sections */
    .hero-section {
        padding: 1.5rem; /* Reduced padding for tablet */
        margin-top: 70px; /* Adjusted top margin for tablet navbar */
    }
    
    .featured-services-section {
        padding: 1.5rem; /* Match hero section padding for tablet */
    }
    
    .style-1 {
        height: 240px; /* Slightly smaller height for tablet */
    }
    
    .swiper-slide {
        min-height: calc(70vh - 3rem); /* Reduced for tablet */
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-nav-control {
        bottom: 40px; /* Adjusted position considering padding */
        right: 40px;
    }
    
    /* About section */
    .about-section-modern {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .xray-container {
        height: 300px;
    }
    
    .stat-card-vertical {
        padding: 16px 0;
        margin-bottom: 20px;
        gap: 16px;
    }
    
    .stat-circle-large {
        width: 70px;
        height: 70px;
    }
    
    .stat-number-large {
        font-size: 16px;
    }
    
    .stat-title-vertical {
        font-size: 16px;
        font-family: 'Righteous', 'Poppins', sans-serif;
    }
    
    .stat-description-vertical {
        font-size: 13px;
        font-family: 'Share Tech', 'Poppins', sans-serif;
    }
    
    .nav-control-box {
        padding: 10px 20px;
        gap: 10px;
    }
    
    .nav-text {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .hero-bg-overlay {
        background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.85) 100%);
    }
    
    .hero-contact-card {
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
    }
    
    .floating-icons {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 1rem; /* Smaller padding for mobile */
        margin-top: 60px; /* Adjusted top margin for mobile navbar */
    }
    
    .featured-services-section {
        padding: 1rem; /* Match hero section padding for mobile */
    }
    
    /* Force 1 card per row on mobile */
    .featured-services-section .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .featured-item {
        margin-bottom: 1rem; /* Add spacing between cards on mobile */
    }
    
    .style-1 {
        height: 220px; /* Smaller height for mobile */
    }
    
    .swiper-slide {
        min-height: calc(65vh - 2rem); /* Reduced for mobile */
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .hero-nav-control {
        bottom: 30px; /* Adjusted position for mobile */
        right: 25px;
    }
    
    .nav-control-box {
        padding: 8px 16px;
    }
    
    .nav-text {
        font-size: 0.7rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-contact-card {
        margin-top: 1.5rem;
    }
    
    /* About Section Mobile */
    .about-section-modern {
        padding: 2.5rem 0;
    }
    
    .about-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .xray-container {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .stat-card-vertical {
        padding: 15px 0;
        margin-bottom: 15px;
        gap: 12px;
    }
    
    .stat-circle-large {
        width: 60px;
        height: 60px;
    }
    
    .stat-number-large {
        font-size: 14px;
    }
    
    .stat-title-vertical {
        font-size: 14px;
    }
    
    .stat-description-vertical {
        font-size: 12px;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-header .section-title {
        font-size: 1.8rem;
    }
    
    .faq-header .section-subtitle {
        font-size: 0.95rem;
    }
    
    .faq-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .faq-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Marquee Section Mobile */
    .brand-marquee-section {
        padding: 1.5rem 0;
    }
    
    .marquee-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .marquee-icon {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .brand-footer {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer .col-lg-3 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Hero Section Extra Small */
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-badge .badge-text {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Services Extra Small */
    .style-1 {
        height: 200px;
    }
    
    .featured-item .style-1 {
        padding: 1rem;
    }
    
    .featured-item h4 {
        font-size: 1.1rem;
    }
    
    .featured-item p {
        font-size: 0.85rem;
    }
    
    /* About Section Extra Small */
    .about-title {
        font-size: 1.4rem;
    }
    
    .xray-container {
        height: 200px;
    }
    
    /* FAQ Extra Small */
    .faq-header .section-title {
        font-size: 1.6rem;
    }
    
    .faq-card {
        padding: 1.2rem 0.8rem;
    }
    
    .faq-card h4 {
        font-size: 1rem;
    }
    
    .faq-card p {
        font-size: 0.85rem;
    }
    
    .faq-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Footer Extra Small */
    .brand-footer {
        font-size: 1rem;
    }
    
    .footer h5 {
        font-size: 1rem;
    }
    
    .footer p {
        font-size: 0.85rem;
    }
    
    /* Navigation Extra Small */
    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }
    
    .btn-primary {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .floating-card {
        display: none !important;
    }
    
    .hero-section,
    .services-section,
    .about-section,
    .doctors-section,
    .contact-section {
        padding: 20px 0 !important;
    }
}

/* Modern About Section Styles */
.about-section-modern {
    /* background-color: #f8f9fa; */
    padding: 2rem; /* Same padding as hero section */
}

.about-content-modern {
    padding-right: 30px;
}

.about-badge {
    display: inline-block;
    margin-bottom: 16px;
}

.about-badge .badge-text {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: 'Righteous', 'Poppins', sans-serif;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
    font-family: 'Khand', 'Poppins', sans-serif;
}

.about-features {
    margin-bottom: 40px;
    font-family: 'Khand', 'Poppins', sans-serif;
}

.feature-check {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
}

.feature-check i {
    font-size: 18px;
}

/* Image Container Styles */
.about-image-container {
    padding: 0 20px;
}

.xray-container {
    position: relative;
    width: 100%;
    height: 400px;
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
}

.xray-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(236, 244, 251, 1) 0%,
        rgba(236, 244, 251, 0.8) 15%,
        rgba(236, 244, 251, 0.3) 30%,
        rgba(236, 244, 251, 0.1) 45%,
        rgba(236, 244, 251, 0.1) 55%,
        rgba(236, 244, 251, 0.3) 70%,
        rgba(236, 244, 251, 0.8) 85%,
        rgba(236, 244, 251, 1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Floating X-ray Overlay Card */
.xray-overlay-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 150px;
    background: rgba(0, 57, 138, 0.633);
    border-radius: 20px;
    backdrop-filter: blur(3px);
    z-index: 2;
    animation: xray-float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xray-overlay-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 60, 130, 0.1) 0%,
        rgba(10, 60, 130, 0.05) 50%,
        rgba(10, 60, 130, 0.15) 100%);
    border-radius: 10px;
    z-index: -1;
}



@keyframes xray-float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px);
        opacity: 1;
    }
}

.xray-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) brightness(0.9);
    mix-blend-mode: multiply;
    position: relative;
    z-index: 0;
}

/* Analytics Section Styles */
.analytics-section {
    padding-left: 20px;
}

.stat-card-vertical {
    display: flex;
    align-items: center;
    padding: 24px 0;
    background: transparent;
    border: none;
    margin-bottom: 32px;
    gap: 24px;
}

.stat-card-vertical:last-child {
    margin-bottom: 0;
}

.stat-circle-large {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 25px solid transparent;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.stat-number-large {
    color: white;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Righteous', 'Poppins', sans-serif;
}

.stat-content-vertical {
    text-align: left;
    flex: 1;
}

.stat-title-vertical {
    font-size: 25px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Righteous', 'Poppins', sans-serif;
}

.stat-divider {
    width: 200px;
    height: 1px;
    background-color: var(--primary-color);
    border: none;
    margin: 12px 0;
    opacity: 0.5;
}

.stat-description-vertical {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-family: 'Share Tech', 'Poppins', sans-serif;
}

/* Responsive Design for 3-Column Layout */
@media (max-width: 992px) {
    .about-content-modern {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .about-image-container {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .analytics-section {
        padding-left: 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .stat-card-vertical {
        margin-bottom: 24px;
    }
}

/* Force service card titles to be visible */
.featured-item.service-card-enhanced .featured-title h5,
#mri .featured-title h5,
#xray .featured-title h5,
#ctscan .featured-title h5,
#ultrasound .featured-title h5 {
    color: #fdfdfb !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    z-index: 999 !important;
}

/* Reduce opacity for all service cards */
#mri,
#xray,
#ctscan,
#ultrasound {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#mri:hover,
#xray:hover,
#ctscan:hover,
#ultrasound:hover {
    opacity: 1;
}

/* Services Page Styles */
.services-hero-section {
    position: relative;
    min-height: 80vh; /* Same as hero section */
    padding: 2rem; /* Same padding as hero section */
    margin-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}


.services-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.services-description {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}



.services-list-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Righteous', 'Poppins', sans-serif;
}

.service-item {
    /* background: white; */
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-family: 'Khand', 'Poppins', sans-serif;
    
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid rgb(32, 32, 151);
}

.service-item.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.service-item.active .service-name {
    color: white;
    font-weight: 600;
}

.service-item.active .service-arrow {
    color: white;
}

.service-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.service-arrow {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-item:hover .service-arrow {
    transform: translateX(5px);
}

.services-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services-image-container:hover .services-main-image {
    transform: scale(1.05);
}

.services-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem;
}

.overlay-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-description {
    font-size: 1rem;
    opacity: 0.9;
}

/* Detailed Services Section */
.detailed-services-section {
    background: white;
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
}

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-card-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Styles for Services Page */
@media (max-width: 768px) {
    .services-hero-section {
        padding: 1.5rem; /* Same as hero section tablet padding */
        margin-top: 70px; /* Same as hero section tablet margin */
        min-height: auto;
    }

    .services-main-title {
        font-size: 2.5rem;
    }

    .services-main-image {
        height: 300px;
    }

    .services-image-overlay {
        padding: 1.5rem;
    }

    .overlay-title {
        font-size: 1.2rem;
    }

    .service-detail-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .services-hero-section {
        padding: 1rem; /* Same as hero section mobile padding */
        margin-top: 60px; /* Same as hero section mobile margin */
    }

    .services-main-title {
        font-size: 2rem;
    }

    .services-description {
        font-size: 1rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Booking Page Styles */
.booking-hero-section {
    position: relative;
    min-height: 80vh;
    padding: 2rem;
    margin-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-form-container {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #4a90e2, #00d4ff);
    border-radius: 25px 25px 0 0;
}

.booking-header {
    text-align: center;
    position: relative;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
}

.booking-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
}

.form-section-title i {
    color: var(--primary-color);
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    background: rgba(248, 249, 250, 0.5);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.15);
    background: white;
    transform: translateY(-2px);
}

.booking-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.custom-checkbox-group {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.custom-checkbox .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
}

.custom-checkbox .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox .form-check-label {
    font-weight: 500;
    color: #333;
    margin-left: 0.5rem;
}

.creative-btn {
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.creative-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.4);
}

.creative-btn .btn-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.creative-btn:hover .btn-arrow {
    opacity: 1;
    right: 1.5rem;
}

.creative-btn-outline {
    border: 2px solid #6c757d;
    color: #6c757d;
    padding: 1rem 2rem;
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: transparent;
}

.creative-btn-outline:hover {
    background: #ffc107;
    border-color: #ffc107;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* Booking Information Column */
.booking-info-container {
    padding-left: 0;
    margin-top: 0;
}

.booking-info-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
    border-radius: 25px 25px 0 0;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.info-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.info-text h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-text p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Emergency Card */
.emergency-card {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.3);
}

.emergency-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.emergency-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.emergency-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.emergency-card .btn-danger {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    font-weight: 600;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.emergency-card .btn-danger:hover {
    background: white;
    color: #dc3545;
    transform: translateY(-2px);
}

/* Date and Time Selection Styles */
.date-selection-container {
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.date-selection-container .row {
    flex-wrap: nowrap !important;
    gap: 0.75rem;
    padding: 0.5rem 0;
    min-width: 100%;
}

.date-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 130px;
    min-width: 140px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.date-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.2);
}

.date-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
}

.date-card.today {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.date-card.today.selected {
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    border-color: var(--primary-color);
}

.date-day {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.date-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.date-month {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
}

.today-label {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: #28a745;
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 1;
}

.date-card.selected .today-label {
    background: rgba(255, 255, 255, 0.3);
}

/* Time Slot Styles */
.time-slot-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.time-period-section {
    margin-bottom: 1.5rem;
}

.time-period-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.time-period-title .text-orange {
    color: #fd7e14 !important;
}

.time-slot-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.time-slot-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.15);
}

.time-slot-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.time-display {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.availability-status {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

.time-slot-card.selected .availability-status {
    opacity: 0.9;
}

/* Responsive adjustments for date and time selection */
@media (max-width: 768px) {
    .date-selection-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .date-selection-container .row {
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .date-card {
        min-height: 110px;
        min-width: 120px;
        padding: 1rem 0.75rem;
        flex-shrink: 0;
    }
    
    .date-number {
        font-size: 1.5rem;
    }
    
    .time-slot-container {
        padding: 1rem;
    }
    
    .time-slot-card {
        min-height: 70px;
        padding: 0.75rem;
    }
    
    .time-display {
        font-size: 1rem;
    }
    
    .time-period-title {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .date-selection-container .row {
        gap: 0.4rem;
        padding: 0.25rem;
    }
    
    .date-card {
        min-height: 100px;
        min-width: 100px;
        padding: 0.75rem 0.5rem;
    }
    
    .date-number {
        font-size: 1.3rem;
    }
    
    .date-day,
    .date-month {
        font-size: 0.8rem;
    }
    
    .time-slot-card {
        min-height: 60px;
        padding: 0.5rem;
    }
    
    .time-display {
        font-size: 0.9rem;
    }
    
    .availability-status {
        font-size: 0.7rem;
    }
    
    .today-label {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
        top: 0.25rem;
        right: 0.25rem;
    }
}

/* Mobile Padding for All Pages */
@media (max-width: 768px) {
    /* Navigation padding */
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Hero sections padding */
    .hero-section,
    .booking-hero-section,
    .services-hero-section {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-top: 85px;
    }
    
    /* Container padding for all sections */
    .container,
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Service cards padding */
    .service-card,
    .booking-info-card,
    .booking-form-container {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    /* Footer padding */
    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Brand marquee padding */
    .brand-marquee-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    /* Tighter padding for very small screens */
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-section,
    .booking-hero-section,
    .services-hero-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-top: 85px;
    }
    
    .container,
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .service-card,
    .booking-info-card,
    .booking-form-container {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }
    
    .footer .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .brand-marquee-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Responsive Styles for Booking Page */
@media (max-width: 768px) {
    .booking-hero-section {
        padding: 1.5rem 1rem;
        margin-top: 85px;
    }

    .booking-form-container,
    .booking-info-card {
        padding: 2rem 1.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .booking-info-container {
        margin-top: 2rem;
        padding-left: 0;
    }

    .booking-title {
        font-size: 2rem;
    }

    .info-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .emergency-card {
        padding: 2rem 1.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .booking-hero-section {
        padding: 1rem 0.75rem;
        margin-top: 85px;
    }

    .booking-form-container,
    .booking-info-card {
        padding: 1.5rem 1rem;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

    .booking-title {
        font-size: 1.8rem;
    }

    .form-section-title {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
    }

    .emergency-icon {
        font-size: 2rem;
    }

    .emergency-card {
        padding: 1.5rem 1rem;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

    .header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Follow Us Section Styles */
.follow-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.follow-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.05), rgba(231, 76, 60, 0.05), rgba(46, 204, 113, 0.05));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

.follow-us-header {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.follow-us-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.follow-us-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px 15px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-link:hover .social-name {
    color: white;
}

.social-link.facebook::before {
    background: #3b5998;
}

.social-link.facebook .social-icon {
    background: #3b5998;
}

.social-link.instagram::before {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-link.instagram .social-icon {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-link.twitter::before {
    background: #1da1f2;
}

.social-link.twitter .social-icon {
    background: #1da1f2;
}

.social-link.linkedin::before {
    background: #0077b5;
}

.social-link.linkedin .social-icon {
    background: #0077b5;
}

.social-link.youtube::before {
    background: #ff0000;
}

.social-link.youtube .social-icon {
    background: #ff0000;
}

.social-link.whatsapp::before {
    background: #25d366;
}

.social-link.whatsapp .social-icon {
    background: #25d366;
}

/* Mobile responsive for Follow Us */
@media (max-width: 768px) {
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .follow-us-section {
        padding: 25px 20px;
    }
    
    .social-link {
        padding: 15px 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .social-name {
        font-size: 0.85rem;
    }
    
    .follow-us-title {
        font-size: 1.1rem;
    }
    
    .follow-us-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .social-link {
        padding: 12px 8px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .social-name {
        font-size: 0.8rem;
    }
}

/* Modern FAQ Section Styles */
.modern-faq-section {
    /* padding: 100px 0; */
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #ecf4fb 100%);
    position: relative;
    overflow: hidden;
}

.modern-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(30, 136, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(15, 177, 209, 0.06) 0%, transparent 50%);
    background-size: 800px 800px, 600px 600px;
    animation: floatingBackground 25s ease-in-out infinite;
}

@keyframes floatingBackground {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%; 
        opacity: 1;
    }
    50% { 
        background-position: 100% 100%, 0% 0%; 
        opacity: 0.8;
    }
}

.faq-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(15, 177, 209, 0.15));
    color: #1e88e5;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(30, 136, 229, 0.2);
    box-shadow: 0 8px 32px rgba(30, 136, 229, 0.15);
    transition: all 0.3s ease;
}

.faq-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30, 136, 229, 0.25);
}

/* Modern FAQ Cards */
.modern-faq-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.modern-faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e88e5, #0fb1d1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.modern-faq-card:hover::before {
    transform: scaleX(1);
}

.modern-faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 136, 229, 0.15);
    border-color: rgba(30, 136, 229, 0.3);
}

/* FAQ Card Header */
.faq-card-header {
    padding: 30px;
    display: flex;
    align-items: center;
    position: relative;
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e88e5, #0fb1d1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
    transition: all 0.3s ease;
}

.modern-faq-card:hover .faq-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 136, 229, 0.4);
}

.faq-card-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e88e5;
    transition: all 0.3s ease;
}

.modern-faq-card[aria-expanded="true"] .faq-toggle {
    background: #1e88e5;
    color: white;
    transform: rotate(45deg);
}

/* FAQ Card Body */
.faq-card-body {
    padding: 0 30px 30px;
}

.faq-content {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8), rgba(236, 244, 251, 0.8));
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(30, 136, 229, 0.1);
}

.faq-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* FAQ List */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #495057;
    font-weight: 500;
}

.faq-list li i {
    color: #28a745;
    margin-right: 12px;
    font-size: 0.9rem;
}

/* Timing Grid */
.timing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.timing-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 136, 229, 0.1);
}

.scan-type {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.scan-duration {
    background: linear-gradient(135deg, #1e88e5, #0fb1d1);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Booking Options */
.booking-options {
    margin-top: 15px;
}

.booking-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
}

.booking-option:hover {
    transform: translateX(5px);
    border-color: rgba(30, 136, 229, 0.3);
}

.booking-option i {
    color: #1e88e5;
    margin-right: 12px;
    font-size: 1.1rem;
}

.booking-option.emergency {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-color: rgba(255, 193, 7, 0.3);
}

.booking-option.emergency i {
    color: #ff9800;
}

/* Checklist */
.checklist {
    margin-bottom: 20px;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateX(5px);
    border-color: rgba(30, 136, 229, 0.3);
}

.checklist-item i {
    color: #1e88e5;
    margin-right: 12px;
    font-size: 1.1rem;
}

.special-note {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(30, 136, 229, 0.1));
    border: 1px solid rgba(23, 162, 184, 0.3);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
}

.special-note i {
    color: #17a2b8;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Report Timeline */
.report-timeline {
    margin-bottom: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 136, 229, 0.1);
}

.timeline-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.timeline-badge.quick {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.timeline-badge.standard {
    background: linear-gradient(135deg, #1e88e5, #0fb1d1);
}

.timeline-content h6 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

/* Access Options */
.access-options {
    margin-top: 15px;
}

.access-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
}

.access-option:hover {
    transform: translateX(5px);
    border-color: rgba(30, 136, 229, 0.3);
}

.access-option i {
    color: #1e88e5;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Safety Features */
.safety-features {
    margin-top: 15px;
}

.safety-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
}

.safety-item:hover {
    transform: translateX(5px);
    border-color: rgba(40, 167, 69, 0.4);
}

.safety-item i {
    color: #28a745;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Enhanced FAQ CTA Section */
.enhanced-faq-cta {
    background: linear-gradient(135deg, #1e88e5 0%, #0fb1d1 100%);
    border-radius: 30px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 136, 229, 0.3);
    color: white;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.05) 70%, transparent 70%);
    background-size: 600px 600px, 400px 400px, 40px 40px;
    animation: ctaPattern 20s ease-in-out infinite;
}

@keyframes ctaPattern {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 0 0; 
        opacity: 1;
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 40px 40px; 
        opacity: 0.7;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.enhanced-faq-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
}

.cta-features {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-action-area {
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #1e88e5;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.contact-icon.chat {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.contact-card h6 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.contact-card p {
    margin-bottom: 20px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff !important;
    opacity: 1 !important;
}

.btn-call-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #1e88e5;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-call-primary:hover {
    background: white;
    color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-chat-primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-chat-primary:hover {
    background: linear-gradient(135deg, #218838, #1e9887);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.contact-divider {
    text-align: center;
    margin: 15px 0;
    position: relative;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.contact-divider span {
    background: linear-gradient(135deg, #1e88e5, #0fb1d1);
    padding: 0 15px;
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

/* Quick Contact Row */
.quick-contact-row {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.quick-contact-item i {
    font-size: 1.5rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info .label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .enhanced-faq-cta {
        padding: 40px 30px;
    }
    
    .enhanced-faq-cta h3 {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .quick-contact-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .enhanced-faq-cta {
        padding: 30px 20px;
    }
    
    .enhanced-faq-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-features {
        gap: 10px;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .quick-contact-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-contact-item {
        padding: 15px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
}

/* Remove old FAQ CTA styles */
.faq-cta-card {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-faq-section {
        padding: 60px 0;
    }
    
    .faq-card-header {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .faq-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .faq-card-body {
        padding: 0 20px 25px;
    }
    
    .timing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-cta-card {
        padding: 40px 25px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-badge {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Report Timeline */
.report-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.timeline-icon.fast {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.timeline-icon.medium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.timeline-icon::after {
    content: '⚡';
    font-size: 1.2rem;
}

.timeline-icon.medium::after {
    content: '⏱️';
}

.timeline-content h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 5px;
}

.timeline-content span {
    color: #6c757d;
    font-weight: 600;
}

/* Safety Features */
.safety-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.safety-item i {
    color: #e74c3c;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

/* Modern CTA */
.faq-cta-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(52, 152, 219, 0.1);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.08),
        0 8px 32px rgba(52, 152, 219, 0.06);
    position: relative;
    overflow: hidden;
}

.faq-cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(52, 152, 219, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.faq-cta-modern .cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(52, 152, 219, 0.2));
}

.faq-cta-modern h5 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-cta-modern p {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.25);
}

.btn-primary.cta-btn {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border: none;
    color: white;
}

.btn-outline-primary.cta-btn {
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid rgba(52, 152, 219, 0.3);
    color: #3498db;
}

.btn-outline-primary.cta-btn:hover {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header .section-title {
        font-size: 2.2rem;
    }
    
    .faq-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .faq-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-cta-modern {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .faq-header .section-title {
        font-size: 1.8rem;
    }
    
    .faq-card h4 {
        font-size: 1.2rem;
    }
    
    .faq-extra-content {
        padding: 20px 15px;
    }
}

/* ================================
   MODERN SERVICES PAGE STYLES
   ================================ */

/* Modern Hero Section */
.modern-hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon-3 {
    bottom: 30%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Modern Service Cards */
.service-card-modern {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-inner {
    position: relative;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    opacity: 0.1;
}

.service-icon {
    position: relative;
    font-size: 2.5rem;
    color: var(--primary-color);
    z-index: 2;
    line-height: 80px;
    text-align: center;
    width: 100%;
}

.service-title-modern {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-description-modern {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
}

/* Hover Overlay */
.service-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-hover-overlay {
    opacity: 1;
    transform: translateY(0);
}

.hover-content {
    text-align: center;
}

.hover-content h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hover-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.hover-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.hover-features i {
    color: #ffd700;
}

/* Features Showcase Section */
.features-showcase {
    padding: 80px 0;
}

.features-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.features-image {
    position: relative;
}

.image-overlay-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modern Marquee */
.modern-marquee-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px 0;
    overflow: hidden;
}

.marquee-wrapper {
    white-space: nowrap;
    overflow: hidden;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-right: 3rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.marquee-icon {
    font-size: 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card-modern {
        height: auto;
        min-height: 350px;
    }
    
    .features-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
}

/* Tilt Effect (for data-tilt attribute) */
[data-tilt] {
    transform-style: preserve-3d;
}

/* ================================
   ULTRA MODERN CTA SECTION
   ================================ */

/* ===== ULTRA MODERN CTA SECTION ===== */
.ultra-modern-cta-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    border-radius: 32px;
    overflow: hidden;
    padding: 0;
    margin: 80px 0;
    min-height: 500px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

/* Dynamic Background */
.cta-dynamic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Animated Mesh Gradient */
.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(79, 172, 254, 0.3) 0%, transparent 50%);
    animation: meshGradientMove 20s ease-in-out infinite;
}

@keyframes meshGradientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Floating Medical Icons */
.floating-medical-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.medical-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatMedical 8s ease-in-out infinite;
}

.medical-icon i {
    color: rgba(255, 255, 255, 0.7);
}

.medical-icon.icon-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    font-size: 24px;
}

.medical-icon.icon-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    font-size: 32px;
}

.medical-icon.icon-3 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 8%;
    animation-delay: 4s;
    font-size: 20px;
}

.medical-icon.icon-4 {
    width: 70px;
    height: 70px;
    bottom: 10%;
    right: 5%;
    animation-delay: 6s;
    font-size: 28px;
}

.medical-icon.icon-5 {
    width: 55px;
    height: 55px;
    top: 50%;
    left: 3%;
    animation-delay: 1s;
    font-size: 22px;
}

@keyframes floatMedical {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat 15s linear infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.4) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.3) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(199, 121, 208, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(30px, 30px) scale(1.05); }
}

/* Content Container */
.cta-content-container {
    position: relative;
    z-index: 10;
    padding: 60px 50px 40px;
    height: 100%;
}

/* Text Content */
.cta-text-content {
    position: relative;
    z-index: 12;
}

/* Premium Badge */
.premium-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 24px;
    overflow: hidden;
}

.badge-sparkle {
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: calc(100% + 4px);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
    0% { left: -100%; }
    100% { left: 100%; }
}

.badge-star {
    color: #ffd700;
    font-size: 16px;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.badge-label {
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Mega Title */
.cta-mega-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.rainbow-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffd93d, #ff6b9d);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowFlow 4s ease-in-out infinite;
}

@keyframes rainbowFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.highlight-box {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Engaging Subtitle */
.cta-engaging-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 500px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    color: #4ade80;
    font-size: 14px;
}

.trust-item span {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* Interactive Panel */
.cta-interactive-panel {
    position: relative;
    z-index: 12;
}

/* Contact Hub Primary */
.contact-hub-primary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 24px;
}

.hub-header {
    margin-bottom: 24px;
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Contact Options Grid */
.contact-options-grid {
    display: grid;
    gap: 20px;
}

.contact-card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card-premium:hover .card-bg-glow {
    opacity: 1;
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
}

.contact-icon-circle.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon-circle i {
    color: white;
    font-size: 24px;
}

.icon-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ring 3s linear infinite;
}

@keyframes ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.contact-info h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.phone-number {
    color: #4ade80;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.availability {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

/* Action Buttons */
.action-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.action-btn-modern.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.action-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn-modern:hover::before {
    left: 100%;
}

.action-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Quick Actions Strip */
.quick-actions-strip {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    min-width: 80px;
}

.quick-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    color: white;
    text-decoration: none;
}

.quick-action-btn i {
    font-size: 20px;
}

.quick-action-btn span {
    font-size: 12px;
    font-weight: 600;
}

.quick-action-btn.email:hover {
    border-color: #f59e0b;
}

.quick-action-btn.booking:hover {
    border-color: #10b981;
}

.quick-action-btn.chat:hover {
    border-color: #8b5cf6;
}

/* Info Banner */
.cta-info-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    z-index: 11;
}

.info-banner-content {
    overflow: hidden;
}

.info-items-scroll {
    display: flex;
    gap: 40px;
    animation: scrollInfo 20s linear infinite;
    white-space: nowrap;
}

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

.info-bubble {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    min-width: max-content;
}

.info-bubble i {
    color: #4ade80;
    font-size: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .cta-mega-title {
        font-size: 3rem;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .ultra-modern-cta-section {
        margin: 60px 0;
        min-height: auto;
    }
    
    .cta-content-container {
        padding: 40px 30px 30px;
    }
    
    .cta-mega-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .cta-engaging-subtitle {
        text-align: center;
        margin: 0 auto 24px;
    }
    
    .trust-indicators {
        justify-content: center;
        margin-bottom: 24px;
    }
    
    .contact-hub-primary {
        margin-top: 32px;
        padding: 24px;
    }
    
    .medical-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .ultra-modern-cta-section {
        border-radius: 20px;
        margin: 40px 0;
    }
    
    .cta-content-container {
        padding: 32px 20px 24px;
    }
    
    .cta-mega-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-engaging-subtitle {
        font-size: 1rem;
    }
    
    .trust-indicators {
        gap: 12px;
    }
    
    .trust-item {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .contact-hub-primary {
        padding: 20px;
    }
    
    .contact-card-premium {
        padding: 20px;
    }
    
    .quick-actions-strip {
        gap: 12px;
    }
    
    .quick-action-btn {
        padding: 12px 16px;
        min-width: 70px;
    }
    
    .info-items-scroll {
        gap: 24px;
    }
    
    .info-bubble {
        padding: 6px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cta-mega-title {
        font-size: 1.75rem;
    }
    
    .premium-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .contact-options-grid {
        gap: 16px;
    }
    
    .contact-card-premium {
        padding: 16px;
    }
    
    .action-btn-modern {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
}

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

.professional-cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffffff 100%);
    padding: 80px 0;
    margin: 80px 0;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 60px rgba(44, 90, 160, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.1);
    overflow: hidden;
}

.professional-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(44, 90, 160, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Badge */
.section-badge-professional {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.section-badge-professional i {
    font-size: 16px;
}

/* Title */
.cta-title-professional {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Description */
.cta-description-professional {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contact Info */
.contact-info-professional {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-professional {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.contact-icon-professional {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--secondary-color);
}

/* Action Card */
.cta-action-card-professional {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 90, 160, 0.15);
    border: 1px solid rgba(44, 90, 160, 0.1);
    overflow: hidden;
    position: relative;
}

.card-header-professional {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    text-align: center;
}

.card-header-professional i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.card-header-professional h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-header-professional p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.card-body-professional {
    padding: 30px;
}

/* Service Highlights */
.service-highlights {
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.highlight-item i {
    color: #28a745;
    font-size: 16px;
}

.highlight-item span {
    color: #666;
    font-size: 15px;
}

/* CTA Buttons */
.cta-buttons-professional {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-professional {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    border: none;
    font-size: 16px;
}

.btn-primary-professional:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
    color: white;
}

.btn-secondary-professional {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    font-size: 16px;
}

.btn-secondary-professional:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Info Banner */
.info-banner-professional {
    background: #f8fafc;
    padding: 18px 32px;
    border-radius: 16px;
    margin-top: 24px;
    margin-bottom: 8px;
    box-shadow: 0 2px 12px #1a237e0a;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.info-items {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #263238;
    font-size: 1.08rem;
    font-weight: 500;
    background: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    box-shadow: 0 1px 4px #1a237e11;
    margin: 6px 0;
    min-width: 210px;
    transition: box-shadow 0.2s;
}

.info-item i {
     color: #1976d2;
     font-size: 1.25em;
}
 .info-item span {
     font-weight: 500;
     font-size: 1em;
 }

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-banner-professional {
        padding: 14px 8px;
        border-radius: 10px;
    }
    .info-items {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .info-item {
        min-width: 0;
        width: 100%;
        font-size: 1rem;
        padding: 10px 12px;
        border-radius: 8px;
        justify-content: flex-start;
    }
    .info-item i {
        font-size: 1.1em;
    }
}
@media (max-width: 480px) {
    .info-banner-professional {
        padding: 8px 2px;
        border-radius: 7px;
    }
    .info-item {
        font-size: 0.98rem;
        padding: 8px 8px;
        border-radius: 6px;
    }
}

@media (max-width: 576px) {
    .professional-cta-section {
        padding: 40px 0;
        margin: 40px 0;
        border-radius: 16px;
    }
    
    .cta-title-professional {
        font-size: 1.75rem;
    }
    
    .card-header-professional,
    .card-body-professional {
        padding: 25px;
    }
    
    .contact-item-professional {
        padding: 12px 0;
    }
    
    .contact-icon-professional {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* ================================
   ENHANCED ABOUT SECTION
   ================================ */

.enhanced-about-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--accent-color) 50%, #ffffff 100%);
    padding: 120px 0;
    overflow: hidden;
}

/* Background Animation */
.about-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-particles {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), rgba(74, 144, 226, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.particle-4 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.particle-5 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

/* Section Header */
.section-badge-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    position: relative;
    z-index: 2;
}

.section-badge-enhanced i {
    font-size: 16px;
}

.section-title-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-enhanced {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Content Section */
.about-content-enhanced {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.about-story {
    margin-bottom: 50px;
}

.about-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Key Features Grid */
.key-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.feature-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 16px;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.feature-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Action Buttons */
.about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-enhanced-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    border: none;
}

.btn-enhanced-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
    color: white;
}

.btn-enhanced-secondary {
    background: white;
    color: var(--primary-color);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-enhanced-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Visual Section */
.about-visual-section {
    position: relative;
    z-index: 2;
}

/* Main Image Container */
.main-image-container {
    position: relative;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(44, 90, 160, 0.2);
    background: white;
    padding: 20px;
    max-height: 400px;
}

.main-about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(44, 90, 160, 0.9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.image-frame:hover .main-about-image {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Statistics Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card-modern {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(44, 90, 160, 0.2);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* Technology Badges */
.technology-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tech-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.tech-badge i {
    font-size: 16px;
}

/* Counter Animation */
.counter {
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .enhanced-about-section {
        padding: 80px 0;
    }
    
    .section-title-enhanced {
        font-size: 2.8rem;
    }
    
    .key-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .enhanced-about-section {
        padding: 60px 0;
    }
    
    .section-title-enhanced {
        font-size: 2.2rem;
    }
    
    .section-subtitle-enhanced {
        font-size: 1.1rem;
    }
    
    .about-heading {
        font-size: 1.6rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .feature-card-enhanced {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-enhanced-primary,
    .btn-enhanced-secondary {
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }
    
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .technology-badges {
        justify-content: center;
        gap: 10px;
    }
    
    .tech-badge {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Mobile Image Optimization */
    .main-image-container {
        max-width: 400px;
        margin-bottom: 30px;
    }
    
    .image-frame {
        padding: 15px;
        max-height: 320px;
    }
    
    .main-about-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .enhanced-about-section {
        padding: 40px 0;
    }
    
    .section-title-enhanced {
        font-size: 1.8rem;
    }
    
    .section-badge-enhanced {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .about-content-enhanced {
        padding: 20px 0;
    }
    
    .feature-card-enhanced {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card-modern {
        padding: 25px 15px;
    }
    
    .technology-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-badge {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    /* Small Mobile Image Optimization */
    .main-image-container {
        max-width: 320px;
        margin-bottom: 25px;
    }
    
    .image-frame {
        padding: 12px;
        max-height: 280px;
    }
    
    .main-about-image {
        height: 200px;
        border-radius: 12px;
    }
    
    .overlay-content i {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    
    .overlay-content span {
        font-size: 1rem;
    }
}

/* ================================
   MODERN CREATIVE ABOUT SECTION
   ================================ */

.modern-about-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #cbd5e1 50%, #94a3b8 75%, #64748b 100%);
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
    color: #1e293b;
}

/* Background Elements */
/* Disabled: About section floating background elements */
.modern-bg-elements { display: none !important; }

/* Disabled visual orbs */
.floating-orb { display: none !important; }

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: 14s;
}

@keyframes float-orbs {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* Disabled mesh gradient */
.mesh-gradient { display: none !important; }

@keyframes mesh-shift {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Creative Header */
.creative-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

/* Certified stamp at right side of About header */
.modern-about-section .creative-header .certified-stamp {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%) rotate(-8deg);
    width: 120px;
    height: 120px;
    background: url('/images/certified.jpg') center/cover no-repeat;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    opacity: 0.9;
    z-index: 1;
}

@media (max-width: 1200px) {
    .modern-about-section .creative-header .certified-stamp {
        width: 100px; height: 100px; transform: translate(40%, -50%) rotate(-8deg);
    }
}

@media (max-width: 992px) {
    .modern-about-section .creative-header .certified-stamp {
        width: 80px; height: 80px; transform: translate(30%, -50%) rotate(-8deg);
    }
}

@media (max-width: 768px) {
    .modern-about-section .creative-header .certified-stamp {
        display: none; /* hide on smaller screens to keep header compact */
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(44, 90, 160, 0.2);
    margin-bottom: 30px;
    animation: glow-pulse 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15); }
    50% { box-shadow: 0 12px 35px rgba(44, 90, 160, 0.25); }
}

.badge-icon {
    font-size: 18px;
    animation: rotate-icon 4s linear infinite;
    color: var(--primary-color);
}

@keyframes rotate-icon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.badge-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
}

.creative-title {
    margin: 0;
    line-height: 1.2;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 10px;
    animation: slide-up 1s ease-out;
}

.title-accent {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: slide-up 1s ease-out 0.2s both;
}

.title-tagline {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    color: #64748b;
    animation: slide-up 1s ease-out 0.4s both;
}

@keyframes slide-up {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Creative Content Grid */
.creative-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.creative-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.1);
}

.creative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(44, 90, 160, 0.05), transparent);
    animation: rotate-glow 8s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.creative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(44, 90, 160, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: icon-shine 3s ease-in-out infinite;
}

@keyframes icon-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.card-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Hero Story Specific */
.hero-story .card-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
}

.achievement-stats {
    display: flex;
    gap: 20px;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Technology Grid */
.tech-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-card {
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.08);
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.15);
}

.tech-card .tech-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    box-shadow: 0 6px 15px rgba(44, 90, 160, 0.3);
}

.tech-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tech-info p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.tech-status {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #64748b;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Experience Dashboard */
.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.08);
}

.dashboard-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.15);
}

.dashboard-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.dashboard-text h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.dashboard-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.quality-meter {
    margin-top: 10px;
    padding: 20px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.08);
}

.meter-label {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.meter-bar {
    width: 100%;
    height: 8px;
    background: rgba(203, 213, 225, 0.5);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    width: 0%;
    animation: fill-meter 3s ease-out;
    animation-fill-mode: forwards;
}

@keyframes fill-meter {
    0% { width: 0%; }
    100% { width: 98%; }
}

.meter-value {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Visual Center */
.visual-center {
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container-modern {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.center-image-modern {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8), rgba(74, 144, 226, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-frame:hover .image-overlay-modern {
    opacity: 1;
}

.image-frame:hover .center-image-modern {
    transform: scale(1.1);
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    animation: pulse-play 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-play {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.overlay-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.image-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.image-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.1);
}

.stat-icon {
    font-size: 18px;
}

.stat-text {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Modern CTA */
.modern-cta {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 90, 160, 0.05) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(44, 90, 160, 0.05) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(44, 90, 160, 0.05) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(44, 90, 160, 0.05) 75%);
    background-size: 30px 30px;
    opacity: 0.3;
    animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(30px) translateY(30px); }
}

.cta-content-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}

.cta-actions-modern {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-modern.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
}

.btn-modern.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.15);
}

.btn-modern.tertiary {
    background: linear-gradient(135deg, var(--secondary-color), #8b5cf6);
    color: white;
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.4);
}

.btn-modern.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .creative-content-grid {
        gap: 25px;
    }
    
    .modern-cta {
        padding: 40px;
    }
    
    .cta-content-modern {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .title-main {
        font-size: 3rem;
    }
    
    .title-accent {
        font-size: 2.4rem;
    }
    
    .title-tagline {
        font-size: 1.2rem;
    }
    
    .creative-content-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    
    .visual-center {
        grid-row: auto;
    }
    
    .tech-grid-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .achievement-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-content-modern {
        flex-direction: column;
        gap: 25px;
    }
    
    .cta-actions-modern {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-about-section {
        padding: 60px 0;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-accent {
        font-size: 2rem;
    }
    
    .title-tagline {
        font-size: 1.1rem;
    }
    
    .creative-card {
        padding: 25px;
        border-radius: 20px;
    }
    
    .card-header {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 15px;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
    }
    
    .modern-cta {
        padding: 30px;
        border-radius: 20px;
    }
    
    .cta-text h4 {
        font-size: 1.6rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-actions-modern {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-modern {
        padding: 12px 24px;
        justify-content: center;
    }
    
    .image-container-modern {
        max-width: 300px;
    }
    
    .center-image-modern {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .modern-about-section {
        padding: 40px 0;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-accent {
        font-size: 1.6rem;
    }
    
    .title-tagline {
        font-size: 1rem;
    }
    
    .creative-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .section-badge {
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    
    .badge-text {
        font-size: 13px;
    }
    
    .creative-header {
        margin-bottom: 50px;
    }
    
    .modern-cta {
        padding: 25px;
        margin-bottom: 50px;
    }
    
    .cta-text h4 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .cta-text p {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .tech-card {
        padding: 15px;
        border-radius: 12px;
    }
    
    .tech-card .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
        margin-bottom: 12px;
    }
    
    .tech-info h5 {
        font-size: 1rem;
    }
    
    .tech-info p {
        font-size: 12px;
    }
    
    .dashboard-item {
        padding: 12px;
        border-radius: 10px;
    }
    
    .dashboard-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .dashboard-text h6 {
        font-size: 0.9rem;
    }
    
    .dashboard-text p {
        font-size: 12px;
    }
    
    .quality-meter {
        padding: 15px;
        border-radius: 10px;
    }
    
    .meter-label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .meter-value {
        font-size: 14px;
    }
    
    .image-container-modern {
        max-width: 250px;
    }
    
    .center-image-modern {
        height: 200px;
    }
    
    .image-frame {
        border-radius: 16px;
        border-width: 2px;
    }
    
    .image-stat {
        padding: 8px 12px;
        border-radius: 8px;
    }
    
    .stat-text {
        font-size: 13px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .overlay-text {
        font-size: 14px;
    }
    
    .orb-1, .orb-2, .orb-3 {
        opacity: 0.3;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .modern-about-section {
        padding: 80px 0;
    }
    
    .title-main {
        font-size: 2.8rem;
    }
    
    .title-accent {
        font-size: 2.2rem;
    }
    
    .creative-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .visual-center {
        grid-row: span 1;
        order: -1;
    }
    
    .cta-content-modern {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-actions-modern {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-about-section {
        padding: 60px 0;
    }
    
    .title-main {
        font-size: 2.4rem;
    }
    
    .title-accent {
        font-size: 1.8rem;
    }
    
    .creative-card {
        padding: 25px;
    }
    
    .tech-grid-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .achievement-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .modern-cta {
        padding: 35px;
    }
    
    .cta-text h4 {
        font-size: 1.6rem;
    }
    
    .cta-actions-modern {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modern-about-section {
        padding: 40px 0;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-accent {
        font-size: 1.6rem;
    }
    
    .creative-header {
        margin-bottom: 50px;
    }
    
    .creative-content-grid {
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .creative-card {
        padding: 20px;
    }
    
    .card-header {
        gap: 15px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .modern-cta {
        padding: 25px;
    }
    
    .center-image-modern {
        height: 250px;
    }
}

/* End of Modern Creative About Section */


/* Clinical About Section (clean, light, professional) */
.about-clinical {
    margin-top: 0;
    margin-bottom: 40px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(44, 90, 160, 0.08);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid rgba(44, 90, 160, 0.15);
}

.about-title {
    color: var(--primary-color);
    font-weight: 800;
}

.about-lead {
    color: #475569;
    font-size: 1.05rem;
    margin-top: 8px;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.about-list-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(44, 90, 160, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.08);
}

.about-list-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(44,90,160,.1), rgba(74,144,226,.08));
    border: 1px solid rgba(44, 90, 160, 0.15);
}

.about-list-text h6 {
    margin: 0 0 4px 0;
    color: var(--dark-color);
    font-weight: 700;
}

.about-list-text p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-stat {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(44, 90, 160, 0.12);
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(44, 90, 160, 0.06);
}

.about-stat .stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.about-stat .stat-label {
    margin-top: 6px;
    font-size: 12px;
    color: #475569;
}

.about-image-wrap {
    position: relative;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(44, 90, 160, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(44, 90, 160, 0.12);
}

.about-image {
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(44, 90, 160, 0.15);
}

.about-image-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(44, 90, 160, 0.2);
    font-size: 12px;
    font-weight: 700;
}

.about-equipment-card {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(44, 90, 160, 0.2);
    padding: 10px 14px;
    border-radius: 12px;
    color: #334155;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(44, 90, 160, 0.12);
}

.about-equipment-card .dot {
    margin: 0 8px;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .about-equipment-card {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(44, 90, 160, 0.2);
    padding: 10px 14px;
    border-radius: 12px;
    color: #334155;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(44, 90, 160, 0.12);
    width: 90%;
}
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    }
    .about-list-item { grid-template-columns: 40px 1fr; }
    .about-list-icon { width: 40px; height: 40px; }
}

@media (max-width: 576px) {
    .about-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* Compact spacing overrides for About section */
.modern-about-section {
    min-height: auto;            /* override 100vh */
    padding: 64px 0;            /* tighter base padding */
}

.modern-about-section .creative-header {
    margin-bottom: 40px;        /* was ~80px */
}

.modern-about-section .about-clinical.row {
    /* Reduce Bootstrap gutters for this row only (Bootstrap 5) */
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.modern-about-section .modern-cta {
    padding: 32px;              /* from 50px */
}

.modern-about-section .cta-content-modern {
    gap: 20px;                  /* from 40px */
}

.modern-about-section .cta-actions-modern { gap: 10px; }
.modern-about-section .btn-modern { padding: 12px 22px; }


.time-slot-card.disabled {
    background-color: #e0e0e0;
    color: #888;
    pointer-events: none;
    cursor: not-allowed;
}

