@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@keyframes blink {
    0%, 49% { background-color: #dc3545; color: white; }
    50%, 100% { background-color: transparent; color: #333; }
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 177, 214, 0.1);
    box-shadow: 0 2px 8px rgba(0, 48, 94, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.left {
    display: flex;
    align-items: center;
    font-size: 0.95em;
    gap: 25px;
}

.emergency {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.book-link {
    color: #00B4D8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
}

.book-link:hover {
    background: rgba(0, 177, 214, 0.1);
    color: #0077B6;
}

.right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.9em;
    gap: 30px;
}

.address {
    font-size: 0.9em;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.address i {
    color: #00B4D8;
    font-size: 1em;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background: #00B4D8;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.social-icons a:hover {
    background: #0077B6;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 177, 214, 0.3);
}

nav {
    background: white;
    border-bottom: 2px solid rgba(0, 177, 214, 0.08);
    height: 85px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 48, 94, 0.08);
}

.nav-content {
    display: flex;
    align-items: center;
    padding: 0 5%;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-logo-img {
    height: 65px;
    transition: all 0.3s ease;
}

nav:hover .nav-logo-img {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 12px 22px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 0.95em;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00B4D8, #0077B6);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover {
    color: #00B4D8;
    background-color: rgba(0, 176, 218, 0.08);
}

.nav-menu a:hover::after {
    width: 100%;
}

.admin-login-btn {
    margin-left: auto;
    margin-right: 0;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    color: white !important;
    padding: 10px 20px !important;
}

.admin-login-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #a02622 100%) !important;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 10px 40px rgba(0, 48, 94, 0.15);
    min-width: 280px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 12px;
    border: 1px solid rgba(0, 177, 214, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 12px 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
    color: #333;
    border-bottom: none;
    border-left: 3px solid transparent;
    margin: 0;
}

.dropdown-menu li a:hover {
    background-color: rgba(0, 176, 218, 0.08);
    border-left-color: #00B4D8;
    padding-left: 25px;
}

.submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: white;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 10px 40px rgba(0, 48, 94, 0.15);
    min-width: 280px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    border-radius: 12px;
    border: 1px solid rgba(0, 177, 214, 0.1);
    margin-left: 0;
}

.dropdown-submenu:hover .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    padding: 10px 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
    color: #333;
    border-bottom: none;
    border-left: 3px solid transparent;
}

.submenu li a:hover {
    background-color: rgba(0, 176, 218, 0.08);
    border-left-color: #00B4D8;
}

/* Banner Section */
.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1) rotate(-2deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0deg);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(1.2);
    transition: transform 1.5s ease-out;
}

.slide.active .slide-background {
    transform: scale(1);
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: filter 1.2s ease;
}

.slide.active .slide-background img {
    filter: brightness(1) contrast(1.1);
}

/* Add overlay effect for depth */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(0, 48, 94, 0.3) 0%,
        rgba(118, 207, 230, 0.2) 50%,
        rgba(0, 48, 94, 0.3) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active::before {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5% 5% 2% 0;
}

.content-wrapper {
    max-width: 550px;
    padding: 20px 30px;
    margin-left: 75px;
    text-align: left;
    opacity: 1;
}

.slide.active .content-wrapper {
    opacity: 1;
}

.slide:not(.active) .content-wrapper {
    opacity: 0;
}

.content-header {
    margin-bottom: 10px;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0077B6 0%, #00B4D8 100%);
    margin-top: 10px;
    border-radius: 2px;
    animation: lineGrow 0.8s ease-out forwards;
}

