
    /* Creative Hero Section */
    .hero-creative {
        background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
        padding: 140px 0 100px;
        position: relative;
        overflow: hidden;
    }
    .hero-creative::before {
        content: '';
        position: absolute;
        top: -50%; left: -50%;
        width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 10%, transparent 20%);
        background-size: 30px 30px;
        animation: rotate 60s linear infinite;
        z-index: 0;
    }
    @keyframes rotate { 100% { transform: rotate(360deg); } }
    
    .glass-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
    }

    /* Animated Counter Section */
    .stat-number {
        font-size: 3.5rem;
        font-weight: 900;
        background: linear-gradient(45deg, #0d6efd, #0dcaf0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Creative Zig-Zag Layout */
    .zigzag-section {
        padding: 100px 0;
    }
    .zigzag-row {
        margin-bottom: 80px;
    }
    .zigzag-row:last-child {
        margin-bottom: 0;
    }
    .image-blob {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        animation: morph 8s ease-in-out infinite;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    @keyframes morph {
        0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
        34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
        67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
    }

    /* Floating Icons */
    .floating-icon {
        animation: float 6s ease-in-out infinite;
    }
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }

    /* Value Cards Grid */
    .value-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    .value-card {
        background: #fff;
        border-radius: 20px;
        padding: 40px 30px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
        overflow: hidden;
    }
    .value-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        border-color: #0d6efd;
    }
    .value-card::after {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 4px;
        background: linear-gradient(90deg, #0d6efd, #0dcaf0);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }
    .value-card:hover::after {
        transform: scaleX(1);
    }
    .value-icon-wrapper {
        width: 70px; height: 70px;
        border-radius: 15px;
        background: rgba(13, 110, 253, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        color: #0d6efd;
        font-size: 28px;
        transition: all 0.3s ease;
    }
    .value-card:hover .value-icon-wrapper {
        background: #0d6efd;
        color: #fff;
        transform: rotate(10deg);
    }

    /* CTA Banner */
 
    .cta-overlay {
        background: linear-gradient(90deg, rgba(13, 110, 253, 0.95), rgba(10, 88, 202, 0.85));
    }



