/* ============================================
   Modern Medical Website - Main Stylesheet
   Dr. Shyam Mohan - Urologist & Robotic Surgeon
   ============================================ */

/* ===== Override AOS to make all sections visible ===== */
[data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* ===== CSS Variables (Design System) ===== */
:root {
    /* Primary Colors - Medical Blue/Teal */
    --primary-color: #0066CC;
    --primary-dark: #0052A3;
    --primary-light: #3385D6;
    --primary-lighter: #E6F2FF;
    
    /* Secondary Colors */
    --secondary-color: #00A896;
    --secondary-dark: #008B7A;
    --secondary-light: #33B8AA;
    
    /* Accent Colors */
    --accent-color: #00D4AA;
    --accent-light: #E6FFF9;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #999999;
    --gray-lighter: #CCCCCC;
    --gray-lightest: #F5F5F5;
    --gray-bg: #FAFAFA;
    
    /* Status Colors */
    --success-color: #28A745;
    --warning-color: #FFC107;
    --error-color: #DC3545;
    --info-color: #17A2B8;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Font Sizes */
    --fs-xs: 0.75rem;    /* 12px */
    --fs-sm: 0.875rem;   /* 14px */
    --fs-base: 1rem;     /* 16px */
    --fs-lg: 1.125rem;   /* 18px */
    --fs-xl: 1.25rem;    /* 20px */
    --fs-2xl: 1.5rem;    /* 24px */
    --fs-3xl: 1.875rem;  /* 30px */
    --fs-4xl: 2.25rem;   /* 36px */
    --fs-5xl: 3rem;      /* 48px */
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Z-Index Layers */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-floating: 1080;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-medium);
}

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



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

/* ===== Top Bar ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: var(--spacing-sm) 0;
    font-size: var(--fs-sm);
}

.top-bar-left {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.top-bar-link {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: opacity var(--transition-fast);
}

.top-bar-link:hover {
    color: var(--white);
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
}

.social-link {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== New Main Header / Navigation ===== */
.main-header-new {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar-new {
    padding: var(--spacing-md) var(--spacing-xl);
    background: #f0f8ff;
}

.navbar-new .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.navbar-new .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand-new {
    display: flex;
    align-items: center;
    padding: 0;
    flex-shrink: 0;
}

.logo-img-new {
    height: 80px;
    width: auto;
    transition: transform var(--transition-base);
}

.logo-img-new:hover {
    transform: scale(1.05);
}

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

.nav-item-new {
    position: relative;
}

.nav-link-new {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: var(--fs-base);
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link-new.active {
    color: #0066CC;
    font-weight: 600;
}



/* Modern Dropdown Styles */
.dropdown-new {
    position: relative;
}

.dropdown-toggle-new {
    cursor: pointer;
    position: relative;
    user-select: none;
}

.dropdown-toggle-new .dropdown-icon {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    vertical-align: middle;
}

.dropdown-new:hover .dropdown-toggle-new .dropdown-icon,
.dropdown-new.show .dropdown-toggle-new .dropdown-icon,
.dropdown-toggle-new[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown toggle hover effect */
.dropdown-toggle-new:hover {
    color: #0066CC;
}

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: linear-gradient(135deg, #1a5098 0%, #3e76c3 50%, #1a5098 100%);
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown-new:hover .dropdown-menu-new,
.dropdown-new.show .dropdown-menu-new,
.dropdown-menu-new.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    display: block;
}

.dropdown-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    border-left: 3px solid transparent;
}

.dropdown-item-new i {
    font-size: 6px;
    color: #0066CC;
    opacity: 0;
    transition: all 0.25s ease;
    transform: translateX(-8px);
}

.dropdown-item-new span {
    flex: 1;
    transition: transform 0.25s ease;
}

.dropdown-item-new:hover {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 168, 150, 0.05) 100%);
    color: #fbfdff;
    border-left-color: #e25252;
    padding-left: 24px;
    transform: translateX(4px);
}

.dropdown-item-new:hover i {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-item-new:hover span {
    transform: translateX(2px);
}

.dropdown-item-new:active {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 168, 150, 0.08) 100%);
    transform: translateX(2px);
}

/* Dropdown divider */
.dropdown-menu-new li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Active state */
.dropdown-item-new.active {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 150, 0.06) 100%);
    color: #0066CC;
    border-left-color: #0066CC;
    font-weight: 600;
}

.dropdown-item-new.active i {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Dropdown Styles */
@media (max-width: 991.98px) {
    .dropdown-new {
        width: 100%;
    }
    
    .dropdown-toggle-new {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px !important;
    }
    
    .dropdown-menu-new {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(0, 102, 204, 0.03) !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease !important;
        min-width: auto !important;
        max-width: none !important;
        width: 100% !important;
        display: block !important;
    }
    
    .dropdown-new.show .dropdown-menu-new,
    .dropdown-menu-new.show {
        max-height: 1000px !important;
        padding: 8px 0 !important;
        overflow: visible !important;
    }
    
    .dropdown-item-new {
        padding: 14px 40px !important;
        font-size: 15px !important;
        color: #555 !important;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
        transform: none !important;
        display: flex !important;
        align-items: center;
        gap: 12px;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .dropdown-item-new:hover,
    .dropdown-item-new:active {
        background: rgba(0, 102, 204, 0.08) !important;
        color: #0066CC !important;
        border-left-color: #0066CC;
        padding-left: 48px !important;
        transform: translateX(4px) !important;
    }
    
    .dropdown-item-new i {
        opacity: 0.6 !important;
        transform: translateX(0) !important;
        font-size: 8px !important;
        display: inline-block !important;
    }
    
    .dropdown-item-new:hover i,
    .dropdown-item-new:active i {
        opacity: 1 !important;
    }
    
    .dropdown-toggle-new .dropdown-icon {
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .dropdown-new.show .dropdown-toggle-new .dropdown-icon,
    .dropdown-toggle-new[aria-expanded="true"] .dropdown-icon {
        transform: rotate(180deg) !important;
    }
    
    .dropdown-menu-new li {
        width: 100%;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .dropdown-menu-new li:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Ensure dropdown is always visible when parent nav is open */
    .navbar-collapse-new.show .dropdown-menu-new {
        display: block !important;
    }
    
    /* Make sure dropdown items are visible */
    .navbar-collapse-new.show .dropdown-item-new {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure dropdown toggle is visible and clickable */
    .navbar-collapse-new.show .dropdown-toggle-new {
        pointer-events: auto;
        cursor: pointer;
    }
    
    /* Prevent Bootstrap from hiding dropdown on mobile */
    .navbar-collapse-new.show .dropdown-menu-new[aria-labelledby="servicesDropdown"] {
        display: block !important;
    }
    
    /* Ensure dropdown toggle is always visible in mobile menu */
    .navbar-collapse-new.show .dropdown-toggle-new {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Make dropdown items visible when dropdown is open */
    .dropdown-new.show .dropdown-item-new,
    .dropdown-menu-new.show .dropdown-item-new {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
    }
    
    /* Ensure list items are visible */
    .dropdown-new.show .dropdown-menu-new li,
    .dropdown-menu-new.show li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.btn-find-store {
    background: linear-gradient(123deg, #c05d5d, #eb4f4f);
    color: var(--white) !important;
    padding: var(--spacing-sm) var(--spacing-xl) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition-base);
}

.btn-find-store:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.navbar-toggler-new {
    border: none;
    padding: 10px 8px;
    background: transparent;
    cursor: pointer;
    display: none;
    order: 2;
    margin-left: auto;
    align-self: center;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler-new:focus {
    outline: 2px solid rgba(0, 102, 204, 0.3);
    outline-offset: 2px;
    border-radius: 4px;
}

.navbar-toggler-new:hover {
    transform: scale(1.05);
}

.navbar-new .navbar-collapse-new {
    order: 3;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Ensure navbar is visible on desktop (lg and above) */
@media (min-width: 992px) {
    .navbar-toggler-new {
        display: none !important;
    }
    
    .navbar-new .navbar-collapse-new {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        align-items: center;
        max-height: none !important;
        opacity: 1 !important;
    }
    
    .navbar-nav-new {
        flex-direction: row;
        margin-left: auto;
    }
}

.navbar-toggler-icon-new {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gray-dark);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar-toggler-icon-new::before,
.navbar-toggler-icon-new::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--gray-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    left: 0;
}

.navbar-toggler-icon-new::before {
    top: -10px;
    transform-origin: center;
}

.navbar-toggler-icon-new::after {
    bottom: -10px;
    transform-origin: center;
}

/* Hamburger to X animation when menu is open */
.navbar-toggler-new[aria-expanded="true"] .navbar-toggler-icon-new,
.navbar-toggler-new.active .navbar-toggler-icon-new {
    background: transparent;
}

.navbar-toggler-new[aria-expanded="true"] .navbar-toggler-icon-new::before,
.navbar-toggler-new.active .navbar-toggler-icon-new::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler-new[aria-expanded="true"] .navbar-toggler-icon-new::after,
.navbar-toggler-new.active .navbar-toggler-icon-new::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Show toggle button on mobile */
@media (max-width: 991.98px) {
    .navbar-toggler-new {
        display: flex !important;
    }
    
    .navbar-new .container {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-new .container-fluid {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-brand-new {
        order: 1;
        flex-shrink: 0;
        margin-right: auto;
    }
    
    .navbar-toggler-new {
        order: 2;
        margin-left: auto;
        margin-right: 0;
    }
    
    .navbar-collapse-new {
        order: 3;
        width: 100%;
        flex-basis: 100%;
        display: block !important;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding-top: 0;
        margin-top: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease 0.1s,
                    padding-top 0.3s ease,
                    margin-top 0.3s ease;
    }
    
    .navbar-collapse-new.collapsing {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease,
                    padding-top 0.3s ease,
                    margin-top 0.3s ease;
    }
    
    .navbar-collapse-new.show,
    .navbar-collapse-new.collapse.show {
        max-height: 3000px;
        opacity: 1;
        padding-top: 15px;
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease,
                    padding-top 0.3s ease,
                    margin-top 0.3s ease;
    }
    
    .navbar-nav-new {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
    }
    
    .nav-item-new {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-item-new:last-child {
        border-bottom: none;
    }
    
    .nav-link-new {
        width: 100%;
        padding: 18px 20px !important;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 54px;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--gray-dark);
        position: relative;
    }
    
    .nav-link-new::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
        transform: scaleY(0);
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link-new:hover,
    .nav-link-new:focus {
        background: rgba(0, 102, 204, 0.05);
        color: var(--primary-color);
        padding-left: 28px !important;
    }
    
    .nav-link-new:hover::after,
    .nav-link-new:focus::after {
        transform: scaleY(1);
    }
    
    .nav-link-new.active {
        background: rgba(0, 102, 204, 0.08);
        color: var(--primary-color);
        font-weight: 600;
        padding-left: 28px !important;
    }
    
    .nav-link-new.active::after {
        transform: scaleY(1);
    }
    
    .btn-find-store {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        padding: 16px 24px !important;
        font-size: 16px;
        border-radius: 8px;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    /* Ensure menu is above everything on mobile */
    .navbar-collapse-new.show {
        z-index: 1000;
        position: relative;
    }
    
    .navbar-toggler-new {
        z-index: 1001;
        position: relative;
    }
}

/* Legacy styles for backward compatibility */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

.navbar {
    padding: var(--spacing-md) 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-base);
}

.nav-link {
    color: var(--gray-dark);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md) !important;
    transition: color var(--transition-fast);
}

.btn-appointment {
    margin-left: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-lg) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    white-space: nowrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
    font-size: var(--fs-base);
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn-outline-primary i {
    margin-left: var(--spacing-sm);
    transition: transform var(--transition-base);
}

.btn-outline-primary:hover i {
    transform: translateX(5px);
}

.btn-lg {
    padding: 12px 20px;
    border-radius: 25px;
    font-size: var(--fs-lg);
}

/* ===== Split Hero Section ===== */
.hero-split-section {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: stretch;
    overflow: hidden;
}
a.btn_ {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1em;
    font-weight: 700;
}

.hero-split-container {
    display: flex;
    width: 100%;
    /* min-height: 100vh; */
    max-height: 90vh!important;
}

/* Left Section - Content */
.hero-left-section {
    flex: 1;
    background: #d6e1ef;
    background-image: url('https://s3.ap-south-1.amazonaws.com/cdn1.cr/dr-shyam-mohan/dr-shyam-mohan-banner-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) var(--spacing-2xl);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-left-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(60, 129, 223, 0.85) 0%, 
        rgba(52, 74, 104, 0.75) 50%,
        rgba(26, 80, 152, 0.8) 100%);
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, 
            rgba(60, 129, 223, 0.85) 0%, 
            rgba(52, 74, 104, 0.75) 50%,
            rgba(26, 80, 152, 0.8) 100%);
    }
    50% {
        background: linear-gradient(135deg, 
            rgba(52, 74, 104, 0.75) 0%, 
            rgba(26, 80, 152, 0.8) 50%,
            rgba(60, 129, 223, 0.85) 100%);
    }
}

.hero-left-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 168, 150, 0.15) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.hero-left-content {
    max-width: 650px;
    color: var(--white);
    position: relative;
    z-index: 3;
    width: 100%;
    animation: fadeInUp 0.8s ease;
}

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

.hero-logo-text {
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 4;
}

.hero-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 4;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-headline {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 4;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-slogan {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 4;
    background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: fadeInUp 0.8s ease 0.4s both, gradientMove 3s ease infinite;
}

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

.hero-left-content h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-2xl);
    padding: 10px 24px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-left-content h3:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-align: left;
    position: relative;
    z-index: 4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-tagline .tagline-separator {
    color: var(--accent-color);
    margin: 0 0.75em;
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.4);
}

.hero-description {
    font-size: var(--fs-lg);
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: var(--spacing-2xl);
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.5), 0 2px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 4;
    font-weight: 500;
}

.hero-badge-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    /* gap: var(--spacing-lg); */
    /* padding: 18px 24px; */
    /* background: rgba(255, 255, 255, 0.15); */
    /* border-radius: 16px; */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 4;
}

.hero-badge-item::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;
}

.hero-badge-item:hover::before {
    left: 100%;
}

.hero-badge-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-badge-item i {
    color: #ffffff;
    font-size: 1.4rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00a896 0%, #008f7a 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-badge-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 168, 150, 0.5);
}

.hero-badge-item span {
    font-size: 1rem;
    font-weight: 600;
    padding-left: 10px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    flex: 1;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(123deg, #c05d5d, #eb4f4f);
    background-size: 200% auto;
    color: var(--white);
    padding: 11px 27px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(26, 80, 152, 0.4), 
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 4;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-cta-button::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;
}

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

.hero-cta-button:hover {
    transform: translateY(-4px);
    background-position: right center;
    box-shadow: 0 12px 40px rgba(26, 80, 152, 0.5), 
                0 6px 20px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero-cta-button:active {
    transform: translateY(-2px);
}

.hero-cta-button::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.hero-cta-button:hover::after {
    transform: translateX(4px);
}

/* Right Section - Image */
.hero-right-section {
    flex: 1;
    position: relative;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: var(--spacing-3xl); */
}

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

.hero-tiled-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(60deg, transparent, transparent 50px, rgba(0, 0, 0, 0.03) 50px, rgba(0, 0, 0, 0.03) 100px),
        repeating-linear-gradient(-60deg, transparent, transparent 50px, rgba(0, 0, 0, 0.03) 50px, rgba(0, 0, 0, 0.03) 100px);
    opacity: 0.5;
    z-index: 1;
}

.hero-main-image {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
}

.hero-doctor-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Modern Carousel Badge */
.hero-image-badge-carousel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 3;
    /* border-radius: var(--radius-xl); */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.badge-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.05);
    /* border-radius: var(--radius-xl); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.badge-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(175deg, rgb(124 155 197) 0%, rgb(26 80 152 / 74%) 100%); */
    z-index: 1;
    border-radius: var(--radius-xl);
}

.badge-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    color: var(--white);
    text-align: center;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.7) 30%, 
        rgba(0, 0, 0, 0.4) 60%, 
        rgba(0, 0, 0, 0) 100%);

}

