
        /* About Hero Section */
        .about-hero-section {
            position: relative;
            background: var(--primary-blue);
            padding: 140px 0 100px;
            overflow: hidden;
        }

        .about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(1, 174, 239, 0.05) 0%,
                    transparent 50%);
            pointer-events: none;
        }

        .about-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .about-hero-content {
            max-width: 900px;
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .about-hero-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .about-hero-title .highlight-gold {
            color: var(--accent-gold);
            display: inline-block;
            position: relative;
        }

        .about-hero-title .highlight-gold::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            animation: expandWidth 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
        }

        .about-hero-description {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-lighter);
            line-height: 1.7;
            margin: 0;
            max-width: 700px;
        }

        /* Animations */
        @keyframes expandWidth {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-hero-section {
                padding: 120px 0 80px;
            }

            .about-hero-container {
                padding: 0 30px;
            }

            .about-hero-title {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            .about-hero-section {
                padding: 110px 0 70px;
            }

            .about-hero-container {
                padding: 0 20px;
            }

            .about-hero-title {
                font-size: 34px;
                letter-spacing: -0.3px;
            }

            .about-hero-description {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .about-hero-section {
                padding: 100px 0 60px;
            }

            .about-hero-title {
                font-size: 30px;
            }

            .about-hero-description {
                font-size: 14px;
            }
        }
    
    
    
    
    
    
        /* Clients Section */
        .clients-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
            overflow: hidden;
        }

        .clients-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(1, 174, 239, 0.1);
            color: var(--accent-cyan);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            border: 1px solid rgba(1, 174, 239, 0.2);
        }

        .section-title {
            font-size: 38px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .section-description {
            font-size: 16px;
            font-weight: 400;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Clients Grid */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .client-card {
            position: relative;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: 16px;
            padding: 40px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 140px;
            border: 1px solid rgba(1, 174, 239, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .client-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 16px;
            padding: 1px;
            background: linear-gradient(135deg,
                    rgba(1, 174, 239, 0.3) 0%,
                    rgba(244, 185, 66, 0.2) 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(1, 174, 239, 0.15);
            background: rgba(255, 255, 255, 0.9);
        }

        .client-card:hover::before {
            opacity: 1;
        }

        .client-logo-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .client-logo {
            max-width: 450px;
    max-height: 300px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-card:hover .client-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        /* Clients Stats */
        .clients-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            padding: 50px 40px;
            background: rgba(1, 174, 239, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(1, 174, 239, 0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .stat-label {
            font-size: 13px;
            font-weight: 500;
            color: #6c757d;
            letter-spacing: 0.3px;
        }

        .stat-divider {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom,
                    transparent 0%,
                    rgba(1, 174, 239, 0.3) 50%,
                    transparent 100%);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 992px) {
            .clients-section {
                padding: 80px 0;
            }

            .clients-container {
                padding: 0 30px;
            }

            .section-title {
                font-size: 32px;
            }

            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
                margin-bottom: 60px;
            }

            .client-card {
                padding: 30px 20px;
                min-height: 120px;
            }

            .clients-stats {
                gap: 40px;
                padding: 40px 30px;
            }

            .stat-number {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .clients-section {
                padding: 60px 0;
            }

            .clients-container {
                padding: 0 20px;
            }

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

            .section-title {
                font-size: 28px;
            }

            .section-description {
                font-size: 15px;
            }

            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                margin-bottom: 50px;
            }

            .client-card {
                padding: 25px 15px;
                min-height: 100px;
            }

            .client-logo {
                max-width: 140px;
                max-height: 60px;
            }

            .clients-stats {
                flex-direction: column;
                gap: 30px;
                padding: 35px 25px;
            }

            .stat-divider {
                width: 80px;
                height: 1px;
                background: linear-gradient(to right,
                        transparent 0%,
                        rgba(1, 174, 239, 0.3) 50%,
                        transparent 100%);
            }

            .stat-number {
                font-size: 24px;
            }

            .stat-label {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 24px;
            }

            .section-description {
                font-size: 14px;
            }

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

            .client-logo {
                max-width: 160px;
            }
        }
   