
    /* About page custom styles */
    .about-feature-icon {
        width: 50px;
        height: 50px;
        background: rgba(247, 161, 26, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #F7A11A;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    .about-feature-item:hover .about-feature-icon {
        background: #F7A11A;
        color: #fff;
        transform: scale(1.1);
    }
    
    .value-card {
        background: #fff;
        border-radius: 15px;
        padding: 30px 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        text-align: center;
        border-bottom: 4px solid transparent;
    }
    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-bottom-color: #F7A11A;
    }
    .value-card .value-icon {
        width: 70px;
        height: 70px;
        background: rgba(11, 43, 92, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 28px;
        color: #0B2B5C;
        transition: all 0.3s ease;
    }
    .value-card:hover .value-icon {
        background: #0B2B5C;
        color: #fff;
        transform: scale(1.1);
    }
    .value-card h5 {
        color: #0B2B5C;
        font-weight: 700;
    }
    .value-card p {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .location-badge {
        display: inline-block;
        background: rgba(11, 43, 92, 0.08);
        color: #0B2B5C;
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin: 4px;
        transition: all 0.3s ease;
    }
    .location-badge:hover {
        background: #0B2B5C;
        color: #fff;
        transform: translateY(-2px);
    }
    
    .page-header {
        background: linear-gradient(rgba(11, 43, 92, 0.85), rgba(11, 43, 92, 0.9)), url('img/bg.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 100px 0 80px 0;
    }
    .page-header .breadcrumb {
        background: transparent;
        padding: 0;
        margin: 0;
    }
    .page-header .breadcrumb-item a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
    }
    .page-header .breadcrumb-item a:hover {
        color: #F7A11A;
    }
    .page-header .breadcrumb-item.active {
        color: #F7A11A;
    }
    .page-header .breadcrumb-item+.breadcrumb-item::before {
        color: rgba(255,255,255,0.5);
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .stat-box {
        text-align: center;
        padding: 30px 20px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    .stat-box .stat-number {
        font-size: 42px;
        font-weight: 700;
        color: #0B2B5C;
        line-height: 1;
    }
    .stat-box .stat-label {
        color: #6c757d;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 10px;
        display: block;
    }
    
    .cta-box {
        background: linear-gradient(135deg, #0B2B5C 0%, #1A4B8C 100%);
        padding: 60px 50px;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
    }
    .cta-box::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: rgba(247, 161, 26, 0.05);
        border-radius: 50%;
    }
    .cta-box::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: rgba(247, 161, 26, 0.03);
        border-radius: 50%;
    }
    
    .service-card-about {
        background: #fff;
        border-radius: 15px;
        padding: 30px 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        border-left: 4px solid transparent;
    }
    .service-card-about:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-left-color: #F7A11A;
    }
    .service-card-about .service-icon {
        width: 50px;
        height: 50px;
        background: rgba(11, 43, 92, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #0B2B5C;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }
    .service-card-about:hover .service-icon {
        background: #0B2B5C;
        color: #fff;
    }
    .service-card-about h5 {
        color: #0B2B5C;
        font-weight: 700;
    }
    .service-card-about p {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    .timeline-item {
        position: relative;
        padding-left: 30px;
        border-left: 3px solid #F7A11A;
        padding-bottom: 30px;
    }
    .timeline-item:last-child {
        padding-bottom: 0;
        border-left-color: transparent;
    }
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -7px;
        top: 0;
        width: 12px;
        height: 12px;
        background: #F7A11A;
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: 0 0 0 3px #F7A11A;
    }
    .timeline-item .timeline-year {
        font-size: 20px;
        font-weight: 700;
        color: #F7A11A;
        margin-bottom: 5px;
    }
    .timeline-item .timeline-title {
        font-size: 16px;
        font-weight: 600;
        color: #0B2B5C;
        margin-bottom: 5px;
    }
    .timeline-item .timeline-desc {
        color: #6c757d;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .why-choose-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .why-choose-item:last-child {
        border-bottom: none;
    }
    .why-choose-item .wc-icon {
        width: 40px;
        height: 40px;
        background: rgba(247, 161, 26, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #F7A11A;
        font-size: 16px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .why-choose-item .wc-content h6 {
        color: #0B2B5C;
        font-weight: 600;
        margin-bottom: 3px;
    }
    .why-choose-item .wc-content p {
        color: #6c757d;
        font-size: 14px;
        margin-bottom: 0;
        line-height: 1.5;
    }
    
    @media (max-width: 768px) {
        .page-header {
            padding: 60px 0 40px 0;
        }
        .page-header .display-3 {
            font-size: 2rem;
        }
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .stat-box .stat-number {
            font-size: 30px;
        }
        .cta-box {
            padding: 40px 25px;
        }
        .cta-box h2 {
            font-size: 1.5rem;
        }
    }
    @media (max-width: 576px) {
        .stats-grid {
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .stat-box {
            padding: 20px 15px;
        }
        .stat-box .stat-number {
            font-size: 24px;
        }
    }