.badge-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge-carousel-slide.active .badge-icon-circle {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.badge-icon-circle i {
    font-size: var(--fs-2xl);
    color: var(--white);
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    width: 100%;
    padding-bottom: 60px;
    gap: var(--spacing-md);
}

/* Legacy badge styles for backward compatibility */
.badge-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.badge-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

/* New Badge Banner Styles */
.badge-headline {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    margin-bottom: var(--spacing-sm);
}

.badge-subline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    margin: 0;
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
}

.badge-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a5098 0%, #3c81df 50%, #1a5098 100%);
    background-size: 200% auto;
    color: var(--white);
    padding: 14px 28px;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(26, 80, 152, 0.4), 
                0 3px 10px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
    margin-top: var(--spacing-sm);
}

.badge-cta-button::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;
}

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

.badge-cta-button:hover {
    transform: translateY(-2px);
    background-position: right center;
    box-shadow: 0 8px 25px rgba(26, 80, 152, 0.5), 
                0 4px 15px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.badge-cta-button:active {
    transform: translateY(0);
}

.badge-cta-button::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 4px;
}

.badge-cta-button:hover::after {
    transform: translateX(4px);
}

/* Carousel Indicators */
.badge-carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.badge-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.badge-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.badge-indicator.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Legacy badge styles for backward compatibility */
.hero-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #00a896;
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 168, 150, 0.3);
    z-index: 3;
    min-width: 200px;
}

/* Legacy carousel styles (kept for backward compatibility) */
.modern-hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: none;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 102, 204, 0.4) 100%);
    z-index: 1;
}

.hero-slide-item .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-content {
    color: var(--white);
    padding: var(--spacing-3xl) 0;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge-modern i {
    font-size: var(--fs-base);
}

.hero-title-modern {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-highlight {
    background: linear-gradient(135deg, #FFFFFF, #E6F2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-accent {
    color: var(--accent-color);
    display: block;
    margin-top: var(--spacing-xs);
}

.hero-subtitle-modern {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle-modern i {
    color: var(--accent-color);
    font-size: var(--fs-lg);
}

.hero-description-modern {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats-modern {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-features-modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
    font-size: var(--fs-lg);
}

.feature-item i {
    color: var(--accent-color);
    font-size: var(--fs-xl);
}

.hero-buttons-modern {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-buttons-modern .btn {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--fs-lg);
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
}

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

.hero-buttons-modern .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
}

.hero-buttons-modern .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons-modern .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--fs-xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: var(--spacing-xl);
}

.carousel-next {
    right: var(--spacing-xl);
}

/* Pagination Dots */
.carousel-pagination {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.pagination-dot.active {
    background: var(--white);
    border-color: var(--white);
    width: 30px;
    border-radius: var(--radius-lg);
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.scroll-indicator-modern {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 500;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow-modern {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow-modern i {
    color: var(--white);
    animation: scrollDown 1.5s ease-in-out infinite;
}

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

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

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(5px); opacity: 0.5; }
}

.hero-slide {
    position: relative;

    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-3xl) 0;
}

/* Animated Background Pattern */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 168, 150, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 212, 170, 0.06) 0%, transparent 50%);
    animation: heroPatternMove 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes heroPatternMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

/* Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 168, 150, 0.1));
    filter: blur(60px);
    z-index: 0;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float 20s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 10%;
    animation: float 18s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(230, 242, 255, 0.7) 100%);
    z-index: 1;
}

.hero-slider .container {
    position: relative;
    z-index: 2;
}

/* Trust Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-badge i {
    font-size: var(--fs-base);
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-title-accent {
    color: var(--primary-dark);
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.3;
    border-radius: var(--radius-sm);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.hero-subtitle i {
    color: var(--success-color);
    font-size: var(--fs-lg);
}

/* Hero Description */
.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--gray-medium);
    margin-bottom: var(--spacing-xl);
    max-width: 650px;
    line-height: 1.8;
    font-weight: 400;
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-lightest);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.trust-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--accent-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    color: var(--primary-color);
    font-size: var(--fs-lg);
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.trust-label {
    font-size: var(--fs-xs);
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hero-cta-primary {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--fs-lg);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta-primary i:last-child {
    margin-left: var(--spacing-sm);
    transition: transform var(--transition-base);
}

.hero-cta-primary:hover i:last-child {
    transform: translateX(5px);
}

.hero-cta-secondary {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--fs-lg);
    border-width: 2px;
    font-weight: 600;
}

/* Quick Contact */
.hero-quick-contact {
    margin-top: var(--spacing-md);
}

.quick-contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-medium);
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.quick-contact-link:hover {
    color: var(--primary-color);
}

.quick-contact-link i {
    color: var(--error-color);
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 8px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 168, 150, 0.1));
    border-radius: var(--radius-xl);
    z-index: 2;
    pointer-events: none;
}

/* Image Badge */
.hero-image-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

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

.hero-image-badge i {
    font-size: var(--fs-2xl);
    color: var(--primary-color);
}

.hero-image-badge .badge-title {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.hero-image-badge .badge-subtitle {
    display: block;
    font-size: var(--fs-xs);
    color: var(--gray-medium);
}

/* Stats Card */
.hero-stats-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    z-index: 10;
    min-width: 180px;
    animation: floatStats 4s ease-in-out infinite;
}

@keyframes floatStats {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.hero-stats-card .stats-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stats-card .stats-icon i {
    font-size: var(--fs-xl);
}

.hero-stats-card .stats-content {
    display: flex;
    flex-direction: column;
}

.hero-stats-card .stats-number {
    font-size: var(--fs-2xl);
    font-weight: 700;
    line-height: 1;
}

.hero-stats-card .stats-label {
    font-size: var(--fs-xs);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-medium);
    font-size: var(--fs-sm);
    font-weight: 500;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow i {
    color: var(--primary-color);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(5px); opacity: 0.5; }
}

/* ===== Section Styles ===== */


.section-header {
    margin-bottom: 10px;
}

.section-tag {
    display: inline-block;
    color: #666666;
    font-weight: 600;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e293b !important;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: none;
}

.section-subtitle {
    font-size: var(--fs-xl);
    color: #5a5a5a;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-description {
    font-size: var(--fs-lg);
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about-section {
    background: var(--gray-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
    z-index: 1;
}

.about-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    padding: 8px;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: var(--radius-xl);
    z-index: 2;
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 180px;
    z-index: 10;

}

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

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    color: var(--white);
    font-size: var(--fs-xl);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.experience-number {
    display: block;
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.experience-text {
    display: block;
    font-size: var(--fs-xs);
    color: var(--gray-medium);
    margin-top: 2px;
    font-weight: 500;
}

.certification-badge {
    position: absolute;
    top: 30px;
    left: -15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--fs-sm);
    font-weight: 600;
    z-index: 10;
    transform: rotate(-5deg);
}

.certification-badge i {
    font-size: var(--fs-base);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-medium);
}

.doctor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.stat-box {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all var(--transition-base);
}

.stat-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--accent-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: var(--primary-color);
    font-size: var(--fs-xl);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: var(--fs-xs);
    color: var(--gray-medium);
    margin-top: 4px;
}

.doctor-qualifications {
    margin-top: var(--spacing-xl);
}

.qualification-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-left: 4px solid transparent;
}

.qualification-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

.qualification-icon {
    width: 50px;
    height: 50px;
    /* background: linear-gradient(135deg, var(--primary-lighter), var(--accent-light)); */
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qualification-icon i {
    font-size: var(--fs-xl);
    color: var(--primary-color);
}

.qualification-content h4 {
    font-size: var(--fs-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--black);
    font-weight: 600;
}

.qualification-content p {
    margin: 0;
    color: var(--gray-medium);
    font-size: var(--fs-base);
    line-height: 1.6;
}

.about-actions {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

/* Modern Button Styles */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 14px 15px;
    font-size: var(--fs-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #db555536;
    white-space: nowrap;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #1d3954 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-modern-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.btn-modern-outline {
    background: transparent;
    color: #d85555;
   
}

.btn-modern-outline:hover {
  
    color: #c74040;
    border: 1px solid #0f457b57;
    border-block-end-width: translateY(-3px);

}

.btn-modern .btn-icon {
    display: none;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-icon {
    transform: scale(1.1) rotate(-5deg);
}

.btn-modern .btn-text {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-text {
    transform: translateX(-2px);
}

.btn-modern .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    margin-left: var(--spacing-xs);
}

.btn-modern:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-modern-primary .btn-icon i {
    font-size: var(--fs-lg);
}

.btn-modern .btn-arrow i {
    font-size: var(--fs-sm);
}

/* ===== Services Section ===== */
.services-section {
    background: #f0f8ff url('https://s3.ap-south-1.amazonaws.com/cdn1.cr/dr-shyam-mohan/urology-bg.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(240, 248, 255, 0.75);
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.2), transparent);
    z-index: 1;
}

/* Services Image Wrapper */
.services-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.services-image-wrapper:hover {
    transform: translateY(-5px);
}

.services-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-2xl);
}

/* Services Section Container */
.services-section > .container {
    position: relative;
    z-index: 2;
}

/* Services Carousel Wrapper */
.services-carousel-wrapper {
    position: relative;
    padding: 20px 0 60px;
}

.services-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.services-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
    margin: 0;
    padding: 0;
}

.services-carousel-slide {
    flex: 0 0 auto;
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
    height: auto;
    display: flex;
}

.services-carousel-slide:last-of-type:not(.services-carousel-slide-clone-end) {
    padding-right: 0;
}

.services-carousel-slide-clone {
    flex: 0 0 auto;
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
    height: auto;
    display: flex;
}

.services-carousel-slide-clone-end:last-child {
    padding-right: 0;
}

/* Show 2 slides on desktop */
@media (min-width: 768px) {
    .services-carousel-slide,
    .services-carousel-slide-clone {
        width: 50%;
    }
}

/* Show 1 slide on mobile */
@media (max-width: 767px) {
    .services-carousel-slide,
    .services-carousel-slide-clone {
        width: 100%;
    }
}

/* Carousel Navigation */
.services-carousel__navigation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.services-carousel__button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
    position: relative;
    z-index: 10;
}

.services-carousel__button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.services-carousel__button:active {
    transform: scale(0.95);
}

.services-carousel__button i {
    font-size: 1rem;
}

.services-carousel__button--prev {
    margin-right: auto;
}

.services-carousel__button--next {
    margin-left: auto;
}

.services-carousel__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Carousel Pagination */
.services-carousel__pagination {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.services-carousel__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.services-carousel__pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 102, 204, 0.3);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
    display: inline-block;
}

.services-carousel__pagination-bullet:hover {
    background: rgba(0, 102, 204, 0.5);
    transform: scale(1.2);
}

.services-carousel__pagination-bullet.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.service-card-modern {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 0;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-lightest);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-lighter);
}

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

.service-card-header {
    position: relative;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 168, 150, 0.03) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-light) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.service-icon-modern i {
    font-size: var(--fs-2xl);
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover .service-icon-modern i {
    color: var(--white);
    transform: scale(1.1);
}

.service-number {
    font-size: var(--fs-4xl);
    font-weight: 800;
    color: rgba(0, 102, 204, 0.08);
    line-height: 1;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover .service-number {
    color: rgba(0, 102, 204, 0.15);
    transform: scale(1.1);
}

.service-card-body {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-title-modern {
    font-size: var(--fs-xl);
    margin-bottom: var(--spacing-md);
    color: var(--black);
    font-weight: 700;
    line-height: 1.3;
}

.service-description-modern {
    color: var(--gray-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    font-size: var(--fs-base);
}

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

.service-list-modern li {
    padding: var(--spacing-xs) 0;
    color: var(--gray-medium);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--fs-sm);
    transition: all var(--transition-base);
}

.service-list-modern li i {
    color: var(--success-color);
    font-size: var(--fs-sm);
    flex-shrink: 0;
}

.service-card-modern:hover .service-list-modern li {
    color: var(--black);
    transform: translateX(3px);
}

.service-card-footer {
    padding: var(--spacing-lg) var(--spacing-xl);
    border-top: 1px solid var(--gray-lightest);
    margin-top: auto;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--fs-base);
    text-decoration: none;
    transition: all var(--transition-base);
}

.service-link:hover {
    color: var(--secondary-color);
    gap: var(--spacing-md);
}

.service-link i {
    transition: transform var(--transition-base);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Legacy service card styles for backward compatibility */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-lightest);
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-light) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-base);
}

.service-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--spacing-md);
    color: var(--black);
}

