    /* About Page Specific Styles */
    .about-hero {
        background: linear-gradient(135deg, #eaf7f9 0%, #f0f8ff 100%);
        color: var(--text-bright);
        padding: 150px 0 100px;
        position: relative;
        overflow: hidden;
    }
    
    /* About hero — diagonal stripe field top-right + soft glow bottom-left */
    .about-hero::before {
        content: '';
        position: absolute;
        top: 0; right: 0;
        width: 45%; height: 100%;
        background: repeating-linear-gradient(
            -55deg,
            rgba(18,179,197,0.035) 0px,
            rgba(18,179,197,0.035) 1px,
            transparent 1px,
            transparent 22px
        );
        pointer-events: none;
    }

    .about-hero::after {
        content: '';
        position: absolute;
        bottom: -80px; left: -60px;
        width: 320px; height: 320px;
        background: radial-gradient(circle, rgba(18,179,197,0.09) 0%, transparent 68%);
        border-radius: 50%;
        pointer-events: none;
    }
    
    .breadcrumb {
        background: transparent;
        padding: 0;
    }
    
    .breadcrumb-item a {
        color: var(--text);
    }
    
    .breadcrumb-item.active {
        color: var(--primary-light);
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        color: var(--text-muted);
    }
    
    .modern-about-section {
        padding: 100px 0;
        background: #ffffff;
    }
    
    .about-visual-modern {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    
    .about-image-modern {
        position: relative;
        z-index: 1;
    }
    
    .floating-stats {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 2;
        animation: float 6s ease-in-out infinite;
    }
    
    .floating-stats h3 {
        color: var(--primary);
        font-size: 2.5rem;
        margin-bottom: 5px;
    }
    
    .floating-stats p {
        margin: 0;
        font-weight: 600;
        color: var(--text);
    }
    
    .mission-vision {
        background: var(--bg-alt);
        padding: 100px 0;
        position: relative;
    }
    
    .mission-card, .vision-card {
        background: #ffffff;
        padding: 50px 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        height: 100%;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    
    .mission-card::before, .vision-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient);
    }
    
    .mission-card:hover, .vision-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .mission-icon, .vision-icon {
        width: 70px;
        height: 70px;
        background: var(--bg-alt);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 1.8rem;
        color: var(--primary);
        transition: var(--transition);
    }
    
    .mission-card:hover .mission-icon, .vision-card:hover .vision-icon {
        background: var(--gradient);
        color: var(--white);
        transform: scale(1.1);
    }
    
    .values-section {
        padding: 100px 0;
        background: #ffffff;
    }
    
    .value-card {
        text-align: center;
        padding: 40px 30px;
        border-radius: 20px;
        transition: var(--transition);
        height: 100%;
    }
    
    .value-card:hover {
        background: var(--bg-alt);
        transform: translateY(-10px);
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        background: var(--gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2rem;
        color: var(--white);
        transition: var(--transition);
    }
    
    .value-card:hover .value-icon {
        transform: scale(1.1) rotate(5deg);
    }
    
    .timeline-section {
        background: var(--bg-alt);
        padding: 100px 0;
    }
    
    .timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: var(--primary);
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 50px;
    }
    
    .timeline-content {
        background: #ffffff;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        width: calc(50% - 40px);
        position: relative;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto;
    }
    
    .timeline-content::before {
        content: '';
        position: absolute;
        top: 30px;
        width: 20px;
        height: 20px;
        background: var(--primary);
        border-radius: 50%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -50px;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        right: -50px;
    }
    
    .timeline-year {
        display: inline-block;
        background: var(--primary);
        color: var(--white);
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .cta-about {
        background: var(--gradient);
        color: var(--white);
        padding: 100px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .cta-about::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
        background-size: cover;
    }
    
    .cta-about .container {
        position: relative;
        z-index: 2;
    }

    /* Enhanced Mobile Responsiveness */
    @media (max-width: 991.98px) {

        .about-visual-modern {
            margin-bottom: 50px;
    }

        .about-hero {
            padding: 120px 0 80px;
        }
        
        .modern-about-section,
        .mission-vision,
        .values-section,
        .timeline-section,
        .cta-about {
            padding: 80px 0;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .mission-card, .vision-card {
            padding: 40px 30px;
            margin-bottom: 30px;
        }
        
        /* Keep floating-stats positioned absolutely on all screens */
        .floating-stats {
            bottom: 20px;
            left: 20px;
            padding: 20px;
        }
        
        .floating-stats h3 {
            font-size: 2rem;
        }
    }

    @media (max-width: 767.98px) {
        .about-hero {
            padding: 100px 0 60px;
        }
        
        .modern-about-section,
        .mission-vision,
        .values-section,
        .timeline-section,
        .cta-about {
            padding: 60px 0;
        }
        
        .hero-title {
            font-size: 2.25rem;
        }
        
        .section-title {
            font-size: 1.75rem;
        }
        
        .hero-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .hero-actions .btn {
            width: 100%;
            max-width: 280px;
            margin-bottom: 15px;
        }
        
        .mission-card, .vision-card {
            padding: 30px 25px;
        }
        
        .value-card {
            padding: 30px 20px;
            margin-bottom: 20px;
        }
        
        .timeline::before {
            left: 30px;
        }
        
        .timeline-content {
            width: calc(100% - 80px);
            margin-left: 80px !important;
        }
        
        .timeline-content::before {
            left: -50px !important;
        }
        
        .cta-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .cta-actions .btn {
            width: 100%;
            max-width: 280px;
            margin-bottom: 15px;
        }
        
        /* Adjust floating-stats for smaller screens but keep it positioned */
        .floating-stats {
            bottom: 15px;
            left: 15px;
            padding: 15px 20px;
        }
        
        .floating-stats h3 {
            font-size: 1.75rem;
        }
    }

    @media (max-width: 575.98px) {
        .about-hero {
            padding: 90px 0 50px;
        }
        
        .hero-title {
            font-size: 2rem;
            line-height: 1.2;
        }
        
        .section-title {
            font-size: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-description {
            font-size: 1.1rem;
        }
        
        .mission-card, .vision-card {
            padding: 25px 20px;
        }
        
        .value-card {
            padding: 25px 20px;
        }
        
        .timeline-content {
            padding: 20px;
        }
        
        .floating-stats {
            bottom: 10px;
            left: 10px;
            padding: 12px 18px;
        }
        
        .floating-stats h3 {
            font-size: 1.5rem;
        }
        
        .floating-stats p {
            font-size: 0.9rem;
        }
        
        .breadcrumb {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 375px) {
        .hero-title {
            font-size: 1.75rem;
        }
        
        .section-title {
            font-size: 1.4rem;
        }
        
        .about-hero {
            padding: 80px 0 40px;
        }
        
        .btn-lg {
            padding: 12px 25px;
            font-size: 1rem;
        }
        
        /* Further adjust for very small screens */
        .floating-stats {
            bottom: 8px;
            left: 8px;
            padding: 10px 15px;
        }
        
        .floating-stats h3 {
            font-size: 1.25rem;
        }
        
        .floating-stats p {
            font-size: 0.8rem;
        }
    }

    /* Safe area support for notched phones */
    @supports(padding: max(0px)) {
        .about-hero,
        .modern-about-section,
        .mission-vision,
        .values-section,
        .timeline-section,
        .cta-about {
            padding-left: max(15px, env(safe-area-inset-left));
            padding-right: max(15px, env(safe-area-inset-right));
        }
    }

    /* Touch device optimizations */
    @media (hover: none) and (pointer: coarse) {
        .mission-card:hover, 
        .vision-card:hover,
        .value-card:hover {
            transform: none;
        }
        
        .mission-card:hover .mission-icon, 
        .vision-card:hover .vision-icon,
        .value-card:hover .value-icon {
            transform: none;
        }
    }

    /* Clients Section Styles */
.clients-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 25px;
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.client-item:hover::before {
    opacity: 0.02;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.client-logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center; 
    position: relative;
    z-index: 2;
}

.client-logo img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
}

.client-item:hover .client-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.2);
}

.client-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.client-info h5 {
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 600;
}

.client-info p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.client-service {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-stats {
    margin-top: 80px;
    padding: 50px 0;
    background: var(--bg-alt);
    border-radius: 20px;
    position: relative;
}

.client-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.3)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    border-radius: 20px;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-number {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Mobile Responsiveness for Clients Section */
@media (max-width: 991.98px) {
    .clients-section {
        padding: 80px 0;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .client-item {
        padding: 35px 25px;
    }
    
    .client-logo {
        width: 70px;
        height: 70px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .client-item {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .client-logo {
        width: 80px;
        height: 80px;
    }
    
    .client-stats {
        margin-top: 60px;
        padding: 40px 0;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .clients-section {
        padding: 50px 0;
    }
    
    .client-item {
        padding: 25px 20px;
    }
    
    .client-logo {
        width: 70px;
        height: 70px;
    }
    
    .client-stats {
        margin-top: 50px;
        padding: 30px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}
