    /* Advanced Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

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

    @keyframes shimmer {
        0% {
            background-position: -1000px 0;
        }
        100% {
            background-position: 1000px 0;
        }
    }

    /* Hero Section - Enhanced */
    .page-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 8rem 2rem 6rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
        animation: float 8s ease-in-out infinite;
    }

    .page-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        font-weight: 800;
        letter-spacing: -1px;
        animation: fadeInUp 0.8s ease;
        position: relative;
        z-index: 1;
    }

    .page-hero p {
        font-size: 1.4rem;
        max-width: 750px;
        margin: 0 auto 3rem;
        opacity: 0.95;
        animation: fadeInUp 0.8s ease 0.2s;
        animation-fill-mode: backwards;
        position: relative;
        z-index: 1;
        line-height: 1.8;
    }

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s ease 0.4s;
        animation-fill-mode: backwards;
        position: relative;
        z-index: 1;
    }

    .hero-btn {
        padding: 1.2rem 3rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .hero-btn-primary {
        background: white;
        color: #667eea;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .hero-btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

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

    .hero-btn-secondary:hover {
        background: white;
        color: #667eea;
        transform: translateY(-5px);
    }

    /* Services Section - Enhanced */
    .why-section {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    }

    .section-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 5rem;
        animation: fadeInUp 0.8s ease;
    }

    .section-header h2 {
        font-size: 3rem;
        color: #2d3748;
        margin-bottom: 1rem;
        font-weight: 800;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-header p {
        font-size: 1.2rem;
        color: #718096;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* Service Cards - Premium Design */
    .reasons-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .reason-card {
        background: white;
        padding: 3rem;
        border-radius: 20px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(102, 126, 234, 0.1);
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .reason-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .reason-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .reason-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
        border-color: rgba(102, 126, 234, 0.3);
    }

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

    .reason-card:hover::after {
        opacity: 1;
    }

    .reason-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        transition: all 0.3s ease;
    }

    .reason-card:hover .reason-number {
        transform: rotate(360deg) scale(1.1);
    }

    .reason-card h3 {
        font-size: 1.6rem;
        color: #2d3748;
        margin-bottom: 1.2rem;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

    .reason-card p {
        color: #718096;
        line-height: 1.9;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
    }

    /* Values Section - Modern Design */
    .values-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
    }

    .values-section::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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: cover;
        opacity: 0.3;
    }

    .values-section .section-header h2,
    .values-section .section-header p {
        color: white;
    }

    .values-section .section-header h2 {
        background: white;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        position: relative;
        z-index: 1;
    }

    .value-item {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 2.5rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255,255,255,0.2);
    }

    .value-item:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        background: white;
    }

    .value-icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        font-size: 3rem;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        transition: all 0.4s ease;
    }

    .value-item:hover .value-icon {
        animation: pulse 1s ease infinite;
    }

    .value-item h3 {
        font-size: 1.5rem;
        color: #2d3748;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .value-item p {
        color: #718096;
        line-height: 1.8;
        font-size: 1.05rem;
    }

    /* Partners Section - Premium Slider */
    .partners-section {
        padding: 5rem 2rem;
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        overflow: hidden;
    }

    .partners-section h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #2d3748;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .partners-slider {
        margin-top: 3rem;
        position: relative;
        padding: 2rem 0;
    }

    .partners-slider::before,
    .partners-slider::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 150px;
        z-index: 2;
        pointer-events: none;
    }

    .partners-slider::before {
        left: 0;
        background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
    }

    .partners-slider::after {
        right: 0;
        background: linear-gradient(270deg, #f8f9fa 0%, transparent 100%);
    }

    .partners-track {
        display: flex;
        align-items: center;
        gap: 4rem;
        width: max-content;
        animation: slide 30s linear infinite;
    }

    .partners-track img {
        height: 80px;
        width: auto;
        max-width: 200px;
        object-fit: contain;
        filter: grayscale(100%) opacity(0.7);
        transition: all 0.4s ease;
    }

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

    .partners-track img:hover {
        filter: grayscale(0%) opacity(1);
        transform: scale(1.1);
    }

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

    /* CTA Section - Engaging Design */
    .cta-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 10s ease-in-out infinite;
    }

    .cta-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .cta-content h2 {
        font-size: 3rem;
        color: white;
        margin-bottom: 1.5rem;
        font-weight: 800;
    }

    .cta-content p {
        font-size: 1.3rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 3rem;
        line-height: 1.8;
    }

    .btn {
        display: inline-block;
        padding: 1.3rem 3.5rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        position: relative;
        overflow: hidden;
    }

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

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

    .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-hero h1 {
            font-size: 2.5rem;
        }

        .page-hero p {
            font-size: 1.1rem;
        }

        .section-header h2 {
            font-size: 2.2rem;
        }

        .reasons-grid {
            grid-template-columns: 1fr;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: stretch;
        }

        .cta-content h2 {
            font-size: 2rem;
        }
    }

    /* Scroll reveal animation */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .scroll-reveal.active {
        opacity: 1;
        transform: translateY(0);
    }