 
        /* 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;
            }
        }
    
    
    
   
/* Infrastructure Section */
.infrastructure-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.infrastructure-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);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(1, 174, 239, 0.2);
}

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

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

/* Infrastructure Grid */
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.infrastructure-item {
    position: relative;
}

.infrastructure-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.infrastructure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.infrastructure-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f9fa;
}

.infrastructure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.infrastructure-card:hover .infrastructure-image img {
    transform: scale(1.08);
}

/* Stats Bar */
.infrastructure-stats {
    display: grid;
    grid-template-columns: auto 1px auto 1px auto 1px auto;
    align-items: center;
    gap: 50px;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.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, 
        rgba(0, 72, 118, 0.2), 
        transparent);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .infrastructure-container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .infrastructure-stats {
        gap: 35px;
        padding: 35px 40px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .infrastructure-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .infrastructure-section {
        padding: 70px 0;
    }
    
    .infrastructure-container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .infrastructure-stats {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 25px 20px;
    }
    
    .stat-item {
        padding: 20px 0;
        border-bottom: 1px solid rgba(0, 72, 118, 0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .infrastructure-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 7px 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}
