/* About Hero Section */
        .about-hero {
            background: linear-gradient(135deg, rgb(9 76 149 / 95%), rgb(15 166 165 / 95%)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 0 80px;
            margin-top: 76px;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            top: -150px;
            right: -100px;
            animation: float 20s infinite linear;
        }
        
        .about-hero::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(253, 126, 20, 0.08);
            bottom: -100px;
            left: -50px;
            animation: float 15s infinite linear reverse;
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }
        
        .about-hero-content {
            position: relative;
            z-index: 2;
        }
        
        .about-hero h1 {
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .about-hero .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            max-width: 800px;
            margin: 0 auto;
        }
        
        
        
        /* Company Info Card */
        .company-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid rgba(13, 110, 253, 0.1);
        }
        
        .company-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(13, 110, 253, 0.15);
        }
        
        .company-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--light-blue), white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            border: 2px solid var(--primary-blue);
        }
        
        .company-icon i {
            font-size: 2.5rem;
            color: var(--primary-blue);
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--dark-blue), #1e429f);
            padding: 80px 0;
            color: white;
            margin: 40px 0;
        }
        
        .stat-box {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #fff, #e2e8f0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            padding: 40px 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-blue), var(--accent-orange));
            border-radius: 2px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 60px;
        }
        
        .timeline-content {
            position: relative;
            width: calc(50% - 40px);
            padding: 30px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(13, 110, 253, 0.1);
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            left: 0;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            left: calc(50% + 40px);
        }
        
        .timeline-year {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 10px 25px rgba(13,110,253,0.3);
            z-index: 2;
        }
        
        .timeline-item:nth-child(odd) .timeline-year {
            right: -120px;
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            left: -120px;
        }
        
        /* Feature Cards */
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid rgba(13, 110, 253, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
            border-color: transparent;
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--light-blue), white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 2px solid var(--primary-blue);
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        /* Client Logo Grid */
        .client-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .client-item {
            background: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            border: 1px solid rgba(13,110,253,0.1);
        }
        
        .client-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(13,110,253,0.15);
        }
        
        .client-name {
            font-weight: 600;
            color: var(--dark-blue);
            font-size: 1.1rem;
        }
        
        /* Project Tags */
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        
        .project-tag {
            background: var(--light-blue);
            color: var(--dark-blue);
            padding: 10px 25px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(13,110,253,0.2);
        }
        
        .project-tag:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(13,110,253,0.2);
        }
        
        /* Domain Expertise */
        .domain-card {
            background: linear-gradient(135deg, white, var(--light-blue));
            border-radius: 16px;
            padding: 25px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid rgba(13,110,253,0.1);
        }
        
        .domain-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(13,110,253,0.15);
        }
        
        .domain-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(180deg, #0a4fa3 0%, #0b7fa6 50%, #10b0a5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .domain-icon i {
            font-size: 1.8rem;
            color: white;
        }
        
        .domain-card h4 {
            color: #212529;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Location Card */
        .location-card {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }
        
        .location-card::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            top: -100px;
            right: -50px;
        }
        
        .location-card i {
            font-size: 2rem;
            margin-right: 15px;
        }
        
        .location-card h3 {
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-hero h1 {
                font-size: 2.8rem;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-content {
                width: calc(100% - 80px);
                left: 80px !important;
            }
            
            .timeline-year {
                left: -20px !important;
                right: auto !important;
                width: 60px;
                height: 60px;
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero {
                padding: 100px 0 60px;
            }
            
            .about-hero h1 {
                font-size: 2.2rem;
            }
            
            .company-card {
                padding: 30px;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .client-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .project-tags {
                gap: 10px;
            }
            
            .project-tag {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .client-grid {
                grid-template-columns: 1fr;
            }
        }