
    :root {
        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        --dark-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        --success-gradient: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
        --warning-gradient: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
        --glass-bg: rgba(255, 255, 255, 0.1);
        --glass-border: rgba(255, 255, 255, 0.2);
        --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.1);
        --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
        --shadow-glow: 0 0 40px rgba(79, 172, 254, 0.3);
        --text-primary: #2c3e50;
        --text-secondary: #7f8c8d;
        --navbar-height: 80px; /* Adjust this to match your navbar height */
    }

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

    .branch-item.highlighted {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
        border: 2px solid #007bff;
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    }

    .branch-item {
        transition: all 0.3s ease;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Fixed navbar gap issue */
    .content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .hero-section {
        height: 100vh;
        background:
            linear-gradient(135deg, rgba(4, 32, 160, 0.85), rgba(2, 42, 153, 0.85));
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        margin-top: calc(-1 * var(--navbar-height)) !important;
        padding-top: var(--navbar-height) !important;
    }

    .hero-background-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 30% 80%, rgba(120, 119, 198, 0.4), transparent 60%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.4), transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.2), transparent 70%);
        animation: float 8s ease-in-out infinite alternate;
    }

    .hero-particles {
        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 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
        pointer-events: none;
        animation: sparkle 20s linear infinite;
    }

    @keyframes float {
        0% { transform: translateY(0px) rotate(0deg); }
        100% { transform: translateY(-30px) rotate(1deg); }
    }

    @keyframes sparkle {
        0% { transform: rotate(0deg) scale(1); }
        50% { transform: rotate(180deg) scale(1.05); }
        100% { transform: rotate(360deg) scale(1); }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        backdrop-filter: blur(50px);
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 32px;
        padding: 4rem 3rem;
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-badge {
        display: inline-block;
        padding: 0.8rem 1.5rem;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(30px);
    }

    .badge-text {
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 5rem);
        font-weight: 900;
        background: linear-gradient(45deg, #ffffff 30%, #f0f0f0 60%, #e0e0e0 90%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        position: relative;
        opacity: 0;
        transform: translateY(50px);
    }

    .hero-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--secondary-gradient);
        border-radius: 2px;
        box-shadow: 0 2px 10px rgba(240, 147, 251, 0.5);
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 3rem;
        font-weight: 400;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0;
        transform: translateY(50px);
    }

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 3rem;
        opacity: 0;
        transform: translateY(50px);
    }

    .hero-scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        opacity: 0;
        transform: translateY(50px);
        color: rgba(255, 255, 255, 0.8);
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        animation: bounce 2s infinite;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .scroll-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 3rem;
    }

    .section-badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--primary-gradient);
        color: white;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .section-divider {
        width: 60px;
        height: 3px;
        background: var(--accent-gradient);
        margin: 0 auto;
        border-radius: 2px;
    }

    .section-description {
        color: var(--text-secondary);
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Enhanced Modern Card */
    .modern-card {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        border-radius: 28px;
        padding: 3.5rem;
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.08),
            0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.8);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
    }

    .modern-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary-gradient);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .modern-card:hover {
        transform: translateY(-15px);
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.12),
            0 10px 25px rgba(0, 0, 0, 0.08);
    }

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

    .modern-card h2 {
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        margin-bottom: 1rem;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        line-height: 1.2;
    }

    /* Enhanced Stats Section */
    .stats-section {
        background:
            linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(139, 195, 74, 0.08)),
            rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 28px;
        padding: 4rem 3rem;
        margin: 3rem 0;
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.6);
        position: relative;
        overflow: hidden;
    }

    .stats-title {
        background: var(--success-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .stat-item {
        text-align: center;
        padding: 2rem 1rem;
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .stat-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--success-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    }

    .stat-number {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        background: var(--success-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: var(--text-primary);
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .stat-description {
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    /* About Section Enhancements */
    .about-features {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-primary);
        font-weight: 600;
    }

    .feature-item i {
        color: #4caf50;
        font-size: 1.2rem;
    }

    .accreditation-showcase {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .accreditation-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .accreditation-item:last-child {
        border-bottom: none;
    }

    .accreditation-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--primary-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

    .accreditation-info h5 {
        margin: 0;
        color: var(--text-primary);
        font-weight: 700;
    }

    .accreditation-info p {
        margin: 0;
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    /* Enhanced Branches */
    .branches-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .branch-item {
        background: var(--accent-gradient);
        color: white;
        padding: 2rem;
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .branch-header {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

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

    .branch-header h5 {
        margin: 0;
        font-weight: 700;
        font-size: 1.3rem;
    }

    .branch-info h6 {
        margin: 0 0 0.5rem 0;
        font-weight: 600;
        opacity: 0.9;
    }

    .branch-info p {
        margin: 0;
        opacity: 0.8;
        font-size: 0.95rem;
    }

    .branch-overlay {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.2);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .branch-item:hover .branch-overlay {
        opacity: 1;
        transform: translateY(-5px);
    }

    .branch-item:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 20px 40px rgba(79, 172, 254, 0.4);
    }

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .service-card {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 20px;
        padding: 2rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
        transition: left 0.6s ease;
    }

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

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: rgba(102, 126, 234, 0.3);
    }

    .service-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--primary-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    .service-number {
        font-size: 2rem;
        font-weight: 900;
        color: rgba(102, 126, 234, 0.2);
    }

    .service-content h5 {
        color: var(--text-primary);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .service-content p {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

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

    .service-features li {
        padding: 0.3rem 0;
        color: var(--text-secondary);
        font-size: 0.9rem;
        position: relative;
        padding-left: 1.5rem;
    }

    .service-features li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #4caf50;
        font-weight: bold;
    }

    /* Testimonials */
    .testimonials-slider {
        position: relative;
        height: 300px;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.8);
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateX(100px);
    }

    .testimonial-card.active {
        opacity: 1;
        transform: translateX(0);
    }

    .testimonial-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--primary-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    .testimonial-rating {
        display: flex;
        gap: 0.2rem;
        color: #ffc107;
    }

    .testimonial-text {
        font-style: italic;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    .testimonial-author strong {
        color: var(--text-primary);
        display: block;
        font-weight: 700;
        margin-bottom: 0.2rem;
    }

    .testimonial-author span {
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    .testimonial-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary-gradient);
        border: none;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-nav:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    .testimonial-dots {
        display: flex;
        gap: 0.5rem;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(102, 126, 234, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: var(--primary-gradient);
        transform: scale(1.2);
    }

    /* Enhanced CTA Section */
    .cta-section {
        background: var(--dark-gradient);
        border-radius: 32px;
        padding: 5rem 3rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin: 3rem 0;
    }

    .cta-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .cta-particles {
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px),
            radial-gradient(circle, rgba(79, 172, 254, 0.05) 2px, transparent 2px);
        background-size: 50px 50px, 100px 100px;
        animation: sparkle 25s linear infinite;
    }

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

    .cta-icon {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        font-size: 2.5rem;
        color: white;
        backdrop-filter: blur(10px);
    }

    .cta-title {
        color: white;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .cta-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-size: clamp(1rem, 2vw, 1.3rem);
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .cta-features {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .cta-feature {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
    }

    .cta-feature i {
        color: #4caf50;
        font-size: 1.2rem;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Enhanced Contact */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .contact-card {
        background: rgba(255, 255, 255, 0.8);
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .contact-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--primary-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: white;
        font-size: 1.8rem;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

    .contact-content h5 {
        color: var(--text-primary);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .contact-content p {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .contact-link {
        display: inline-block;
        padding: 0.8rem 1.5rem;
        background: var(--primary-gradient);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .contact-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
    }

    /* Enhanced Modern Buttons */
    .modern-btn {
        padding: 1.2rem 2.5rem;
        border-radius: 60px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-ripple {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: scale(0);
        animation: ripple 0.6s linear;
        pointer-events: none;
    }

    @keyframes ripple {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }

    .btn-primary-modern {
        background: var(--secondary-gradient);
        color: white;
        box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
    }

    .btn-primary-modern:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(240, 147, 251, 0.5);
        color: white;
    }

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

    .btn-outline-modern:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-3px) scale(1.05);
        color: white;
    }

    /* Animation Classes */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .fade-in-up.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .fade-in-right.animate {
        opacity: 1;
        transform: translateX(0);
    }

    /* Scroll Progress Indicator */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 4px;
        background: var(--secondary-gradient);
        z-index: 9999;
        transition: width 0.1s ease;
        box-shadow: 0 0 10px rgba(240, 147, 251, 0.5);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-content {
            padding: 3rem 2rem;
            margin: 1rem;
            border-radius: 24px;
        }

        .modern-card {
            padding: 2.5rem 2rem;
            margin: 1rem;
            border-radius: 20px;
        }

        .stats-section {
            padding: 3rem 2rem;
            margin: 2rem 1rem;
        }

        .cta-section {
            padding: 4rem 2rem;
            margin: 2rem 1rem;
            border-radius: 24px;
        }

        .branches-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .modern-btn {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .d-flex.gap-3 {
            flex-direction: column;
            gap: 1rem !important;
        }

        .accreditation-badges {
            gap: 1rem;
        }

        .accreditation-badges.flex-column {
            flex-direction: row;
            flex-wrap: wrap;
        }
    }

    @media (max-width: 480px) {
        .hero-content {
            padding: 2rem 1.5rem;
        }

        .modern-card {
            padding: 2rem 1.5rem;
        }

        .stats-section {
            padding: 2.5rem 1.5rem;
        }

        .cta-section {
            padding: 3rem 1.5rem;
        }
    }

    /* High-end visual effects */
    @supports (backdrop-filter: blur(10px)) {
        .hero-content,
        .modern-card,
        .stats-section {
            backdrop-filter: blur(20px);
        }
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        .modern-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modern-card p {
            color: rgba(255, 255, 255, 0.8);
        }

        .modern-card p.lead {
            color: rgba(255, 255, 255, 0.95);
        }
    }