.service-description {
    color: var(--gray-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

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

.service-list li {
    padding: var(--spacing-xs) 0;
    color: var(--gray-medium);
    position: relative;
    padding-left: var(--spacing-lg);
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* ===== Achievements Section ===== */
.achievements-section {
    background: var(--gray-bg);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.achievements-section .container {
    position: relative;
    z-index: 1;
}

.achievements-section .row {
    align-items: stretch;
}

.achievements-section [class*="col-"] {
    display: flex;
    min-width: 0;
}

.achievement-image-wrapper {
    position: relative;
    width: 100%;    
}

.achievement-image-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.achievement-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.achievement-card {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-xl);
    /* background: var(--white); */
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* border: 2px solid var(--gray-lightest); */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); */
    position: relative;
    overflow: hidden;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(0, 212, 170, 0.02) 100%);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
    min-height: 220px;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(0, 212, 170, 0.02) 100%);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

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

.achievement-icon-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    flex-shrink: 0;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d6dde5 0%, var(--accent-light) 100%);
    border-radius: var(--radius-full);
    font-size: var(--fs-3xl);
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #e8f2fd 0%, #f0f8ff 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.achievement-icon i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover .achievement-icon i {
    transform: scale(1.1);
}

.achievement-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: var(--spacing-sm);
}

.achievement-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
}

.achievement-card:hover .achievement-number {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.achievement-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    margin: var(--spacing-sm) 0;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover .achievement-divider {
    width: 80px;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.achievement-label {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--gray-dark);
    text-transform: none;
    letter-spacing: 0.01em;
    margin: 0;
    line-height: 1.4;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover .achievement-label {
    color: var(--primary-dark);
}

/* ===== Achievement Card Dividers (About Page Only) ===== */
/* Target only the about page structure with nested col-lg-8 */
.achievements-section .col-lg-8 .row.g-4 > .col-md-6 {
    position: relative;
}

/* Vertical divider between columns - only on odd numbered cards (1st and 3rd) on medium+ screens */
@media (min-width: 768px) {
    .achievements-section .col-lg-8 .row.g-4 > .col-md-6:nth-child(odd)::after {
        content: '';
        position: absolute;
        right: -16px;
        top: 15%;
        bottom: 15%;
        width: 2px;
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(0, 102, 204, 0.2) 20%, 
            rgba(0, 212, 170, 0.3) 50%, 
            rgba(0, 102, 204, 0.2) 80%, 
            transparent 100%);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }
    
    /* Horizontal divider between rows - on first row cards only */
    .achievements-section .col-lg-8 .row.g-4 > .col-md-6:nth-child(-n+2)::before {
        content: '';
        position: absolute;
        left: 15%;
        right: 15%;
        bottom: -16px;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(0, 102, 204, 0.2) 20%, 
            rgba(0, 212, 170, 0.3) 50%, 
            rgba(0, 102, 204, 0.2) 80%, 
            transparent 100%);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }
    
    /* Hover effect on vertical divider */
    .achievements-section .col-lg-8 .row.g-4 > .col-md-6:nth-child(odd):hover::after {
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(0, 102, 204, 0.4) 20%, 
            rgba(0, 212, 170, 0.5) 50%, 
            rgba(0, 102, 204, 0.4) 80%, 
            transparent 100%);
        box-shadow: 0 0 12px rgba(0, 102, 204, 0.3);
        width: 3px;
    }
    
    /* Hover effect on horizontal divider */
    .achievements-section .col-lg-8 .row.g-4 > .col-md-6:nth-child(-n+2):hover::before {
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(0, 102, 204, 0.4) 20%, 
            rgba(0, 212, 170, 0.5) 50%, 
            rgba(0, 102, 204, 0.4) 80%, 
            transparent 100%);
        box-shadow: 0 0 12px rgba(0, 102, 204, 0.3);
        height: 3px;
    }
}

/* Mobile: horizontal dividers between all cards */
@media (max-width: 767.98px) {
    .achievements-section .col-lg-8 .row.g-4 > .col-md-6:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 15%;
        right: 15%;
        bottom: -16px;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(0, 102, 204, 0.2) 20%, 
            rgba(0, 212, 170, 0.3) 50%, 
            rgba(0, 102, 204, 0.2) 80%, 
            transparent 100%);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }
    
    .achievements-section .col-lg-8 .row.g-4 > .col-md-6:not(:last-child):hover::before {
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(0, 102, 204, 0.4) 20%, 
            rgba(0, 212, 170, 0.5) 50%, 
            rgba(0, 102, 204, 0.4) 80%, 
            transparent 100%);
        box-shadow: 0 0 12px rgba(0, 102, 204, 0.3);
        height: 3px;
    }
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f8ff 50%, #e8f4ff 100%);
    z-index: 1;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 168, 150, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.why-choose-section * {
    color: #000000;
}

.why-choose-content,
.why-choose-content * {
    color: #000 !important;
}

.why-choose-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.why-choose-container {
    display: grid;
    /* grid-template-columns: 0.9fr 1.6fr; */
    gap: var(--spacing-3xl);
    align-items: center;
    min-height: 600px;
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

/* Left Side - Profile Pictures */
.why-choose-visuals {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-base);
    background: rgba(255, 255, 255, 0.1);
}

.profile-picture:hover {
    transform: scale(1.05);
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-picture-1 {
    align-self: flex-start;
}

.profile-picture-2 {
    align-self: center;
}

.profile-picture-3 {
    align-self: flex-end;
}

/* Right Side - Text Content */
.why-choose-content {
    color: #000 !important;
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 3;
    border-radius: 20px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
   
}

.why-choose-content * {
    color: #000 !important;
}

.why-choose-main-heading {
    /* font-family: 'Georgia', 'Times New Roman', serif; */
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #000 !important;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    position: relative;
    z-index: 4;
}

.why-choose-subheading {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #000 !important;
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
    opacity: 1;
    font-weight: 300;
    position: relative;
    z-index: 4;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 4;
}

.why-choose-feature-block {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 4;
    padding: var(--spacing-md);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.why-choose-feature-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.feature-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
    width: 50px;
    padding-top: 5px;
    position: relative;
    z-index: 3;
}

.feature-icon-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.feature-icon-wrapper:hover img {
    transform: scale(1.1);
}

.feature-icon {
    font-size: 1.5rem;
    color: #bb7575 !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: start;
    justify-content: center;
    opacity: 1;
}

.feature-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, 
        rgba(0, 102, 204, 0) 0%, 
        rgba(0, 102, 204, 0.3) 20%, 
        rgba(0, 168, 150, 0.5) 50%, 
        rgba(0, 168, 150, 0.3) 80%, 
        rgba(0, 102, 204, 0) 100%);
    margin-top: var(--spacing-sm);
    flex-shrink: 0;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 102, 204, 0.2);
    animation: dividerGlow 2s ease-in-out infinite alternate;
}

.feature-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #0066CC 0%, #00A896 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

.feature-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #00A896 0%, #0066CC 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 168, 150, 0.5);
}

@keyframes dividerGlow {
    0% {
        box-shadow: 0 0 8px rgba(0, 102, 204, 0.2);
    }
    100% {
        box-shadow: 0 0 12px rgba(0, 102, 204, 0.4), 0 0 20px rgba(0, 168, 150, 0.2);
    }
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 3;
}

.feature-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #000 !important;
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
    line-height: 1.3;
    text-transform: capitalize;
    position: relative;
    z-index: 3;
}

.feature-description {
    font-size: 1rem;
    color: #000 !important;
    line-height: 1.7;
    margin: 0;
    opacity: 1;
    font-weight: 300;
    position: relative;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .why-choose-visuals {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .profile-picture {
        width: 150px;
        height: 150px;
    }
    
    .profile-picture-1,
    .profile-picture-2,
    .profile-picture-3 {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .why-choose-wrapper {
        padding: 0 var(--spacing-md);
    }
    
    /* Adjust background for mobile - disable fixed attachment */
    .why-choose-section {
        background-attachment: scroll;
    }
    
    .why-choose-content {
        padding: var(--spacing-lg);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .profile-picture {
        width: 120px;
        height: 120px;
    }
    
    .why-choose-feature-block {
        gap: var(--spacing-md);
        padding: var(--spacing-sm);
    }
    
    .feature-icon-wrapper {
        width: 40px;
    }
    
    .feature-icon {
        font-size: 1.25rem;
        width: 40px;
        height: 40px;
    }
    
    .feature-divider {
        height: 50px;
        width: 2px;
    }
    
    .feature-divider::before,
    .feature-divider::after {
        width: 5px;
        height: 5px;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: #f0f8ff;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
}

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

.testimonial-rating {
    color: #FFC107;
    font-size: var(--fs-xl);
    margin-bottom: var(--spacing-lg);
}

.testimonial-text {
    font-size: var(--fs-lg);
    font-style: italic;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-lighter);
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.author-name {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.author-location {
    font-size: var(--fs-sm);
    color: var(--gray-medium);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--gray-lighter);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
}

/* ===== Testimonials Page Section ===== */
.testimonials-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.testimonials-hero-content {
    position: relative;
    z-index: 1;
}

.testimonials-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--white);
}

.testimonials-hero-badge i {
    font-size: var(--fs-base);
    color: #FFC107;
}

.testimonials-breadcrumb {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xl);
}

.testimonials-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
}

.testimonials-breadcrumb .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition-fast);
}

.testimonials-breadcrumb .breadcrumb-item a:hover {
    opacity: 0.8;
}

.testimonials-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.testimonials-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "/";
}

.testimonials-hero-title {
    font-size: var(--fs-5xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.testimonials-hero-subtitle {
    font-size: var(--fs-xl);
    color: rgb(46 43 43 / 95%);
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 0;
}

.testimonials-page-section {
    background: var(--gray-bg);
    padding: 5rem 0;
}

.testimonials-grid-wrapper {
    position: relative;
}

.testimonial-card-modern {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.testimonial-card-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

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

.testimonial-card-header-modern {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--gray-lightest);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.testimonial-avatar i {
    font-size: var(--fs-xl);
    color: var(--white);
}

.testimonial-author-info {
    flex: 1;
    min-width: 0;
}

.testimonial-author-name {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--black);
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.3;
}

.testimonial-rating-modern {
    display: flex;
    gap: var(--spacing-xs);
    color: #FFC107;
    font-size: var(--fs-sm);
}

.testimonial-rating-modern i {
    color: #FFC107;
}

.testimonial-card-body-modern {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text-modern {
    font-size: var(--fs-base);
    color: var(--gray-dark);
    line-height: 1.8;
    margin: 0 0 var(--spacing-md) 0;
    flex-grow: 1;
    position: relative;
    padding-left: var(--spacing-lg);
}

.testimonial-text-modern::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-lighter);
    position: absolute;
    top: -10px;
    left: 0;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-link-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fs-sm);
    margin-top: var(--spacing-sm);
    transition: all var(--transition-base);
}

.testimonial-link-modern:hover {
    color: var(--secondary-color);
    gap: var(--spacing-md);
    text-decoration: none;
}

.testimonial-link-modern::after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: var(--fs-xs);
    transition: transform var(--transition-base);
}

.testimonial-link-modern:hover::after {
    transform: translateX(4px);
}

/* Responsive Design for Testimonials Page */
@media (max-width: 992px) {
    .testimonials-hero-section {
        padding: 4rem 0 3rem;
    }
    
    .testimonials-hero-title {
        font-size: var(--fs-4xl);
    }
    
    .testimonials-hero-subtitle {
        font-size: var(--fs-lg);
    }
    
    .testimonials-page-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .testimonials-hero-section {
        padding: 3rem 0 2.5rem;
    }
    
    .testimonials-hero-title {
        font-size: var(--fs-3xl);
    }
    
    .testimonials-hero-subtitle {
        font-size: var(--fs-base);
    }
    
    .testimonials-hero-badge {
        font-size: var(--fs-xs);
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .testimonials-page-section {
        padding: 3rem 0;
    }
    
    .testimonial-card-modern {
        padding: var(--spacing-lg);
    }
    
    .testimonial-card-header-modern {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .testimonial-author-name {
        text-align: center;
    }
    
    .testimonial-rating-modern {
        justify-content: center;
    }
    
    .testimonial-text-modern {
        text-align: center;
        padding-left: 0;
    }
    
    .testimonial-text-modern::before {
        display: none;
    }
    
    .testimonial-link-modern {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .testimonials-hero-title {
        font-size: var(--fs-2xl);
    }
    
    .testimonials-hero-subtitle {
        font-size: var(--fs-sm);
    }
    
    .testimonial-card-modern {
        border-radius: var(--radius-xl);
        padding: var(--spacing-md);
    }
    
    .testimonial-avatar {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .testimonial-avatar i {
        font-size: var(--fs-lg);
    }
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-description {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--gray-lightest);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--gray-bg);
}

.contact-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: all var(--transition-base);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-light) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: var(--fs-2xl);
    color: var(--primary-color);
}

.contact-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--spacing-md);
    color: var(--black);
}