@keyframes lineGrow {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.content-wrapper h2 {
    font-size: 1.1em;
    color: #0077B6;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.content-wrapper h1 {
    font-size: 2.5em;
    color: #0077B6;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    white-space: nowrap;
}

.content-wrapper p {
    font-size: 1em;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.2em;
    font-weight: 700;
    color: #00B4D8;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 0.9em;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.features li {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1em;
    display: flex;
    align-items: center;
}

.features li i {
    margin-right: 12px;
    color: #00B4D8;
    width: 20px;
    font-size: 1.1em;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.specialty {
    background: rgba(118, 207, 230, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 500;
    border: 1px solid rgba(118, 207, 230, 0.3);
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(118, 207, 230, 0.3);
}

.btn-primary:hover {
    background: transparent;
    border-color: #00B4D8;
    color: #00B4D8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 207, 230, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(118, 207, 230, 0.8);
    border-color: #00B4D8;
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 1.2em;
}

.banner-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #00B4D8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: #00B4D8;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(118, 207, 230, 0.8);
}

.indicator.active::before {
    width: 100%;
    height: 100%;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(118, 207, 230, 0.8);
    transform: scale(1.1);
}

/* Banner Card Styles */
.stats-cards {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: nowrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 110px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 1.8em;
    font-weight: 700;
    color: #0066cc !important;
    margin-bottom: 6px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.stat-label {
    font-size: 0.85em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-primary-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #0077B6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 2px solid #0077B6;
}

.btn-primary-card:hover {
    background: #ffffff;
    color: #0077B6;
    transform: translateY(-2px);
}

.btn-primary-card i {
    font-size: 1.1em;
}

.btn-secondary-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    color: #0077B6;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.85em;
    transition: all 0.3s ease;
    border: 2px solid #0077B6;
}

.btn-secondary-card:hover {
    background: #0077B6;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary-card i {
    font-size: 1em;
}

/* Family Health Section - Redesigned */
.family-health {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.family-health::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2300305e" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%2376cfe6" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%2300305e" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.family-health .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.family-health-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 48, 94, 0.1);
    border: 1px solid rgba(118, 207, 230, 0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-icon {
    font-size: 3em;
    color: #00B4D8;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.section-header h2 {
    font-size: 2.8em;
    font-weight: 800;
    color: #0077B6;
    margin: 0 0 20px 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.accent-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00B4D8 0%, #0077B6 100%);
    border-radius: 2px;
}

.accent-dot {
    width: 8px;
    height: 8px;
    background: #00B4D8;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(118, 207, 230, 0.5);
}

.section-subtitle {
    font-size: 1.2em;
    color: #666;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Text Content */
.text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(118, 207, 230, 0.05) 0%, rgba(0, 48, 94, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(118, 207, 230, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00B4D8 0%, #0077B6 100%);
    transition: width 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 48, 94, 0.1);
}

.feature-highlight:hover::before {
    width: 6px;
}

.highlight-icon {
    font-size: 2em;
    color: #00B4D8;
    background: rgba(118, 207, 230, 0.1);
    padding: 15px;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-highlight:hover .highlight-icon {
    background: #00B4D8;
    color: white;
    transform: scale(1.1);
}

.highlight-text h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: #0077B6;
    margin: 0 0 10px 0;
}

.highlight-text p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #00B4D8;
    color: white;
    box-shadow: 0 8px 25px rgba(118, 207, 230, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(118, 207, 230, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: 2px solid #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    animation: emergencyPulse 2s infinite;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #c82333 0%, #a02622 100%);
    border-color: #c82333;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
    animation: none;
}

/* Visual Content */
.visual-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 48, 94, 0.15);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 48, 94, 0.1) 0%, rgba(118, 207, 230, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.stats-badge {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(118, 207, 230, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8em;
    font-weight: 800;
    color: #0077B6;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.trust-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 48, 94, 0.08);
    border: 1px solid rgba(118, 207, 230, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 48, 94, 0.12);
}

.trust-item i {
    font-size: 1.5em;
    color: #00B4D8;
    margin-bottom: 8px;
    display: block;
}

.trust-item span {
    font-size: 0.9em;
    font-weight: 600;
    color: #0077B6;
    line-height: 1.3;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes emergencyPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.6), 0 0 30px rgba(220, 53, 69, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        gap: 40px;
    }

    .section-header h2 {
        font-size: 2.4em;
    }

    .feature-highlight {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 10px;
    }

    .left, .right {
        width: 100%;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .emergency, .book-link, .address, .social-icons {
        margin: 0;
        text-align: left;
    }

    .social-icons {
        margin-top: 5px;
    }

    /* Navbar Mobile Styles */
    .nav-content {
        padding: 0 20px;
        justify-content: space-between;
    }

    .nav-logo {
        position: static;
        transform: none;
        left: auto;
        top: auto;
    }

    .nav-logo-img {
        height: 50px;
        margin-right: 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: none;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #eee;
    }

    .nav-menu a {
        padding: 15px 20px;
        border-radius: 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        transform: none;
        display: none;
        background: #f9f9f9;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-submenu .submenu {
        display: none;
        position: static;
        box-shadow: none;
        opacity: 1;
        transform: none;
        background: #f8f8f8;
        margin-left: 40px;
    }

    .dropdown-submenu.active .submenu {
        display: block;
    }

    .dropdown-submenu a .fa-chevron-right {
        transition: transform 0.3s ease;
    }

    .dropdown-submenu.active a .fa-chevron-right {
        transform: rotate(90deg);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }

    .family-health {
        padding: 40px 0;
    }

    .family-health-content {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2em;
    }

    .header-icon {
        font-size: 2.5em;
    }

    .feature-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-icon {
        align-self: center;
    }

    .cta-section {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }

    .image-container img {
        height: 250px;
    }

    .stats-badge {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8em;
    }

    .family-health-content {
        padding: 20px 15px;
    }

    .feature-highlight {
        padding: 15px;
    }

    .highlight-text h3 {
        font-size: 1.2em;
    }

    /* Navbar Small Mobile Styles */
    .nav-content {
        padding: 0 15px;
    }

    .nav-logo-img {
        height: 40px;
    }

    .hamburger {
        right: 15px;
    }

    .nav-menu a {
        padding: 12px 15px;
        font-size: 0.9em;
    }

    .banner-nav {
        bottom: 15px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
    .slide-content {
        width: 95%;
        padding: 15px;
    }

    .content-wrapper h1 {
        font-size: 1.5em;
    }

    .content-wrapper h2 {
        font-size: 1em;
    }

    .content-wrapper p {
        font-size: 0.8em;
    }

    .stat-card {
        min-width: 70px;
        padding: 8px;
    }

    .stat-number {
        font-size: 1.2em;
    }

    .stat-label {
        font-size: 0.6em;
    }

    .btn-primary-card,
    .btn-secondary-card {
        font-size: 0.7em;
        padding: 8px 12px;
    }

    .banner-nav {
        bottom: 15px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Aparna's Health Specialities Section */
.health-specialities {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.health-specialities::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(118, 207, 230, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.health-specialities::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 177, 214, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.health-specialities .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    background: rgba(118, 207, 230, 0.15);
    color: #00B4D8;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(118, 207, 230, 0.3);
}

.health-specialities h2 {
    text-align: center;
    font-size: 3em;
    color: #0077B6;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.health-specialities > .container > p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

.specialities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.speciality-card {
    background: white;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 48, 94, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.speciality-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(118, 207, 230, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.speciality-card:hover::before {
    opacity: 1;
}

.speciality-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 177, 214, 0.15);
    border-color: #00B4D8;
}

.card-icon {
    font-size: 2.8em;
    color: #00B4D8;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.speciality-card:hover .card-icon {
    color: #0077B6;
    transform: scale(1.15) rotate(10deg);
}

.speciality-card h3 {
    font-size: 1.1em;
    color: #0077B6;
    margin-bottom: 6px;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.speciality-card p {
    color: #666;
    font-size: 0.85em;
    margin: 0;
    position: relative;
    z-index: 1;
}

.speciality-card:hover h3 {
    color: #00B4D8;
}

/* Mobile view: 2 cards per row */
@media (max-width: 768px) {
    .specialities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .speciality-card {
        padding: 30px 15px;
    }

    .health-specialities h2 {
        font-size: 2.2em;
    }

    .section-tag {
        font-size: 0.85em;
        padding: 6px 15px;
    }
}

/* Our Achievements Section */
.our-achievements {
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 50%, #00a8d8 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.our-achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.our-achievements .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.our-achievements h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.our-achievements .container > p {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 60px;
    opacity: 0.95;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.achievements-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px) rotateX(-10deg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.card.animate {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.card:nth-child(1).animate { transition-delay: 0.1s; }
.card:nth-child(2).animate { transition-delay: 0.2s; }
.card:nth-child(3).animate { transition-delay: 0.3s; }
.card:nth-child(4).animate { transition-delay: 0.4s; }

.card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.18);
}

.card .icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.card:hover .icon {
    opacity: 1;
    transform: scale(1.1) rotate(-10deg);
}

.card .number {
    display: block;
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card .label {
    font-size: 1.1em;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .our-achievements {
        padding: 70px 0;
    }

    .achievements-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        padding: 30px 20px;
    }

    .card .number {
        font-size: 2.2em;
    }

    .our-achievements h2 {
        font-size: 2.2em;
    }

    .our-achievements > p {
        font-size: 1.1em;
    }
}

/* Aparna Advantage Section */
.aparna-advantage {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    padding: 100px 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

.aparna-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 207, 230, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.aparna-advantage::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 177, 214, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.aparna-advantage .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.aparna-advantage h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.aparna-advantage .container > p {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 70px;
    color: #666;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 48, 94, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00B4D8, #0077B6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(118, 207, 230, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.advantage-card:nth-child(1).animate { transition-delay: 0.1s; }
.advantage-card:nth-child(2).animate { transition-delay: 0.2s; }
.advantage-card:nth-child(3).animate { transition-delay: 0.3s; }
.advantage-card:nth-child(4).animate { transition-delay: 0.4s; }

.advantage-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 177, 214, 0.15);
    border-color: #00B4D8;
}

.advantage-card .icon {
    font-size: 3.5em;
    color: #00B4D8;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    background: rgba(118, 207, 230, 0.08);
    position: relative;
    z-index: 1;
}

.advantage-card:hover .icon {
    color: #0077B6;
    transform: scale(1.15) rotate(-10deg);
    background: rgba(118, 207, 230, 0.15);
}

.advantage-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #0077B6;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.advantage-card:hover h3 {
    color: #00B4D8;
}

.advantage-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1em;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .aparna-advantage {
        padding: 70px 0;
    }

    .aparna-advantage h2 {
        font-size: 2.2em;
    }

    .aparna-advantage > p {
        font-size: 1.1em;
        margin-bottom: 50px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 30px 25px;
    }

    .advantage-card .icon {
        font-size: 2.8em;
        padding: 15px;
        margin-bottom: 20px;
    }

    .advantage-card h3 {
        font-size: 1.4em;
    }
}

/* Gynaecology Services Section */
.gynaecology-services {
    background-color: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

.gynaecology-services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gynaecology-services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #00B4D8;
    font-weight: 600;
}

.gynaecology-services p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 50px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 3em;
    color: #00B4D8;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card:hover .icon {
    color: #5ba3b8;
}

.service-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1em;
}

/* Gynaecology Services - Soft and Feminine */
.gynaecology-services .service-card {
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
    border-radius: 20px;
    border: 2px solid #b3e5fc;
    box-shadow: 0 8px 25px rgba(179, 229, 252, 0.3);
}

.gynaecology-services .service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(179, 229, 252, 0.4);
}

.gynaecology-services .service-card .icon {
    color: #00B4D8;
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gynaecology-services .service-card:hover .icon {
    color: #5ba3b8;
    transform: scale(1.1);
}

/* Cardiology Services - Medical and Professional */
.cardiology-services .service-card {
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
    border-radius: 10px;
    border: 2px solid #ffcccc;
    box-shadow: 0 6px 20px rgba(255, 204, 204, 0.3);
}

.cardiology-services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 204, 204, 0.5);
    border-color: #ff9999;
}

.cardiology-services .service-card .icon {
    color: #dc2626;
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cardiology-services .service-card:hover .icon {
    color: #e63946;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Orthopedic Services - Strong and Sturdy */
.orthopedic-services .service-card {
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    border-radius: 12px;
    border: 3px solid #87ceeb;
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
}

.orthopedic-services .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(135, 206, 235, 0.5);
}

.orthopedic-services .service-card .icon {
    color: #4682b4;
}

.orthopedic-services .service-card:hover .icon {
    color: #2e5984;
    transform: rotate(-5deg);
}

/* Mobile responsive for services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 15px;
    }
}

/* Cardiology Services Section */
.cardiology-services {
    background-color: white;
    padding: 80px 0;
    color: #333;
}

.cardiology-services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cardiology-services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #00B4D8;
    font-weight: 600;
}

.cardiology-services p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 50px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cardiology-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cardiology-services .service-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.cardiology-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cardiology-services .service-card .icon {
    font-size: 3em;
    color: #00B4D8;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.cardiology-services .service-card:hover .icon {
    color: #5ba3b8;
}

.cardiology-services .service-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.cardiology-services .service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1em;
}

/* Mobile responsive for cardiology services */
@media (max-width: 768px) {
    .cardiology-services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cardiology-services .service-card {
        padding: 25px 15px;
    }
}

/* Orthopedic Services Section */
.orthopedic-services {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

.orthopedic-services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e40af' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.orthopedic-services .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.orthopedic-services h2 {
    text-align: center;
    font-size: 3.2em;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00B4D8, #5ba3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
}

.orthopedic-services p {
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 70px;
    color: #4b5563;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.orthopedic-services .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.orthopedic-services .service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.orthopedic-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(118, 207, 230, 0.02) 0%,
        rgba(91, 163, 184, 0.05) 50%,
        rgba(118, 207, 230, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.orthopedic-services .service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
        transparent 0deg,
        rgba(118, 207, 230, 0.08) 60deg,
        rgba(91, 163, 184, 0.12) 120deg,
        rgba(118, 207, 230, 0.08) 180deg,
        transparent 240deg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.orthopedic-services .service-card:hover::before,
.orthopedic-services .service-card:hover::after {
    opacity: 1;
}

.orthopedic-services .service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(118, 207, 230, 0.15);
    border-color: rgba(118, 207, 230, 0.3);
}

.orthopedic-services .service-card .card-header {
    padding: 30px 25px 20px;
    position: relative;
    z-index: 2;
}

.orthopedic-services .service-card .icon-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.orthopedic-services .service-card .icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B4D8, #5ba3b8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(118, 207, 230, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.orthopedic-services .service-card .icon-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.orthopedic-services .service-card:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(118, 207, 230, 0.3);
}

.orthopedic-services .service-card:hover .icon-bg::before {
    transform: rotate(45deg) translateX(100%);
}

.orthopedic-services .service-card .icon-bg i {
    color: white;
    font-size: 2.2em;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.orthopedic-services .service-card:hover .icon-bg i {
    transform: scale(1.1);
}

.orthopedic-services .service-card .card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(118, 207, 230, 0.1);
    color: #00B4D8;
    font-size: 0.9em;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(118, 207, 230, 0.2);
}

.orthopedic-services .service-card .card-content {
    padding: 0 25px 20px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.orthopedic-services .service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #00B4D8;
    font-weight: 700;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.orthopedic-services .service-card:hover h3 {
    color: #5ba3b8;
}

.orthopedic-services .service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1em;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.orthopedic-services .service-card:hover p {
    color: #374151;
}

.orthopedic-services .service-card .card-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.orthopedic-services .service-card .feature-tag {
    background: rgba(118, 207, 230, 0.1);
    color: #00B4D8;
    font-size: 0.8em;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(118, 207, 230, 0.2);
    transition: all 0.3s ease;
}

.orthopedic-services .service-card:hover .feature-tag {
    background: rgba(118, 207, 230, 0.15);
    transform: translateY(-2px);
}

.orthopedic-services .service-card .card-footer {
    padding: 20px 25px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.orthopedic-services .service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00B4D8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    border: 2px solid transparent;
}

.orthopedic-services .service-card .learn-more:hover {
    color: white;
    background: linear-gradient(135deg, #00B4D8, #5ba3b8);
    border-color: #00B4D8;
    transform: translateX(5px);
}

.orthopedic-services .service-card .learn-more i {
    transition: transform 0.3s ease;
}

.orthopedic-services .service-card .learn-more:hover i {
    transform: translateX(3px);
}

/* Enhanced floating animation for cards */
.orthopedic-services .service-card:nth-child(1) {
    animation: gentleFloat 8s ease-in-out infinite;
}

.orthopedic-services .service-card:nth-child(2) {
    animation: gentleFloat 8s ease-in-out infinite 1.5s;
}

.orthopedic-services .service-card:nth-child(3) {
    animation: gentleFloat 8s ease-in-out infinite 3s;
}

.orthopedic-services .service-card:nth-child(4) {
    animation: gentleFloat 8s ease-in-out infinite 4.5s;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Mobile responsive for orthopedic services */
@media (max-width: 1024px) {
    .orthopedic-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .orthopedic-services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .orthopedic-services .service-card {
        max-width: 100%;
    }

    .orthopedic-services .service-card .icon-bg {
        width: 70px;
        height: 70px;
    }

    .orthopedic-services .service-card .icon-bg i {
        font-size: 2em;
    }

    .orthopedic-services .service-card h3 {
        font-size: 1.3em;
    }

    .orthopedic-services .service-card .card-features {
        justify-content: center;
    }

    .orthopedic-services .service-card .feature-tag {
        font-size: 0.75em;
        padding: 3px 10px;
    }
}

/* Mobile responsive for orthopedic services */
@media (max-width: 768px) {
    .orthopedic-services {
        padding: 80px 0;
    }

    .orthopedic-services h2 {
        font-size: 2.5em;
    }

    .orthopedic-services p {
        font-size: 1.2em;
        margin-bottom: 50px;
    }

    .orthopedic-services .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .orthopedic-services .service-card {
        padding: 25px 15px;
    }

    .orthopedic-services .service-card .icon {
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    .orthopedic-services .service-card h3 {
        font-size: 1.2em;
    }
}

/* Radiology Services Section */
.radiology-services {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.radiology-services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2376cfe6' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.radiology-services .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.radiology-services h2 {
    text-align: center;
    font-size: 3.2em;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00B4D8, #5ba3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
}

.radiology-services p {
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 70px;
    color: #374151;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.radiology-services .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.radiology-services .service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(118, 207, 230, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.radiology-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(118, 207, 230, 0.02) 0%,
        rgba(91, 163, 184, 0.05) 50%,
        rgba(118, 207, 230, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.radiology-services .service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
        transparent 0deg,
        rgba(118, 207, 230, 0.08) 60deg,
        rgba(91, 163, 184, 0.12) 120deg,
        rgba(118, 207, 230, 0.08) 180deg,
        transparent 240deg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.radiology-services .service-card:hover::before,
.radiology-services .service-card:hover::after {
    opacity: 1;
}

.radiology-services .service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(118, 207, 230, 0.15);
    border-color: rgba(118, 207, 230, 0.3);
}

.radiology-services .service-card .card-header {
    padding: 30px 25px 20px;
    position: relative;
    z-index: 2;
}

.radiology-services .service-card .icon-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.radiology-services .service-card .icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B4D8, #5ba3b8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(118, 207, 230, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.radiology-services .service-card .icon-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.radiology-services .service-card:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(118, 207, 230, 0.3);
}

.radiology-services .service-card:hover .icon-bg::before {
    transform: rotate(45deg) translateX(100%);
}

.radiology-services .service-card .icon-bg i {
    color: white;
    font-size: 2.2em;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.radiology-services .service-card:hover .icon-bg i {
    transform: scale(1.1);
}

.radiology-services .service-card .card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(118, 207, 230, 0.1);
    color: #00B4D8;
    font-size: 0.9em;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(118, 207, 230, 0.2);
}

.radiology-services .service-card .card-content {
    padding: 0 25px 20px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.radiology-services .service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #00B4D8;
    font-weight: 700;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.radiology-services .service-card:hover h3 {
    color: #5ba3b8;
}

.radiology-services .service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1em;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.radiology-services .service-card:hover p {
    color: #374151;
}

.radiology-services .service-card .card-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.radiology-services .service-card .feature-tag {
    background: rgba(118, 207, 230, 0.1);
    color: #00B4D8;
    font-size: 0.8em;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(118, 207, 230, 0.2);
    transition: all 0.3s ease;
}

.radiology-services .service-card:hover .feature-tag {
    background: rgba(118, 207, 230, 0.15);
    transform: translateY(-2px);
}

.radiology-services .service-card .card-footer {
    padding: 20px 25px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.radiology-services .service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00B4D8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    border: 2px solid transparent;
}

.radiology-services .service-card .learn-more:hover {
    color: white;
    background: linear-gradient(135deg, #00B4D8, #5ba3b8);
    border-color: #00B4D8;
    transform: translateX(5px);
}

.radiology-services .service-card .learn-more i {
    transition: transform 0.3s ease;
}

.radiology-services .service-card .learn-more:hover i {
    transform: translateX(3px);
}

/* Enhanced floating animation for radiology cards */
.radiology-services .service-card:nth-child(1) {
    animation: gentleFloat 8s ease-in-out infinite;
}

.radiology-services .service-card:nth-child(2) {
    animation: gentleFloat 8s ease-in-out infinite 1.5s;
}

.radiology-services .service-card:nth-child(3) {
    animation: gentleFloat 8s ease-in-out infinite 3s;
}

.radiology-services .service-card:nth-child(4) {
    animation: gentleFloat 8s ease-in-out infinite 4.5s;
}

/* Mobile responsive for radiology services */
@media (max-width: 1024px) {
    .radiology-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .radiology-services {
        padding: 80px 0;
    }

    .radiology-services h2 {
        font-size: 2.5em;
    }

    .radiology-services p {
        font-size: 1.2em;
        margin-bottom: 50px;
    }

    .radiology-services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .radiology-services .service-card {
        max-width: 100%;
    }

    .radiology-services .service-card .icon-bg {
        width: 70px;
        height: 70px;
    }

    .radiology-services .service-card .icon-bg i {
        font-size: 2em;
    }

    .radiology-services .service-card h3 {
        font-size: 1.3em;
    }

    .radiology-services .service-card .card-features {
        justify-content: center;
    }

    .radiology-services .service-card .feature-tag {
        font-size: 0.75em;
        padding: 3px 10px;
    }
}

/* Patient Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 50%, #005a9e 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 800;
}

.testimonials .container > p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 70px;
    opacity: 0.95;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00B4D8, rgba(0, 177, 214, 0));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:nth-child(1).animate { transition-delay: 0.1s; }
.testimonial-card:nth-child(2).animate { transition-delay: 0.2s; }
.testimonial-card:nth-child(3).animate { transition-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 2.5em;
    color: #00B4D8;
    margin-bottom: 15px;
    opacity: 0.8;
}

.testimonial-content p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #333;
    margin: 0;
    font-style: italic;
}

.rating {
    margin-top: 15px;
    display: flex;
    gap: 3px;
}

.rating i {
    color: #FFB800;
    font-size: 1em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 177, 214, 0.1);
}

.author-avatar {
    font-size: 2.5em;
    color: #00B4D8;
    margin-right: 15px;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1em;
    color: #333;
    font-weight: 700;
}

.author-info span {
    color: #666;
    font-size: 0.9em;
    display: block;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 70px 0;
    }

    .testimonials h2 {
        font-size: 2.2em;
    }

    .testimonial-card {
        padding: 30px 25px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #00B4D8;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #00B4D8;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 1.875em;
    color: #00B4D8;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.stats-highlight {
    background: linear-gradient(135deg, #00B4D8, #5ba3b8);
    padding: 40px;
    border-radius: 20px;
    color: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Latest News Section */
.latest-news {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f4f8 100%);
    padding: 100px 0;
    color: #333;
    position: relative;
}

.latest-news::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(118, 207, 230, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.latest-news .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.latest-news h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.latest-news .container > p {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 70px;
    color: #666;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 48, 94, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.news-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.news-card:nth-child(1).animate { transition-delay: 0.1s; }
.news-card:nth-child(2).animate { transition-delay: 0.2s; }
.news-card:nth-child(3).animate { transition-delay: 0.3s; }

.news-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 177, 214, 0.15);
    border-color: #00B4D8;
}

.news-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #00B4D8, #0077B6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08) rotate(2deg);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(118, 207, 230, 0.95);
    color: white;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(118, 207, 230, 0.4);
}

.news-content {
    padding: 35px;
}

.news-content h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #0077B6;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: #00B4D8;
}

.news-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1em;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 177, 214, 0.1);
}

.news-meta .date {
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-more {
    color: #00B4D8;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    color: #0077B6;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .latest-news {
        padding: 70px 0;
    }

    .latest-news h2 {
        font-size: 2.2em;
    }

    .news-grid {
        gap: 25px;
    }

    .news-card {
        max-width: 100%;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 25px;
    }

    .news-content h3 {
        font-size: 1.25em;
    }
}

/* Book Appointment CTA Section */
.book-appointment-cta {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.book-appointment-cta::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.book-appointment-cta::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-book-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: #0077B6;
    padding: 18px 50px;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn-book-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.btn-book-appointment:active {
    transform: translateY(-1px);
}

.btn-book-appointment i {
    font-size: 1.3em;
}

/* Responsive Design for Book Appointment CTA Section */
@media (max-width: 768px) {
    .book-appointment-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2em;
    }

    .cta-content p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .btn-book-appointment {
        padding: 15px 40px;
        font-size: 1em;
    }
}

/* Contact Information Section */
.contact-info {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 50%, #e9ecef 100%);
    padding: 100px 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 207, 230, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 177, 214, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.contact-info .container > p {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 70px;
    color: #666;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 48, 94, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 177, 214, 0.1);
    position: relative;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 177, 214, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 177, 214, 0.2);
    border-color: #00B4D8;
}

.contact-card-header {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-icon-wrapper {
    font-size: 3.2em;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
}

.contact-card-content {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-card h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #0077B6;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-card:hover h3 {
    color: #00B4D8;
}

.contact-card p {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 0.95em;
}

.contact-detail {
    margin-bottom: 15px;
}

.contact-detail strong {
    display: block;
    color: #0077B6;
    font-weight: 700;
    line-height: 1.5;
    font-size: 1em;
}

.contact-link {
    display: inline-block;
    color: #00B4D8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.contact-link:hover {
    color: #0077B6;
    border-bottom-color: #0077B6;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: 70px 0;
    }

    .contact-info h2 {
        font-size: 2.2em;
    }

    .contact-info > p {
        font-size: 1.1em;
        margin-bottom: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 25px;
    }

    .contact-icon {
        font-size: 2.5em;
    }
}

.action-btn i {
    font-size: 0.9em;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter Animation */
.counter-animation {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-highlight {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
}

.fab-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00B4D8, #5ba3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(118, 207, 230, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(118, 207, 230, 0.4);
}

.fab-button.active {
    transform: rotate(45deg);
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00B4D8;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.fab-item:hover {
    transform: scale(1.1);
    background: #00B4D8;
    color: white;
}

.fab-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fab-item:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #00B4D8;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: #5ba3b8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00B4D8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Particle Background Effect */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(118, 207, 230, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 8s; }
.particle:nth-child(10) { width: 6px; height: 6px; left: 95%; animation-delay: 9s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .fab-container {
        bottom: 80px;
        right: 20px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
    }

    .fab-menu {
        bottom: 75px;
        right: 5px;
    }

    .fab-item::after {
        display: none; /* Hide tooltips on mobile */
    }

    /* Banner Mobile Styles */
    .banner {
        height: 100vh;
    }

    .slide-background {
        display: block;
    }

    .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .content-wrapper {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .content-wrapper h1 {
        font-size: 1.8em;
        margin: 10px 0;
    }

    .content-wrapper h2 {
        font-size: 1.2em;
        margin: 10px 0;
    }

    .content-wrapper p {
        font-size: 0.9em;
        margin: 15px 0;
        line-height: 1.4;
    }

    .stats-cards {
        justify-content: center;
        margin: 20px 0;
    }

    .stat-card {
        min-width: 80px;
        padding: 10px;
    }

    .stat-number {
        font-size: 1.4em;
    }

    .stat-label {
        font-size: 0.7em;
    }

    .action-buttons {
        justify-content: center;
        margin-top: 20px;
    }

    .btn-primary-card,
    .btn-secondary-card {
        font-size: 0.8em;
        padding: 10px 15px;
    }

    .banner-nav {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .banner-indicators {
        display: flex;
        gap: 10px;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.7);
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: #ffffff;
        border-color: #ffffff;
    }
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .contact-info h2 {
        font-size: 2em;
    }

    .contact-info p {
        font-size: 1.1em;
        margin-bottom: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-icon {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .contact-link {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 60px 0;
    }

    .contact-info h2 {
        font-size: 1.8em;
    }

    .contact-info p {
        font-size: 1em;
    }

    .contact-card {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .contact-icon {
        font-size: 2em;
        margin-bottom: 12px;
    }

    .contact-card h3 {
        font-size: 1.15em;
    }

    .contact-card p {
        font-size: 0.85em;
        margin-bottom: 15px;
    }

    .contact-detail {
        margin-bottom: 15px;
    }

    .contact-link {
        font-size: 0.8em;
    }
}

/* Admin Login Styles */
.admin-login-btn {
    background-color: #e74c3c !important;
    color: #fff !important;
    border-radius: 5px !important;
    padding: 10px 20px !important;
    transition: all 0.3s ease !important;
}

.admin-login-btn:hover {
    background-color: #c0392b !important;
}

.admin-login-btn i {
    margin-right: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #00b0da;
    box-shadow: 0 0 5px rgba(0, 176, 218, 0.3);
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #00b0da;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #0099c4;
}

.btn-login:active {
    transform: scale(0.98);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #000;
}

.login-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.login-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.login-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ============================================
   PRINT STYLES - Override for better printing
   ============================================ */
@media print {
    /* Global print settings */
    * {
        background: transparent !important;
        box-shadow: none !important;
        text-shadow: none !important;
        color: #000 !important;
    }

    /* Ensure only print modal is visible */
    body > *:not(#adminPrintModal) {
        display: none !important;
    }

    html, body {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: white !important;
    }

    /* Print modal override */
    #adminPrintModal {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        position: static !important;
    }

    #adminPrintModal.hidden {
        display: block !important;
    }

    /* Colors for print */
    a {
        color: #000 !important;
        text-decoration: none !important;
    }

    /* Ensure proper sizing */
    @page {
        size: A4;
        margin: 0;
        padding: 0;
    }

    /* Disable background images and colors */
    header, nav, .header-content {
        display: none !important;
    }
}