.contact-info {
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ===== Footer ===== */
.main-footer {
    background: linear-gradient(135deg, #1a3a5f 0%, #2d4a6b 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Content - 3 Column Grid Layout */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-3xl);
    padding-bottom: var(--spacing-2xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-widget {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Footer Logo */
.footer-logo-wrapper {
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    height: 100px;
    width: auto;
    border-radius: 20px;
    padding: 15px 20px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: var(--fs-base);
    margin: 0;
}

/* Footer Headings */
.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: none;
    letter-spacing: 0;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links li {
    margin: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: var(--fs-base);
    padding: var(--spacing-xs) 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-sm);
    position: relative;
}

.footer-link i {
    font-size: var(--fs-xs);
    color: var(--accent-color);
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 16px;
    flex-shrink: 0;
}

.footer-link span {
    flex: 1;
}

.footer-link:hover {
    color: var(--white);
    padding-left: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
}

.footer-link:hover i {
    opacity: 1;
    transform: translateX(2px);
    color: var(--accent-color);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.footer-contact-item i {
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: var(--fs-lg);
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-contact-item:hover i {
    transform: scale(1.1);
    color: var(--primary-light);
}

.footer-contact-content {
    flex: 1;
}

.footer-contact-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.footer-contact-content address {
    margin: var(--spacing-xs) 0 0 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: normal;
}

.footer-contact-content a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact-content a:hover {
    color: var(--white);
    text-decoration: underline;
}

.clinic-name {
    font-weight: 600;
    color: var(--white);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.clinic-name:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.footer-bottom-content {
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: var(--fs-sm);
    letter-spacing: 0.5px;
}

/* Footer Map Styles */
.footer-map-wrapper {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-map-wrapper:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.footer-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: var(--radius-lg);
}

/* ===== Modern Floating Action Buttons ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-floating);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    opacity: 1;
    visibility: visible;
}

.floating-btn {
    width: 64px;.contact-info-cards
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
    /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
    position: relative;
    color: #ffffff;
    font-size: 28px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    /* animation: float 3s ease-in-out infinite; */
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-btn:hover::before {
    width: 300px;
    height: 300px;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.15);
}

.floating-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    animation-delay: 0s;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 6px 12px rgba(37, 211, 102, 0.3);
}

.call-btn {
    background: linear-gradient(135deg, #0066CC 0%, #0052a3 100%);
    animation-delay: 0.2s;
}

.call-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.4), 0 6px 12px rgba(0, 102, 204, 0.3);
}

.floating-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.floating-btn:hover i {
    transform: scale(1.1);
}

.floating-btn-text {
    position: absolute;
    right: 80px;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-btn-text::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid rgba(0, 0, 0, 0.9);
}

.floating-btn:hover .floating-btn-text {
    opacity: 1;
    transform: translateX(0);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Pulse animation for attention */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 8px rgba(37, 211, 102, 0.2);
    }
}

.whatsapp-btn {
    animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .floating-btn-text {
        right: 70px;
        font-size: 13px;
        padding: 8px 14px;
    }
}

@media (max-width: 576px) {
    .floating-buttons {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .floating-btn-text {
        display: none; /* Hide text on very small screens */
    }
}

/* ===== Utility Classes ===== */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light { background-color: var(--gray-bg) !important; }

/* ===== Accessibility ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* ===== Print Styles ===== */
@media print {
    .top-bar,
    .main-header {
        display: none;
    }
}


/* ============================================
   Modern Services Slider - Premium Design
   ============================================ */

/* CSS Variables for Modern Slider */
:root {
    /* Slider Configuration */
    --slider-gap: 24px;
    --slider-autoplay-delay: 4000ms;
    --slider-transition-speed: 600ms;
    
    /* Card Design */
    --card-border-radius: 16px;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 12px 40px rgba(0, 102, 204, 0.15);
    --card-padding: 24px;
    
    /* Colors */
    --slider-bg: transparent;
    --card-bg: var(--white);
    --card-border: rgba(0, 102, 204, 0.1);
    --icon-bg-start: rgba(0, 102, 204, 0.08);
    --icon-bg-end: rgba(0, 168, 150, 0.08);
    --icon-bg-hover-start: var(--primary-color);
    --icon-bg-hover-end: var(--secondary-color);
    
    /* Navigation */
    --nav-button-size: 48px;
    --nav-button-bg: var(--white);
    --nav-button-color: var(--primary-color);
    --nav-button-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
    
    /* Pagination */
    --pagination-bullet-size: 10px;
    --pagination-bullet-active-size: 30px;
    --pagination-bullet-color: rgba(0, 102, 204, 0.3);
    --pagination-bullet-active-color: var(--primary-color);
}

/* Modern Slider Wrapper */
.modern-services-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 80px;
    margin: 0;
    overflow: visible;
}

/* Position navigation relative to wrapper to avoid clipping */
.modern-services-slider-wrapper .modern-services-slider__navigation {
    position: absolute;
    top: 50%;
    left: -80px;
    right: -80px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure both navigation buttons are always visible and active */
.modern-services-slider__button--prev,
.modern-services-slider__button--next {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 100 !important;
}

/* Remove disabled state styling to keep buttons active */
.modern-services-slider__button--prev.swiper-button-disabled,
.modern-services-slider__button--next.swiper-button-disabled,
.modern-services-slider__button--prev.swiper-button-lock,
.modern-services-slider__button--next.swiper-button-lock {
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    visibility: visible !important;
    display: flex !important;
}

/* Force prev button visibility - highest priority */
button.modern-services-slider__button--prev,
button.modern-services-slider__button--prev.swiper-button-disabled,
button.modern-services-slider__button--prev.swiper-button-lock {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    left: -70px !important;
}

.modern-services-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 60px;
}

/* Ensure navigation is not clipped */
.modern-services-slider .modern-services-slider__navigation {
    overflow: visible;
}

.modern-services-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

/* Ensure only 2 slides are visible at a time */
.modern-services-slider {
    max-width: 100%;
}

.modern-services-slider .swiper-wrapper {
    width: 100%;
}

/* Premium Service Card */
.service-card-premium {
    background: var(--card-bg);
    border-radius: var(--card-border-radius);
    padding: var(--card-padding);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: all var(--slider-transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--slider-transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card-premium:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-light);
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

/* Card Header */
.service-card-premium__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.service-card-premium__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--icon-bg-start) 0%, var(--icon-bg-end) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--slider-transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.service-card-premium__icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all var(--slider-transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium:hover .service-card-premium__icon {
    background: linear-gradient(135deg, var(--icon-bg-hover-start) 0%, var(--icon-bg-hover-end) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.service-card-premium:hover .service-card-premium__icon i {
    color: var(--white);
    transform: scale(1.1);
}

.service-card-premium__number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 102, 204, 0.08);
    line-height: 1;
    font-family: var(--font-heading);
    transition: all var(--slider-transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium:hover .service-card-premium__number {
    color: rgba(0, 102, 204, 0.15);
    transform: scale(1.05);
}

/* Card Body */
.service-card-premium__body {
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-card-premium__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
    font-family: var(--font-heading);
}

.service-card-premium__description {
    color: var(--gray-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    font-size: 15px;
}

.service-card-premium__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-premium__list li {
    padding: 8px 0;
    color: var(--gray-medium);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-card-premium__list li i {
    color: var(--success-color);
    font-size: 14px;
    flex-shrink: 0;
}

.service-card-premium:hover .service-card-premium__list li {
    color: var(--black);
    transform: translateX(4px);
}

/* Card Footer */
.service-card-premium__footer {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-lightest);
    position: relative;
    z-index: 2;
}

.service-card-premium__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #0f1010;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-premium__link:hover {
    color: var(--secondary-color);
    gap: var(--spacing-md);
}

.service-card-premium__link i {
    transition: transform 0.3s ease;
}

.service-card-premium__link:hover i {
    transform: translateX(4px);
}

/* Navigation Buttons */
.modern-services-slider__navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    z-index: 100;
    pointer-events: none;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto;
    overflow: visible;
}

/* Allow pointer events on buttons within navigation */
.modern-services-slider__navigation button {
    pointer-events: auto !important;
    cursor: pointer !important;
}

.modern-services-slider__button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 2px solid rgba(0, 102, 204, 0.15);
    color: #0066CC !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.15);
    position: absolute;
    z-index: 100;
    outline: none;
    pointer-events: auto !important;
    backdrop-filter: blur(10px);
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.modern-services-slider__button--prev {
    left: -70px !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 100 !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* Force prev button to be visible - override any hiding */
.modern-services-slider__button--prev,
.modern-services-slider__button--prev.swiper-button-disabled,
.modern-services-slider__button--prev.swiper-button-lock {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.modern-services-slider__button--next {
    right: -70px !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 100 !important;
}

.modern-services-slider__button:hover {
    background: linear-gradient(135deg, #0066CC 0%, #00A896 100%);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    border-color: transparent;
}

.modern-services-slider__button:active {
    transform: translateY(-50%) scale(0.95);
}

.modern-services-slider__button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.modern-services-slider__button i {
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modern-services-slider__button:hover i {
    transform: scale(1.1);
}

.modern-services-slider__button.swiper-button-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
    pointer-events: none;
    visibility: visible !important;
    display: flex !important;
}

/* Responsive Styles for Navigation */
@media (max-width: 768px) {
    .modern-services-slider-wrapper {
        padding: 0 60px;
        overflow: visible;
    }
    
    .modern-services-slider__button {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    .modern-services-slider__button i {
        font-size: 14px;
    }
    
    .modern-services-slider__button--prev {
        left: -60px !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    /* Force prev button visibility on tablet */
    button.modern-services-slider__button--prev {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        left: -60px !important;
    }
    
    .modern-services-slider__button--next {
        right: -60px !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    .modern-services-slider__button:hover {
        transform: translateY(-50%) scale(1.1);
    }
    
    .modern-services-slider__button:active {
        transform: translateY(-50%) scale(0.95);
    }
}

@media (max-width: 576px) {
    .modern-services-slider-wrapper {
        padding: 0 50px;
        overflow: visible;
    }
    
    .modern-services-slider__button {
        width: 36px;
        height: 36px;
        top: 50%;
        transform: translateY(-50%);
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    .modern-services-slider__button i {
        font-size: 12px;
    }
    
    .modern-services-slider__button--prev {
        left: -50px !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    /* Force prev button visibility on mobile */
    button.modern-services-slider__button--prev {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        left: -50px !important;
    }
    
    .modern-services-slider__button--next {
        right: -50px !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    .modern-services-slider__button:hover {
        transform: translateY(-50%) scale(1.1);
    }
    
    .modern-services-slider__button:active {
        transform: translateY(-50%) scale(0.95);
    }
}

/* Pagination */
.modern-services-slider__pagination {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.modern-services-slider__pagination .swiper-pagination-bullet {
    width: var(--pagination-bullet-size);
    height: var(--pagination-bullet-size);
    background: var(--pagination-bullet-color);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
}

.modern-services-slider__pagination .swiper-pagination-bullet:hover {
    background: var(--pagination-bullet-active-color);
    transform: scale(1.2);
}

.modern-services-slider__pagination .swiper-pagination-bullet-active {
    background: var(--pagination-bullet-active-color);
    width: var(--pagination-bullet-active-size);
    border-radius: 5px;
}

/* Swiper Slide */
.modern-services-slider .swiper-slide {
    height: auto;
    display: flex;
    flex-shrink: 0;
}

/* GPU Acceleration */
.modern-services-slider,
.modern-services-slider .swiper-wrapper,
.service-card-premium {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;

}
.service-card-premium 
{
    background:#faf2ec;
}
.achievement-icon i
{
    color: #d96363;
}
.service_img
{
    border-radius: 20px;
}

/* ===== Modern Services Carousel (Custom) ===== */
.modern-services-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 90px;
    margin: 0;
    overflow: visible;
}

.modern-services-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 60px;
}

/* Ensure navigation arrows are always visible */
.modern-services-carousel .carousel-nav {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
    display: flex;
}

.carousel-slide .service-card-premium {
    width: 100%;
    height: 100%;
}

/* Modern Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(0, 102, 204, 0.2);
    color: #0066CC;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15), 
                0 2px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 100;
    outline: none;
    pointer-events: auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    animation: fadeInSlide 0.6s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.carousel-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0066CC 0%, #00A896 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    z-index: -1;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, #0066CC 0%, #00A896 100%);
    color: #ffffff;
    transform: translateY(-50%) scale(1.15) translateZ(0);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.4),
                0 6px 20px rgba(0, 168, 150, 0.3),
                0 0 0 4px rgba(0, 102, 204, 0.1);
    border-color: transparent;
}

.carousel-nav:hover::before {
    opacity: 1;
}

.carousel-nav:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.carousel-nav:active {
    transform: translateY(-50%) scale(1.05) translateZ(0);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3),
                0 3px 10px rgba(0, 168, 150, 0.2);
}

.carousel-nav:focus {
    outline: 3px solid rgba(0, 102, 204, 0.4);
    outline-offset: 3px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.25),
                0 0 0 4px rgba(0, 102, 204, 0.1);
}

.carousel-nav i {
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.carousel-nav--prev {
    left: -75px;
}

.carousel-nav--prev:hover {
    left: -78px;
}

.carousel-nav--next {
    right: -75px;
}

.carousel-nav--next:hover {
    right: -78px;
}

/* Add pulse animation on hover */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15),
                    0 2px 8px rgba(0, 0, 0, 0.1),
                    0 0 0 0 rgba(0, 102, 204, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 102, 204, 0.25),
                    0 2px 8px rgba(0, 0, 0, 0.15),
                    0 0 0 8px rgba(0, 102, 204, 0);
    }
}

.carousel-nav:hover {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .modern-services-carousel-wrapper {
        padding: 0 65px;
    }
    
    .carousel-nav {
        width: 48px;
        height: 48px;
    }
    
    .carousel-nav i {
        font-size: 16px;
    }
    
    .carousel-nav--prev {
        left: -65px;
    }
    
    .carousel-nav--prev:hover {
        left: -68px;
    }
    
    .carousel-nav--next {
        right: -65px;
    }
    
    .carousel-nav--next:hover {
        right: -68px;
    }
    
    .carousel-track {
        gap: 20px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .modern-services-carousel-wrapper {
        padding: 0 55px;
    }
    
    .carousel-nav {
        width: 44px;
        height: 44px;
    }
    
    .carousel-nav i {
        font-size: 14px;
    }
    
    .carousel-nav--prev {
        left: -55px;
    }
    
    .carousel-nav--prev:hover {
        left: -58px;
    }
    
    .carousel-nav--next {
        right: -55px;
    }
    
    .carousel-nav--next:hover {
        right: -58px;
    }
    
    .carousel-track {
        gap: 16px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(50% - 8px);
    }
}

/* card carousel end */
/*  */

/* ============================================
   Services Swiper Slider Styles
   ============================================ */

/* Services Section Background */
.services-section {
    background: #f5f5f5 url('https://s3.ap-south-1.amazonaws.com/cdn1.cr/dr-shyam-mohan/urology-bg.webp') center center / cover no-repeat !important;
    position: relative;
    overflow: visible !important;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.services-section > .container {
    position: relative;
    z-index: 1;
}

/* Services Grid Wrapper - Grid Layout */
.services-grid-wrapper {
    width: 100%;
    position: relative;
    margin-top: 3rem;
}

.services-grid-wrapper .row {
    margin: 0 -20px;
}

.services-grid-wrapper .col-lg-4,
.services-grid-wrapper .col-md-6,
.services-grid-wrapper .col-sm-12 {
    padding: 0 20px;
    margin-bottom: 0;
}

.services-grid-wrapper .service-card-premium {
    width: 100%;
    margin: 0;
    background: #f0f8ff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-grid-wrapper .service-card-premium:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.services-grid-wrapper .service-card-premium .service-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    overflow: visible;
    position: relative;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-grid-wrapper .service-card-premium .service-img .service_img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    transition: transform 0.3s ease;
    display: block;
}

.services-grid-wrapper .service-card-premium:hover .service-img .service_img {
    transform: scale(1.05);
}

.services-grid-wrapper .service-card-premium .service-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.services-grid-wrapper .service-card-premium .service-title {
    font-size: 22px;
    font-weight: 600;
    color: #0f1010;
    margin-bottom: 12px;
    margin-top: 0;
    padding-top: 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.services-grid-wrapper .service-card-premium .service-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.services-grid-wrapper .service-card-premium .service-card-content .btn-modern {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* Responsive Image Sizing for Grid Service Cards */
@media (max-width: 992px) {
    .services-grid-wrapper .service-card-premium .service-img {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .services-grid-wrapper .service-card-premium .service-img {
        min-height: 160px;
    }
}

@media (max-width: 576px) {
    .services-grid-wrapper .service-card-premium .service-img {
        min-height: 150px;
    }
}

@media (max-width: 400px) {
    .services-grid-wrapper .service-card-premium .service-img {
        min-height: 140px;
    }
}

/* ============================================
   Modern Why Choose Us Section - Minimalist Design
   ============================================ */

/* Section Background */
.why-choose-section {
    padding: 80px 0;
    background: #f0f8ff;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 168, 150, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

/* Features Grid Layout - Mobile First */
.why-choose-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Card - Minimalist Design */
.why-choose-feature-card {
    
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
  
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Modern Vertical Divider - Hidden on Mobile */
.why-choose-feature-card::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 102, 204, 0.12) 10%, 
        rgba(0, 102, 204, 0.2) 50%, 
        rgba(0, 102, 204, 0.12) 90%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

/* Show divider on tablet and desktop, hide on mobile */
@media (min-width: 768px) {
    .why-choose-feature-card::after {
        opacity: 1;
    }
    
    /* Hide divider on last card of 2-column grid */
    .why-choose-feature-card:nth-child(2n)::after {
        display: none;
    }
}

/* Hide divider on last card of 4-column grid on desktop */
@media (min-width: 1200px) {
    .why-choose-feature-card:nth-child(2n)::after {
        display: block;
        opacity: 1;
    }
    
    /* Hide divider on last card of 4-column grid */
    .why-choose-feature-card:nth-child(4n)::after {
        display: none;
    }
}

.why-choose-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}



/* Feature Icon - Clean & Minimal */
.feature-card-icon {
    margin-bottom: 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}



.feature-icon-bg img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
}



/* Feature Card Content */
.feature-card-content {
    flex: 1;
    text-align: center;
    width: 100%;
}

.feature-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    text-align: center;
    transition: color 0.3s ease;
}



.feature-card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
    max-width: 100%;
}

/* Responsive Design */
/* Responsive Design - Mobile First Approach */
/* Tablet and Above */
@media (min-width: 768px) {
    .why-choose-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .why-choose-feature-card {
        padding: 44px 36px;
    }
    
    .feature-icon-bg {
        width: 88px;
        height: 88px;
    }
    
    .feature-icon-bg img {
        width: 44px;
        height: 44px;
    }
    
    .feature-card-title {
        font-size: 23px;
    }
    
    .feature-card-description {
        font-size: 15px;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .why-choose-section {
        padding: 100px 0;
    }
    
    .why-choose-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-top: 60px;
    }
    
    .why-choose-feature-card {
        padding: 48px 36px;
    }
    
    .feature-card-icon {
        margin-bottom: 28px;
    }
    
    .feature-icon-bg {
        width: 90px;
        height: 90px;
        border-radius: 20px;
    }
    
    .feature-icon-bg img {
        width: 46px;
        height: 46px;
    }
    
    .feature-card-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .feature-card-description {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-features-grid {
        gap: 20px;
        margin-top: 32px;
    }
    
    .why-choose-feature-card {
        padding: 28px 24px;
        border-radius: 12px;
    }
    
    .feature-card-icon {
        margin-bottom: 18px;
    }
    
    .feature-icon-bg {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }
    
    .feature-icon-bg img {
        width: 64px;
        height: 64px;
        padding: 5px;
    }
    
    .feature-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-card-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-feature-card {
        padding: 24px 20px;
    }
    
    .feature-card-title {
        font-size: 17px;
    }
    
    .feature-card-description {
        font-size: 13px;
    }
}

/* ============================================
   Doctor Qualifications List
   ============================================ */

.doctor-qualifications {
    margin: 2px 0;
}

.qualifications-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qualifications-list-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.qualification-icon {
    color: #0066CC;
    font-size: 14px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.qualifications-list-modern li:hover .qualification-icon {
    color: #00A896;
    transform: translateX(4px);
}

.qualifications-list-modern li span {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.qualifications-list-modern li strong {
    color: #0f1010;
    font-weight: 600;
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design for Qualifications */
@media (max-width: 768px) {
    .qualifications-list-modern {
        gap: 10px;
    }
    
    .qualification-icon {
        font-size: 16px;
        width: 18px;
    }
    
    .qualifications-list-modern li span {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .doctor-qualifications {
        margin: 15px 0;
    }
    
    .qualifications-list-modern li {
        gap: 10px;
    }
    
    .qualification-icon {
        font-size: 15px;
        width: 16px;
    }
    
    .qualifications-list-modern li span {
        font-size: 13px;
    }
}

/* ============================================
   Certifications Gallery Section - Fancybox Style
   ============================================ */

.certifications-gallery-section {
    padding: 80px 0;
    background: #fafbfc;
    position: relative;
}

/* Certifications Grid */
.certifications-grid {
    display: flex;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    justify-items: center;
}

/* Certification Item */
.certification-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 600px;
    width: 100%;
}

.certification-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.certification-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.certification-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.certification-item:hover .certification-image {
    transform: scale(1.1);
}

/* Certification Overlay */
.certification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 168, 150, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.certification-overlay-content {
    text-align: center;
    color: #ffffff;
}

.certification-overlay-content i {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.certification-title-overlay {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-top: 8px;
}

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

/* ============================================
   Certifications Lightbox Modal
   ============================================ */

.certifications-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.certifications-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Lightbox Container */
.lightbox-container {
    position: relative;
    z-index: 10001;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.certifications-lightbox.active .lightbox-container {
    transform: scale(1);
}

/* Lightbox Content */
.lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certifications-lightbox.active .lightbox-image {
    opacity: 1;
}

.lightbox-caption {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    padding: 0 20px;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Responsive Design - Mobile First */
@media (min-width: 576px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 768px) {
    .certifications-gallery-section {
        padding: 100px 0;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-top: 50px;
    }
    
    .certification-overlay-content i {
        font-size: 36px;
    }
    
    .certification-title-overlay {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .certifications-gallery-section {
        padding: 60px 0;
    }
    
    .certifications-grid {
        gap: 16px;
        margin-top: 32px;
    }
    
    .lightbox-container {
        max-width: 95vw;
        padding: 0 10px;
    }
    
    .lightbox-image {
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        margin-top: 15px;
    }
    
    .lightbox-counter {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .certification-overlay-content i {
        font-size: 28px;
    }
    
    .certification-title-overlay {
        font-size: 13px;
    }
}

/* ============================================
   Memberships Section - Exact Design Match
   ============================================ */

.memberships-section {
    padding: 80px 0;
    background: #E8F4F8;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.memberships-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(0, 102, 204, 0.15) 1px, transparent 0),
        radial-gradient(circle at 8px 8px, rgba(0, 102, 204, 0.1) 1px, transparent 0);
    background-size: 20px 20px, 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.memberships-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 102, 204, 0.05) 10px, rgba(0, 102, 204, 0.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 102, 204, 0.05) 10px, rgba(0, 102, 204, 0.05) 20px);
    opacity: 0.2;
    pointer-events: none;
}

/* Memberships Title */
.memberships-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3A5F;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.02em;
}

/* Memberships Grid */
.memberships-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Membership Card */
.membership-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.membership-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Membership Logo */
.membership-logo {
    flex-shrink: 0;
}

.membership-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #e8ecf0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
    overflow: hidden;
    padding: 8px;
}

.membership-logo-red {
    border-color: #DC3545;
}

.membership-logo-inner {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
}

.membership-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Membership Content */
.membership-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.membership-text-line {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
}

.membership-text-line:first-child {
    font-weight: 600;
}

.membership-text-highlight {
    display: inline-block;
   
    color: #141414;
    padding: 0px!important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    margin-right: 0px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .memberships-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    
    .membership-card {
        padding: 28px;
        gap: 20px;
    }
    
    .membership-logo-circle {
        width: 110px;
        height: 110px;
    }
    
    .membership-logo-inner {
        width: 100px;
        height: 100px;
    }
    
    .membership-text-line {
        font-size: 19px;
    }
    
    .membership-text-highlight {
        font-size: 17px;
        padding: 5px 12px;
    }
}

@media (min-width: 992px) {
    .memberships-section {
        padding: 100px 0;
    }
    
    .memberships-title {
        font-size: 3rem;
        margin-bottom: 60px;
    }
    
    .memberships-grid {
        gap: 32px;
    }
    
    .membership-card {
        padding: 32px;
        gap: 24px;
    }
    
    .membership-logo-circle {
        width: 120px;
        height: 120px;
    }
    
    .membership-logo-inner {
        width: 110px;
        height: 110px;
    }
    
    .membership-text-line {
        font-size: 20px;
    }
    
    .membership-text-highlight {
        font-size: 18px;
        padding: 6px 14px;
    }
}

@media (max-width: 767px) {
    .memberships-section {
        padding: 60px 0;
    }
    
    .memberships-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .membership-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .membership-logo-circle {
        width: 90px;
        height: 90px;
    }
    
    .membership-logo-inner {
        width: 80px;
        height: 80px;
    }
    
    .membership-content {
        align-items: center;
    }
    
    .membership-text-line {
        font-size: 16px;
    }
    
    .membership-text-highlight {
        font-size: 15px;
        padding: 4px 8px;
    }
}

@media (max-width: 575px) {
    .memberships-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }
    
    .membership-card {
        padding: 18px;
        gap: 16px;
    }
    
    .membership-logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .membership-logo-inner {
        width: 70px;
        height: 70px;
    }
    
    .membership-text-line {
        font-size: 15px;
    }
    
    .membership-text-highlight {
        font-size: 14px;
        padding: 3px 8px;
    }
}

/* ============================================
   Clinic Gallery Section - Modern Lightbox Design
   ============================================ */

.clinic-gallery-section {
    padding: 80px 0;
    background: #fafbfc;
    position: relative;
}

/* Clinic Gallery Grid */
.clinic-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

/* Clinic Gallery Item */
.clinic-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clinic-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.clinic-gallery-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.clinic-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.clinic-gallery-item:hover .clinic-gallery-image {
    transform: scale(1.1);
}

/* Clinic Gallery Overlay */
.clinic-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 168, 150, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.clinic-gallery-overlay-content {
    text-align: center;
    color: #ffffff;
}

.clinic-gallery-overlay-content i {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.clinic-gallery-title-overlay {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-top: 8px;
}

/* ============================================
   Clinic Lightbox Modal
   ============================================ */

.clinic-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.clinic-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Lightbox Overlay */
.clinic-lightbox .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Lightbox Container */
.clinic-lightbox .lightbox-container {
    position: relative;
    z-index: 10001;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clinic-lightbox.active .lightbox-container {
    transform: scale(1);
}

/* Lightbox Content */
.clinic-lightbox .lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clinic-lightbox .lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clinic-lightbox.active .lightbox-image {
    opacity: 1;
}

.clinic-lightbox .lightbox-caption {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    padding: 0 20px;
}

.clinic-lightbox .lightbox-counter {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Lightbox Close Button */
.clinic-lightbox .lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.clinic-lightbox .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

/* Lightbox Navigation Buttons */
.clinic-lightbox .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.clinic-lightbox .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.clinic-lightbox .lightbox-prev {
    left: -70px;
}

.clinic-lightbox .lightbox-next {
    right: -70px;
}

/* Responsive Design - Mobile First */
@media (min-width: 576px) {
    .clinic-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 768px) {
    .clinic-gallery-section {
        padding: 100px 0;
    }
    
    .clinic-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-top: 50px;
    }
    
    .clinic-gallery-overlay-content i {
        font-size: 36px;
    }
    
    .clinic-gallery-title-overlay {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .clinic-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .clinic-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .clinic-gallery-section {
        padding: 60px 0;
    }
    
    .clinic-gallery-grid {
        gap: 16px;
        margin-top: 32px;
    }
    
    .clinic-lightbox .lightbox-container {
        max-width: 95vw;
        padding: 0 10px;
    }
    
    .clinic-lightbox .lightbox-image {
        max-height: 80vh;
    }
    
    .clinic-lightbox .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .clinic-lightbox .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .clinic-lightbox .lightbox-prev {
        left: 10px;
    }
    
    .clinic-lightbox .lightbox-next {
        right: 10px;
    }
    
    .clinic-lightbox .lightbox-caption {
        font-size: 14px;
        margin-top: 15px;
    }
    
    .clinic-lightbox .lightbox-counter {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .clinic-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .clinic-gallery-overlay-content i {
        font-size: 28px;
    }
    
    .clinic-gallery-title-overlay {
        font-size: 13px;
    }
}

/* Certification Card */
.certification-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e8ecf0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.12);
    border-color: #0066CC;
}

.certification-card-inner {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.certification-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.certification-card:hover .certification-icon {
    background: linear-gradient(135deg, #0066CC 0%, #00A896 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.25);
}

.certification-icon i {
    font-size: 36px;
    color: #0066CC;
    transition: all 0.4s ease;
}

.certification-card:hover .certification-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.certification-content {
    flex: 1;
    width: 100%;
}

.certification-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.certification-card:hover .certification-title {
    color: #0066CC;
}

.certification-org {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.5;
    font-weight: 400;
}

.certification-year {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #0066CC;
    background: rgba(0, 102, 204, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.certification-card:hover .certification-year {
    background: linear-gradient(135deg, #0066CC 0%, #00A896 100%);
    color: #ffffff;
}

/* Responsive Design - Mobile First */
@media (min-width: 576px) {
    .certifications-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 768px) {
    .certifications-section {
        padding: 100px 0;
    }
    
    .certifications-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-top: 50px;
    }
    
    .certification-card-inner {
        padding: 36px 32px;
    }
    
    .certification-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 28px;
    }
    
    .certification-icon i {
        font-size: 40px;
    }
    
    .certification-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .certification-org {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .certification-year {
        font-size: 13px;
        padding: 7px 16px;
    }
}

@media (min-width: 992px) {
    .certifications-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .certification-card-inner {
        padding: 40px 36px;
    }
    
    .certification-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 32px;
    }
    
    .certification-icon i {
        font-size: 44px;
    }
    
    .certification-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .certification-org {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

@media (min-width: 1200px) {
    .certifications-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Mobile Optimizations */
@media (max-width: 575px) {
    .certifications-section {
        padding: 60px 0;
    }
    
    .certifications-gallery {
        gap: 20px;
        margin-top: 32px;
    }
    
    .certification-card-inner {
        padding: 28px 24px;
    }
    
    .certification-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
        border-radius: 14px;
    }
    
    .certification-icon i {
        font-size: 32px;
    }
    
    .certification-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .certification-org {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .certification-year {
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* Keep Swiper styles for backward compatibility */
.services-swiper-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 3rem;
    overflow: visible !important;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

/* Ensure navigation buttons are positioned relative to wrapper */
.services-swiper-wrapper .services-swiper-button-prev,
.services-swiper-wrapper .services-swiper-button-next {
    position: absolute !important;
    z-index: 1000 !important;
}

.services-swiper {
    width: 100%;
    overflow: hidden !important;
    padding-bottom: 20px;
    position: relative;
    margin: 0 auto;
}

/* Ensure smooth transitions for autoplay */
.services-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.services-swiper .swiper-slide {
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: transform, opacity;
}

.services-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.services-swiper .swiper-slide {
    height: auto;
    display: flex;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: auto;
}

.services-swiper .swiper-slide .service-card-premium {
    width: 100%;
    margin: 0;
    background: #f0f8ff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-swiper .swiper-slide .service-card-premium:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Service Image */
.services-swiper .swiper-slide .service-card-premium .service-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    overflow: visible;
    position: relative;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-swiper .swiper-slide .service-card-premium .service-img .service_img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    transition: transform 0.3s ease;
    display: block;
}

.services-swiper .swiper-slide .service-card-premium:hover .service-img .service_img {
    transform: scale(1.05);
}

/* Responsive Image Sizing for Service Cards */
/* Tablet and Medium Screens */
@media (max-width: 992px) {
    .services-swiper .swiper-slide .service-card-premium .service-img {
        min-height: 180px;
    }
}

/* Small Tablets */
@media (max-width: 768px) {
    .services-swiper .swiper-slide .service-card-premium .service-img {
        min-height: 160px;
    }
}

/* Mobile Devices */
@media (max-width: 576px) {
    .services-swiper .swiper-slide .service-card-premium .service-img {
        min-height: 150px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 400px) {
    .services-swiper .swiper-slide .service-card-premium .service-img {
        min-height: 140px;
    }
}

/* Service Card Content */
.services-swiper .swiper-slide .service-card-premium .service-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Service card content styles for Swiper slides */
.service-card-premium .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium .service-icon i {
    font-size: 28px;
    color: #0066CC;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium:hover .service-icon {
    background: linear-gradient(135deg, #0066CC 0%, #00A896 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.service-card-premium:hover .service-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.services-swiper .swiper-slide .service-card-premium .service-title {
    font-size: 22px;
    font-weight: 600;
    color: #0f1010;
    margin-bottom: 12px;
    margin-top: 0;
    padding-top: 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.services-swiper .swiper-slide .service-card-premium .service-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* Modern button styling inside service cards */
.services-swiper .swiper-slide .service-card-premium .service-card-content .btn-modern {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* Learn More Button */
.service-learn-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0066CC;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    margin-top: auto;
}

.service-learn-more-btn:hover {
    background-color: #0052a3;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Alternative button colors for different cards */
.services-swiper .swiper-slide:nth-child(1) .service-learn-more-btn {
    background-color: #0066CC;
}

.services-swiper .swiper-slide:nth-child(1) .service-learn-more-btn:hover {
    background-color: #0052a3;
}

.services-swiper .swiper-slide:nth-child(2) .service-learn-more-btn {
    background-color: #28a745;
}

.services-swiper .swiper-slide:nth-child(2) .service-learn-more-btn:hover {
    background-color: #218838;
}

.services-swiper .swiper-slide:nth-child(3) .service-learn-more-btn {
    background-color: #ff9800;
}

.services-swiper .swiper-slide:nth-child(3) .service-learn-more-btn:hover {
    background-color: #e68900;
}

.services-swiper .swiper-slide:nth-child(4) .service-learn-more-btn {
    background-color: #9c27b0;
}

.services-swiper .swiper-slide:nth-child(4) .service-learn-more-btn:hover {
    background-color: #7b1fa2;
}

.services-swiper .swiper-slide:nth-child(5) .service-learn-more-btn {
    background-color: #f44336;
}

.services-swiper .swiper-slide:nth-child(5) .service-learn-more-btn:hover {
    background-color: #d32f2f;
}

.services-swiper .swiper-slide:nth-child(6) .service-learn-more-btn {
    background-color: #00bcd4;
}

.services-swiper .swiper-slide:nth-child(6) .service-learn-more-btn:hover {
    background-color: #0097a7;
}

/* Modern Navigation Arrows */
.services-swiper-button-next,
.services-swiper-button-prev {
    width: 48px;
    height: 48px;
    border: none !important;
    border-radius: 50%;
    color: #ffffff !important;
    display: flex !important;
    align-items: center;
    background: linear-gradient(135deg, #1d3954 0%, var(--primary-dark) 100%);
    justify-content: center;
    cursor: pointer !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000 !important;
    margin-top: 0;
    opacity: 1 !important;
    visibility: visible !important;
    outline: none;
    overflow: visible;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.services-swiper-button-next:hover,
.services-swiper-button-prev:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-50%) scale(1.05);
}


.services-swiper-button-next:focus,
.services-swiper-button-prev:focus {
    outline: 3px solid rgba(0, 102, 204, 0.3);
    outline-offset: 4px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.1),
                0 0 0 4px rgba(0, 102, 204, 0.1);
}

.services-swiper-button-next::after,
.services-swiper-button-prev::after {
    display: none;
}

.services-swiper-button-next i,
.services-swiper-button-prev i {
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
    color: inherit !important;
}

.services-swiper-button-prev {
    left: -60px !important;
}

.services-swiper-button-prev i {
    transform: translateX(0);
}

.services-swiper-button-next {
    right: -60px !important;
}

.services-swiper-button-next i {
    transform: translateX(0);
}

/* Ensure arrows are always visible and clickable */
.services-swiper-wrapper .services-swiper-button-prev,
.services-swiper-wrapper .services-swiper-button-next,
.services-swiper .services-swiper-button-prev,
.services-swiper .services-swiper-button-next {
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Override any Swiper default hiding */
.services-swiper .swiper-button-prev,
.services-swiper .swiper-button-next {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure buttons are not hidden by Swiper */
.services-swiper-button-prev.swiper-button-disabled,
.services-swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.6 !important;
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Override Swiper's default disabled state for our custom buttons */
.services-swiper-button-prev.swiper-button-disabled,
.services-swiper-button-next.swiper-button-disabled {
    opacity: 0.5 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Force visibility for all arrow button states */
button.services-swiper-button-prev,
button.services-swiper-button-next,
.services-swiper-button-prev.swiper-button-prev,
.services-swiper-button-next.swiper-button-next {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure container allows overflow for arrows */
.services-section {
    overflow: visible !important;
}

.services-section .container {
    overflow: visible !important;
    position: relative;
}

/* Ensure parent containers don't clip arrows */
.services-section > * {
    overflow: visible !important;
}


.services-swiper-button-next:active,
.services-swiper-button-prev:active {
    transform: translateY(-50%) scale(0.95) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15) !important;
}

/* Modern Disabled State - but keep buttons clickable for loop mode */
.services-swiper-button-next.swiper-button-disabled,
.services-swiper-button-prev.swiper-button-disabled {
    opacity: 0.5 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    background: linear-gradient(135deg, #1d3954 0%, var(--primary-dark) 100%);
    color: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .services-swiper-button-next,
    .services-swiper-button-prev {
        width: 52px;
        height: 52px;
        -webkit-tap-highlight-color: rgba(0, 102, 204, 0.2);
        touch-action: manipulation;
    }
}

/* Modern Responsive Styles */
@media (max-width: 1200px) {
    .services-swiper-wrapper {
        padding: 0 85px;
    }
    
    .services-swiper-button-prev {
        left: -85px !important;
    }
    
    .services-swiper-button-next {
        right: -85px !important;
    }
}

@media (max-width: 992px) {
    .services-swiper-wrapper {
        padding: 0 70px;
    }
    
    .services-swiper-button-next,
    .services-swiper-button-prev {
        width: 54px;
        height: 54px;
    }
    
    .services-swiper-button-next i,
    .services-swiper-button-prev i {
        font-size: 18px;
    }
    
    .services-swiper-button-prev {
        left: -70px !important;
    }
    
    .services-swiper-button-next {
        right: -70px !important;
    }
}

@media (min-width: 992px) {
    .services-swiper-wrapper {
        padding: 0 80px;
    }
    
    .services-swiper {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-swiper-wrapper {
        padding: 0 60px;
    }
    
    .services-swiper-button-next,
    .services-swiper-button-prev {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
        box-shadow: 0 6px 20px rgba(0, 102, 204, 0.18),
                    0 2px 6px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .services-swiper-button-next i,
    .services-swiper-button-prev i {
        font-size: 18px;
    }
    
    .services-swiper-button-prev {
        left: 8px;
    }
    
    .services-swiper-button-next {
        right: 8px;
    }
    
    .services-swiper-button-next:hover,
    .services-swiper-button-prev:hover {
        background: #f8f9fa !important;
        color: #333 !important;
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Ensure single slide on mobile */
    .services-swiper .swiper-slide {
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .services-swiper-wrapper {
        padding: 0 55px;
    }
    
    .services-swiper-button-next,
    .services-swiper-button-prev {
        width: 44px;
        height: 44px;
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .services-swiper-button-next i,
    .services-swiper-button-prev i {
        font-size: 16px;
    }
    
    .services-swiper-button-prev {
        left: 5px !important;
    }
    
    .services-swiper-button-next {
        right: 5px !important;
    }
}

@media (max-width: 480px) {
    .services-swiper-wrapper {
        padding: 0 50px;
    }
    
    .services-swiper-button-next,
    .services-swiper-button-prev {
        width: 40px;
        height: 40px;
        background: #ffffff !important;
    }
    
    .services-swiper-button-next i,
    .services-swiper-button-prev i {
        font-size: 14px;
    }
    
    .services-swiper-button-prev {
        left: 3px !important;
    }
    
    .services-swiper-button-next {
        right: 3px !important;
    }
}

/* Smooth Transitions */
.services-swiper .swiper-slide {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.services-swiper .swiper-slide-active {
    opacity: 1;
}

/* Enhanced smooth transitions for loop mode */
.services-swiper.swiper {
    overflow: hidden;
}

.services-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Touch/swipe improvements */
.services-swiper {
    touch-action: pan-y;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Focus states for accessibility */
.services-swiper-button-next:focus,
.services-swiper-button-prev:focus {
    outline: 2px solid #0066CC;
    outline-offset: 2px;
}

/* Ensure proper spacing on mobile */
@media (max-width: 768px) {
    .services-swiper .swiper-slide {
        padding: 0 8px;
    }
}

/* ============================================
   Service Pages Styling
   ============================================ */

/* Service Hero Section */
.service-hero-section {
    background: #fffaf3;
    padding: 4rem 0;
}

.service-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f1010;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero-description {
    font-size: 1.125rem;
    color: #040404;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Details Section */
.service-details-section {
    padding: 4rem 0;
}

.service-intro-text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
}

.service-intro-text a {
    color: #0066CC;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-intro-text a:hover {
    color: #00A896;
}

/* Service Procedure Categories */
.service-procedure-category {
    margin-bottom: 4rem;
}

.service-procedure-category .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #124a94;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-procedure-category .section-title i {
    color: #0066CC;
    font-size: 1.5rem;
}

/* Modern Dashed Divider */
.divider-line {
    width: 100%;
    height: 1px;
    margin: 2rem 0;
    background: transparent;
    border: none;
    position: relative;
    overflow: hidden;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 8px,
        rgba(0, 102, 204, 0.3) 8px,
        rgba(0, 102, 204, 0.3) 12px,
        transparent 12px,
        transparent 20px
    );
    animation: dividerMove 20s linear infinite;
}

.divider-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 8px,
        rgba(0, 168, 150, 0.4) 8px,
        rgba(0, 168, 150, 0.4) 12px,
        transparent 12px,
        transparent 20px
    );
    animation: dividerMove 15s linear infinite reverse;
    opacity: 0.6;
}

@keyframes dividerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(20px);
    }
}

/* Modern Procedure Cards */
.modern-procedure-card {
    background: #f0f8ff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-procedure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #0066CC 0%, #00A896 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.modern-procedure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066CC;
}

.modern-procedure-card:hover::before {
    transform: scaleY(1);
}

/* Procedure Icon Wrapper */
.procedure-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.procedure-icon-wrapper i {
    font-size: 28px;
    color: #0066CC;
    transition: all 0.3s ease;
}

.modern-procedure-card:hover .procedure-icon-wrapper {
    background: linear-gradient(135deg, #0066CC 0%, #00A896 100%);
    transform: scale(1.1) rotate(5deg);
}

.modern-procedure-card:hover .procedure-icon-wrapper i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Procedure Type Title */
.procedure-type-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f1010;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Procedure Type Description */
.procedure-type-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Service Note Box */
.service-note-box {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 150, 0.05) 100%);
    border-left: 4px solid #0066CC;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-note-box i {
    color: #0066CC;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-note {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.service-note a {
    color: #0066CC;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-note a:hover {
    color: #00A896;
    text-decoration: underline;
}

/* Service CTA Section */
.service-cta-section {
    background: linear-gradient(135deg, #0066CC 0%, #00A896 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: #ffffff;
}

.service-cta-section .section-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-cta-section .service-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-hero-section {
        padding: 2rem 0;
    }
    
    .service-details-section {
        padding: 2rem 0;
    }
    
    .modern-procedure-card {
        padding: 1.5rem;
    }
    
    .procedure-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .procedure-icon-wrapper i {
        font-size: 24px;
    }
    
    .service-cta-section {
        padding: 2rem 1.5rem;
    }
}

/* ===== About Us Page Styles ===== */

/* Expert Banner Section */
.expert-banner-section {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    margin: 3rem 0;
}

.expert-banner-section .btn-light {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.expert-banner-section .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Care Point Item */
.care-point-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #363636;
}

.care-point-item i {
    font-size: 1.25rem;
}

/* Comprehensive Care Section */
.comprehensive-care-section {
    background: #e9f4ff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Achievements Section */
.achievements-section {
    background: #ffffff;
    padding: 4rem 0;
}

.achievement-link {
    display: inline-block;
    margin-top: 1rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.achievement-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Accordion Modern Styles */

.accordion-item-modern {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-header-modern {
    margin: 0;
}

.accordion-button-modern {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #0066cc;
    color: white;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button-modern:hover {
    background: #0052a3;
}

.accordion-button-modern:not(.collapsed) {
    background: #0052a3;
}

.accordion-button-modern:not(.collapsed) i {
    transform: rotate(180deg);
}

.accordion-button-modern i {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.accordion-collapse-modern {
    transition: height 0.35s ease;
}

.accordion-body-modern {
    padding: 0 1.5rem 1.5rem 1.5rem;
    background: white;
}

/* Qualifications List */
.qualifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualifications-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #363636;
    line-height: 1.6;
}

.qualifications-list li:last-child {
    border-bottom: none;
}

.qualifications-list li strong {
    color: #0066cc;
    display: block;
    margin-bottom: 0.25rem;
}

/* Experience Section */


/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #e35353;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #666;
    padding: 0 0.5rem;
}

/* Experience Badge Update */
.about-image-container .experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px 0 0 0;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 10;
    min-width: 200px;
    text-align: center;
}

/* Responsive Styles for About Us */
@media (max-width: 768px) {
    .expert-banner-section .row {
        text-align: center;
    }
    
    .expert-banner-section .col-lg-4 {
        margin-top: 1.5rem;
        text-align: center !important;
    }
    
    .comprehensive-care-section {
        padding: 1.5rem;
    }
    
    .accordion-button-modern {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body-modern {
        padding: 0 1rem 1rem 1rem;
    }
    
    .about-image-container .experience-badge {
        min-width: 150px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===== Attachments Section ===== */
.attachments-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.attachments-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.attachments-hero-content {
    position: relative;
    z-index: 1;
}

.attachments-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--white);
}

.attachments-hero-badge i {
    font-size: var(--fs-base);
}

.attachments-breadcrumb {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xl);
}

.attachments-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
}

.attachments-breadcrumb .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition-fast);
}

.attachments-breadcrumb .breadcrumb-item a:hover {
    opacity: 0.8;
}

.attachments-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.attachments-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "/";
}

.attachments-hero-title {
    font-size: var(--fs-5xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.attachments-hero-subtitle {
    font-size: var(--fs-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 750px;
    margin-bottom: 0;
}

.attachments-section {
    background: var(--gray-bg);
    padding: 5rem 0;
}

.attachments-grid-wrapper {
    position: relative;
}

.facility-card-modern {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.facility-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.facility-card-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
    border-color: #edcaca;
}

.facility-card-modern:hover::after {
    transform: scaleX(1);
}

.facility-card-badge {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 2;
}

.facility-badge-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.facility-card-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #e3eff9;
}

.facility-card-header-modern {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--gray-lightest);
}

.facility-icon-wrapper-modern {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, #92afd2, #124a94);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.facility-icon-wrapper-modern i {
    font-size: var(--fs-3xl);
    color: var(--white);
}

.facility-title-modern {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-top: var(--spacing-sm);
}

.facility-card-body-modern {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.facility-info-row {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.facility-info-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--fs-sm);
    font-weight: 600;
color: #bd5d5d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.facility-info-label i {
    font-size: var(--fs-base);
}

.facility-address-modern {
    font-size: var(--fs-base);
    color: var(--gray-dark);
    line-height: 1.8;
    margin: 0;
    padding-left:20px;
}

.facility-timing-modern {
    font-size: var(--fs-base);
    color: var(--gray-dark);
    font-weight: 600;
    padding-left: calc(var(--spacing-md) + var(--spacing-sm) + 16px);
}

.facility-card-footer-modern {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--gray-lightest);
}

.facility-cta-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--fs-base);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
    position: relative;
    overflow: hidden;
}

.facility-cta-btn-modern::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.6s ease;
}

.facility-cta-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
    color: var(--white);
    text-decoration: none;
}

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

.facility-cta-btn-modern:hover i {
    transform: translateX(4px);
}

.facility-cta-btn-modern i {
    transition: transform var(--transition-base);
    font-size: var(--fs-sm);
}

.facility-cta-btn-modern:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .attachments-hero-section {
        padding: 4rem 0 3rem;
    }
    
    .attachments-hero-title {
        font-size: var(--fs-4xl);
    }
    
    .attachments-hero-subtitle {
        font-size: var(--fs-lg);
    }
    
    .facility-card-header-modern {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .facility-icon-wrapper-modern {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
    
    .facility-icon-wrapper-modern i {
        font-size: var(--fs-2xl);
    }
    
    .facility-title-modern {
        text-align: center;
        padding-top: 0;
    }
    
    .facility-address-modern,
    .facility-timing-modern {
        padding-left: 0;
        text-align: center;
    }
    
    .facility-info-label {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .attachments-hero-section {
        padding: 3rem 0 2.5rem;
    }
    
    .attachments-hero-title {
        font-size: var(--fs-3xl);
    }
    
    .attachments-hero-subtitle {
        font-size: var(--fs-base);
    }
    
    .attachments-hero-badge {
        font-size: var(--fs-xs);
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .attachments-section {
        padding: 3rem 0;
    }
    
    .facility-card-content {
        padding: var(--spacing-lg);
    }
    
    .facility-card-header-modern {
        margin-bottom: var(--spacing-lg);
        padding-bottom: var(--spacing-md);
    }
    
    .facility-card-body-modern {
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .facility-card-badge {
        top: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .facility-icon-wrapper-modern {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .facility-icon-wrapper-modern i {
        font-size: var(--fs-xl);
    }
    
    .facility-title-modern {
        font-size: var(--fs-lg);
    }
}

@media (max-width: 576px) {
    .attachments-hero-title {
        font-size: var(--fs-2xl);
    }
    
    .attachments-hero-subtitle {
        font-size: var(--fs-sm);
    }
    
    .facility-card-modern {
        border-radius: var(--radius-xl);
    }
    
    .facility-card-content {
        padding: var(--spacing-md);
    }
    
    .facility-cta-btn-modern {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--fs-sm);
    }
}

/* Legacy support for old classes */
.facility-card {
    background: #f5f5f5;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.facility-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.facility-title {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.facility-address {
    font-size: var(--fs-base);
    color: var(--gray-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    flex-grow: 1;
}

.facility-timing {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--fs-base);
    color: var(--gray-dark);
    margin-top: auto;
}

.facility-timing i {
    color: var(--primary-color);
    font-size: var(--fs-lg);
}

.facility-timing span {
    color: var(--gray-dark);
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: #ffffff;
    padding: 4rem 0;
}

.gallery-filters {
    margin-bottom: 2rem;
}

.gallery-filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--fs-base);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--gray-lightest);
}

.gallery-item-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 102 204 / 31%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.gallery-overlay-content i {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: none;
}

.gallery-caption {
    font-size: var(--fs-lg);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item.hidden {
    display: none;
}

/* ===== Lightbox Styles ===== */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform var(--transition-fast);
    z-index: 10001;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-caption {
    color: var(--white);
    font-size: var(--fs-lg);
    margin-top: var(--spacing-md);
    text-align: center;
    font-weight: 600;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-filter-btn {
        padding: 0.5rem 1rem;
        font-size: var(--fs-sm);
        margin: 0.25rem;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-nav {
        font-size: 1.5rem;
        padding: 0.75rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
    }
}

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

    .gallery-filter-btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-section .row {
    flex-wrap: nowrap;
}

/* Allow wrapping on mobile devices */
@media (max-width: 991.98px) {
    .contact-section .row {
        flex-wrap: wrap;
    }
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
}

.contact-info-card {
    border-radius: 16px;
    background: #f0f8ff;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid rgba(96, 129, 159, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #60819f 0%, #2c476a 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(96, 129, 159, 0.15);
    border-color: rgba(96, 129, 159, 0.2);
}

.contact-info-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #60819f 0%, #2c476a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(96, 129, 159, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(96, 129, 159, 0.4);
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-title {
    color: #2c476a;
}

.contact-info-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.contact-info-text strong {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.0625rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-info-note {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-link {
    color: #2c476a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover {
    color: #60819f;
    text-decoration: none;
}

.contact-link:hover i {
    transform: translateX(4px);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #60819f 0%, #2c476a 100%);
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(96, 129, 159, 0.25);
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #2c476a 0%, #60819f 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 129, 159, 0.35);
}

.contact-btn:active {
    transform: translateY(0);
}

/* Map Container */
.map-container-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact CTA Section */
.contact-cta-section {
    /* background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); */
    color: #ffffff;
}

.contact-cta-card {
    background: linear-gradient(135deg, #60819f 0%, #2c476a 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-cta-card .btn-modern-primary {
    background: #ffffff;
    color: #124a94;
    border-color: #ffffff;
}

.contact-cta-card .btn-modern-primary:hover {
    background: #f1f5f9;
    color: #1e40af;
}

.contact-cta-card .btn-modern-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-cta-card .btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .map-container {
        height: 450px;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon-wrapper {
        margin: 0 auto;
    }

    .contact-cta-card {
        text-align: center;
    }

    .contact-cta-card .text-lg-end {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }

    .contact-info-cards {
        gap: 1rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-icon-wrapper {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.375rem;
    }

    .contact-cta-card {
        padding: 1.5rem;
    }

    .map-actions {
        flex-direction: column;
    }

    .map-actions .btn-modern {
        width: 100%;
        justify-content: center;
    }
    .hero-split-container {
         display: flex;
         flex-direction: column;
         width: 100%;
         max-height: none !important;
    }
    .hero-image-badge-carousel {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: 738px !important;
        margin: var(--spacing-lg) auto 0;
    }
    .hero-image-wrapper
    {
        margin-top: 0px !important;
    }
    .hero-tiled-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: none;
        opacity: 0.5;
        z-index: 1;
    }
    .hero-split-section {
        position: relative;
        display: block;
        align-items: stretch;
        overflow: visible;
    }
    .hero-right-section {
        padding: 4px 10px;
        min-height: 738px;
        display: flex;
        align-items: flex-start;
    }
    .hero-left-section {
        padding: var(--spacing-2xl) var(--spacing-lg);
        min-height: auto;
        width: 100%;
        overflow: visible;
    }
    .badge-title {
        font-size: 1.8rem;
    }
    .badge-subtitle {
        font-size: 1rem;
    }

    /* Badge Banner Responsive Styles */
    .badge-headline {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: var(--spacing-xs);
    }

    .badge-subline {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: var(--spacing-md);
        max-width: 95%;
        line-height: 1.5;
    }

    .badge-cta-button {
        padding: 12px 24px;
        font-size: clamp(0.85rem, 2vw, 1rem);
        margin-top: var(--spacing-xs);
    }

    .badge-text {
        padding-bottom: 40px;
        gap: var(--spacing-sm);
    }
    .about-image-wrapper {
        margin-bottom: 10px;
    }
    .about-actions .btn-modern {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: var(--fs-sm);
        border: 1px solid #b3424240;
    }
    .services-swiper-wrapper {
        padding: 0 16px;
    }
    .services-swiper-button-next, .services-swiper-button-prev {
        width: 35px;
        height: 35px;

        box-shadow: 0 6px 20px rgba(0, 102, 204, 0.18), 0 2px 6px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: linear-gradient(135deg, #1d3954 0%, var(--primary-dark) 100%)!important;
    }
    .services-swiper-button-next:hover, .services-swiper-button-prev:hover {
        background: linear-gradient(135deg, #1d3954 0%, var(--primary-dark) 100%)!important;
        color: #ffffff !important;
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
    .hero-badge-item {
        padding: 5px 5px;
        gap: var(--spacing-md);
    }
    .hero-cta-button {
        padding: 10px 6px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    .navbar-toggler-icon-new::before, .navbar-toggler-icon-new::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #c92525;
    transition: all var(--transition-base);
}
.navbar-toggler-icon-new {
    display: block;
    width: 25px;
    height: 2px;
    background: #2b5285;
    position: relative;
    transition: all var(--transition-base);
}
.procedure-type-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #100f0f;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.service-cta-section {
    background: #f0f8ff;
    border-radius: 20px;
    padding: 3rem 2rem;
    color: #ffffff;
}
.service-cta-section {
    padding: 2rem 1.5rem;
    border: 1px solid #f7cdcd;
}
.service-cta-section .service-text {
    color: rgb(0 0 0 / 95%);
    font-size: 1.125rem;
}
.service-procedure-category .section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #124a94;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service-hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
}

@media (max-width: 576px) {
    .map-container {
        height: 350px;
    }

    .contact-info-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }

    .contact-info-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .contact-info-text {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .contact-info-text strong {
        font-size: 1rem;
    }

    .contact-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }

    .contact-link {
        font-size: 0.875rem;
    }
}

/* ===== Modern Gallery Slider Section ===== */
.gallery-slider-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Home Page Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 3rem;
    width: 100%;
}

.gallery-grid .gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-grid .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.gallery-grid .gallery-item .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-grid .gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 2rem;
    }
    
    .gallery-grid .gallery-item {
        aspect-ratio: 16 / 9;
        border-radius: 10px;
    }
}

.gallery-swiper-wrapper {
    position: relative;
    padding: 0 60px 50px;
    margin-top: 3rem;
}

.gallery-swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}

.gallery-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.gallery-swiper .swiper-slide {
    height: auto;
    display: flex;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-slide-item {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    touch-action: pan-y pinch-zoom;
    -webkit-tap-highlight-color: transparent;
    background: #f0f0f0;
}

.gallery-slide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.gallery-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform-origin: center center;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
}

/* Ensure images maintain aspect ratio and fill container completely */
.gallery-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Ensure images maintain aspect ratio and fully cover container */
.gallery-swiper .swiper-slide {
    height: auto;
    display: flex;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-slide,
.gallery-swiper .swiper-slide > * {
    height: 100%;
}

/* Desktop Zoom Effect on Hover */
@media (hover: hover) and (pointer: fine) {
    .gallery-slide-item:hover .gallery-slide-image {
        transform: scale(1.2);
    }
    
    .gallery-slide-item:active .gallery-slide-image {
        transform: scale(1.1);
    }
}

/* Mobile Zoom Effect on Tap */
.gallery-slide-item.zoom-active {
    z-index: 10;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gallery-slide-item.zoom-active .gallery-slide-image {
    transform: scale(1.3);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth zoom out transition */
.gallery-slide-item:not(.zoom-active) .gallery-slide-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gallery Navigation Buttons */
.gallery-swiper-button-next,
.gallery-swiper-button-prev {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: linear-gradient(135deg, #1d3954 0%, var(--primary-dark) 100%);
    opacity: 0.8;
    visibility: visible;
    pointer-events: auto;
}

/* Show navigation buttons more prominently on wrapper hover */
.gallery-swiper-wrapper:hover .gallery-swiper-button-next,
.gallery-swiper-wrapper:hover .gallery-swiper-button-prev {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-swiper-button-next:hover,
.gallery-swiper-button-prev:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.gallery-swiper-button-next:active,
.gallery-swiper-button-prev:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-swiper-button-prev {
    left: -60px;
}

.gallery-swiper-button-next {
    right: -60px;
}

.gallery-swiper-button-next i,
.gallery-swiper-button-prev i {
    font-size: 18px;
    font-weight: 600;
}

/* Gallery Pagination */
.gallery-swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    text-align: center;
}

.gallery-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d0d0d0;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.gallery-swiper-pagination .swiper-pagination-bullet-active {
    background: #0066CC;
    width: 32px;
    border-radius: 6px;
    transform: scale(1.2);
}


.logo-img-new_ {
    height: 70px;
    border-radius: 20px;
    width: auto;
    padding: 10px;
    transition: transform var(--transition-base);
    background: aliceblue;
}

/* Ensure exactly 3 slides are visible on desktop */
@media (min-width: 992px) {
    .gallery-swiper .swiper-slide {
        width: calc((100% - 48px) / 3) !important; /* 3 slides with 24px spacing between */
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .gallery-swiper .swiper-slide {
        width: calc((100% - 20px) / 2) !important; /* 2 slides with 20px spacing */
    }
}

@media (max-width: 767px) {
    .gallery-swiper .swiper-slide {
        width: 100% !important; /* 1 slide full width */
    }
}

/* Responsive Gallery Slider - Exactly 3 images on desktop */
@media (min-width: 992px) {
    .gallery-swiper-wrapper {
        padding: 0 80px 50px;
    }
    
    .gallery-slide-item {
        height: 400px;
    }
    
    /* Always show navigation on desktop when hovering wrapper */
    .gallery-swiper-wrapper:hover .gallery-swiper-button-next,
    .gallery-swiper-wrapper:hover .gallery-swiper-button-prev {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 991px) {
    .gallery-swiper-wrapper {
        padding: 0 60px 50px;
    }
    
    .gallery-slide-item {
        height: 350px;
    }
    
    .gallery-swiper-button-next,
    .gallery-swiper-button-prev {
        width: 44px;
        height: 44px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .gallery-swiper-button-prev {
        left: 10px;
    }
    
    .gallery-swiper-button-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-swiper-wrapper {
        padding: 0 50px 50px;
    }
    
    .gallery-slide-item {
        height: 300px;
        border-radius: 12px;
    }
    
    .gallery-swiper-button-next,
    .gallery-swiper-button-prev {
        width: 40px;
        height: 40px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .gallery-swiper-button-prev {
        left: 5px;
    }
    
    .gallery-swiper-button-next {
        right: 5px;
    }
    
    .gallery-swiper-button-next i,
    .gallery-swiper-button-prev i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-swiper-wrapper {
        padding: 0 50px 50px;
    }
    
    .gallery-slide-item {
        height: 280px;
        border-radius: 10px;
    }
    
    .gallery-swiper-button-next,
    .gallery-swiper-button-prev {
        width: 36px;
        height: 36px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .gallery-swiper-button-prev {
        left: 5px;
    }
    
    .gallery-swiper-button-next {
        right: 5px;
    }
    
    .gallery-swiper-button-next i,
    .gallery-swiper-button-prev i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-swiper-wrapper {
        padding: 0 45px 50px;
    }
    
    .gallery-slide-item {
        height: 250px;
    }
    
    .gallery-swiper-button-next,
    .gallery-swiper-button-prev {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   Educational Videos Section Styles
   ============================================ */

.educational-videos-section {
    background: var(--gray-bg);
    position: relative;
}

.educational-video-card {
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.video-card-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.educational-video-card:hover .video-card-wrapper {
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: #000;
}

/* When no content, video should have full border-radius */
.video-card-wrapper.no-content .video-wrapper {
    border-radius: var(--radius-xl);
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* When no content, iframe should have full border-radius */
.video-card-wrapper.no-content .video-iframe {
    border-radius: var(--radius-xl);
}

.video-card-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-description {
    font-size: var(--fs-base);
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video Card Placeholder */
.video-card-placeholder .video-card-wrapper {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-light) 100%);
    border: 2px dashed var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card-placeholder:hover .video-card-wrapper {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    border-color: var(--primary-dark);
    transform: scale(1.02);
}

.video-placeholder-content {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--primary-color);
}

.video-placeholder-content i {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-card-placeholder:hover .video-placeholder-content i {
    opacity: 1;
    transform: scale(1.1);
}

.video-placeholder-content h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

.video-placeholder-content p {
    font-size: var(--fs-base);
    color: var(--gray-medium);
    margin: 0;
}

/* Responsive Styles for Educational Videos */
@media (max-width: 992px) {
    .educational-video-card {
        margin-bottom: var(--spacing-lg);
    }
    
    .video-card-content {
        padding: var(--spacing-md);
    }
    
    .video-card-title {
        font-size: var(--fs-lg);
    }
}

@media (max-width: 768px) {
    .educational-videos-section {
        padding: var(--spacing-2xl) 0 !important;
    }
    
    .video-card-wrapper {
        border-radius: var(--radius-lg);
    }
    
    .video-wrapper {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .video-iframe {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .video-card-content {
        padding: var(--spacing-md);
    }
    
    .video-card-title {
        font-size: var(--fs-base);
        margin-bottom: var(--spacing-xs);
    }
    
    .video-card-description {
        font-size: var(--fs-sm);
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .video-placeholder-content {
        padding: var(--spacing-lg);
    }
    
    .video-placeholder-content i {
        font-size: 3rem;
    }
    
    .video-placeholder-content h4 {
        font-size: var(--fs-lg);
    }
}

@media (max-width: 576px) {
    .video-card-content {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .video-placeholder-content i {
        font-size: 2.5rem;
    }
}

/* ============================================
   Achievements Section Responsive Styles
   ============================================ */

@media (max-width: 992px) {
    .achievement-card {
        min-height: 200px;
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .achievement-icon {
        width: 70px;
        height: 70px;
        font-size: var(--fs-2xl);
    }
    
    .achievement-number {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

@media (max-width: 768px) {
    .achievements-section {
        padding: var(--spacing-2xl) 0 !important;
    }
    
    .achievement-card {
        min-height: 180px;
        padding: var(--spacing-lg);
    }
    
    .achievement-icon-wrapper {
        margin-bottom: var(--spacing-md);
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
        font-size: var(--fs-xl);
    }
    
    .achievement-number {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .achievement-label {
        font-size: var(--fs-sm);
    }
    
    .achievement-divider {
        width: 50px;
        height: 2px;
    }
    
    .achievement-card:hover .achievement-divider {
        width: 60px;
    }
}

@media (max-width: 576px) {
    .achievement-card {
        min-height: 160px;
        padding: var(--spacing-md);
    }
    
    .achievement-icon {
        width: 55px;
        height: 55px;
        font-size: var(--fs-lg);
    }
    
    .achievement-number {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
    }
    
    .achievement-content {
        gap: var(--spacing-xs);
    }
    
    .achievement-divider {
        width: 40px;
        margin: var(--spacing-xs) 0;
    }
    
    .achievement-card:hover .achievement-divider {
        width: 50px;
    }
}

/* ============================================
   Footer Responsive Styles
   ============================================ */

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-2xl);
    }
    
    .footer-column-brand {
        grid-column: 1 / -1;
    }
    
    .footer-column-map,
    .footer-column-contact {
        grid-column: span 1;
    }
    
    .footer-map-wrapper {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: var(--spacing-2xl) 0 var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-column-brand,
    .footer-column-map,
    .footer-column-contact {
        grid-column: 1;
    }
    
    .footer-logo {
        height: 90px;
        padding: 12px 18px;
    }
    
    .footer-heading {
        font-size: var(--fs-lg);
        margin-bottom: var(--spacing-md);
    }
    
    .footer-description {
        font-size: var(--fs-sm);
    }
    
    .footer-map-wrapper {
        height: 250px;
    }
    
    .footer-contact-item {
        gap: var(--spacing-sm);
    }
    
    .footer-contact-item i {
        font-size: var(--fs-base);
        width: 18px;
    }
    
    .footer-contact-content {
        font-size: var(--fs-sm);
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }
    
    .footer-content {
        gap: var(--spacing-xl);
        padding-bottom: var(--spacing-xl);
    }
    
    .footer-logo-wrapper {
        margin-bottom: var(--spacing-md);
    }
    
    .footer-logo {
        height: 80px;
        padding: 10px 15px;
    }
    
    .footer-heading {
        font-size: var(--fs-base);
        padding-bottom: var(--spacing-xs);
    }
    
    .footer-heading::after {
        width: 40px;
    }
    
    .footer-map-wrapper {
        height: 200px;
        border-radius: var(--radius-md);
    }
    
    .footer-map {
        border-radius: var(--radius-md);
    }
    
    .footer-contact {
        gap: var(--spacing-md);
    }
    
    .footer-contact-item {
        gap: var(--spacing-sm);
    }
    
    .footer-bottom {
        padding-top: var(--spacing-lg);
        margin-top: var(--spacing-xl);
    }
    
    .copyright {
        font-size: var(--fs-xs);
    }
}

/* ============================================
   Services Sidebar - Right Side Sticky
   ============================================ */

/* Services Sidebar Wrapper */
.services-sidebar-wrapper {
    position: relative;
}

/* Services Sidebar Card */
.services-sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.services-sidebar-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Services Sidebar Header */
.services-sidebar-header {
    background: linear-gradient(135deg, #1a5098 0%, #3c81df 50%, #1a5098 100%);
    padding: 24px;
    text-align: center;
}

.services-sidebar-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Services Sidebar Navigation */
.services-sidebar-nav {
    padding: 0;
}

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

.services-nav-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.services-nav-item:last-child {
    border-bottom: none;
}

.services-nav-item:hover {
    background: rgba(0, 102, 204, 0.02);
}

/* Services Navigation Links */
.services-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    gap: 12px;
}

.services-nav-text {
    flex: 1;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.services-nav-chevron {
    font-size: 14px;
    color: #999999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    flex-shrink: 0;
}

/* Hover State */
.services-nav-link:hover {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.05) 0%, transparent 100%);
   color: #ce5858;
    padding-left: 28px;
    padding-right: 20px;
    font-weight: 500;
}

.services-nav-link:hover .services-nav-chevron {
    color: #0066CC;
    opacity: 1;
    transform: translateX(4px);
}

/* Active State */
.services-nav-link.active {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 150, 0.05) 100%);
    color: #ce5858;
    font-weight: 600;
    border-left: 4px solid #0066CC;
    padding-left: 20px;
}

.services-nav-link.active .services-nav-chevron {
    color: #0066CC;
    opacity: 1;
    transform: translateX(4px);
}

.services-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0066CC 0%, #00A896 100%);
}

/* ============================================
   Responsive Styles for Services Sidebar
   ============================================ */

/* Tablet and Below */
@media (max-width: 992px) {
    .services-sidebar-card {
        top: 90px;
        border-radius: 12px;
    }
    
    .services-sidebar-title {
        font-size: 20px;
    }
    
    .services-nav-link {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .services-nav-chevron {
        font-size: 12px;
    }
}

/* Mobile Devices - Move sidebar below content */
@media (max-width: 768px) {
    .services-sidebar-wrapper {
        margin-top: 40px;
    }
    
    .services-sidebar-card {
        position: relative;
        top: 0;
        border-radius: 12px;
    }
    
    .services-sidebar-header {
        padding: 20px;
    }
    
    .services-sidebar-title {
        font-size: 18px;
    }
    
    .services-nav-link {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .services-nav-link:hover {
        padding-left: 24px;
        padding-right: 16px;
    }
    
    .services-nav-link.active {
        padding-left: 16px;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .services-sidebar-header {
        padding: 18px;
    }
    
    .services-sidebar-title {
        font-size: 16px;
    }
    
    .services-nav-link {
        padding: 14px 18px;
        font-size: 13px;
    }
    
    .services-nav-chevron {
        font-size: 11px;
    }
    .navbar-new {
    padding: 15px 0px;
    background: #f0f8ff;
}
.logo-img-new {
    height: 70px;
    width: auto;
    transition: transform var(--transition-base);
}
}

/* ============================================
   Modern Floating Contact Buttons
   ============================================ */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.floating-whatsapp-btn,
.floating-call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.floating-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
}

.floating-whatsapp-btn:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(37, 211, 102, 0.3);
    color: #ffffff;
}

.floating-call-btn {
    background: linear-gradient(135deg, #0066CC 0%, #0052a3 100%);
}

.floating-call-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4), 0 4px 12px rgba(0, 102, 204, 0.3);
    color: #ffffff;
}

.floating-whatsapp-btn:active,
.floating-call-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-whatsapp-btn,
    .floating-call-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .floating-contact-buttons {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }
    
    .floating-whatsapp-btn,
    .floating-call-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}
