    :root {
        --primary: #043364;
        --primary-light: rgba(64, 189, 239, 0.1);
        --primary-medium: rgba(64, 178, 239, 0.5);
        --bs-primary: #043364;
        --bs-primary-rgb: 88, 64, 239;
    }

    .b-hero {
        background: linear-gradient(135deg, rgb(248, 253, 255) 0%, rgb(238, 247, 255) 100%);
        overflow: hidden;
    }

    .bg-sec-custom {
        background-color: #00b0f0;
    }

    .hero-heading {
        font-size: 2.75rem;
        font-weight: 700;
        line-height: 1.2;
        color: #1a1c3b;
        margin-bottom: 1.5rem;
    }

    .lead {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    .btn-primary {
        background-color: var(--primary);
        border-color: var(--primary);
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #00b0f0;
        border-color: #00b0f0;
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(88, 64, 239, 0.3);
    }

    .btn-outline-primary {
        color: var(--primary);
        border-color: var(--primary);
        transition: all 0.3s ease;
    }

    .btn-outline-primary:hover {
        background-color: var(--primary-light);
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 5px 10px rgba(88, 64, 239, 0.15);
    }

    .badge-primary-soft {
        background-color: var(--primary-light);
        color: var(--primary);
        font-weight: 600;
        font-size: 0.875rem;
        letter-spacing: 0.5px;
        border-radius: 30px;
    }

    .decorative-circle {
        position: absolute;
        border-radius: 50%;
        z-index: 0;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
        background: radial-gradient(circle, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
    }

    .circle-2 {
        width: 400px;
        height: 400px;
        bottom: -150px;
        left: -150px;
        background: radial-gradient(circle, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
    }

    .glow-circle {
        position: absolute;
        width: 250px;
        height: 250px;
        top: -50px;
        right: -50px;
        background: radial-gradient(circle, var(--primary-medium) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        z-index: 1;
        opacity: 0.5;
    }

    .app-showcase {
        transition: all 0.3s ease;
    }

    .app-showcase:hover {
        transform: translateY(-5px);
    }

    .security-badge {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background-color: white;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 3;
    }

    .security-badge i {
        font-size: 30px;
        color: var(--primary);
    }

    /* Add Bootstrap Icons */
    @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css");


    /* Extending existing styles from index page */
    .about-hero {
        background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
        overflow: hidden;
    }

    .mission-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .mission-card {
        transition: all 0.3s ease;
        border: none;
        border-radius: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .mission-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(88, 64, 239, 0.1);
    }

    /* Timeline styles */
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }

    .timeline::after {
        content: '';
        position: absolute;
        width: 6px;
        background-color: var(--primary-light);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
        border-radius: 5px;
    }

    .timeline-item {
        padding: 10px 40px;
        position: relative;
        background-color: inherit;
        width: 50%;
        box-sizing: border-box;
        margin-bottom: 30px;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }

    .timeline-dot {
        position: absolute;
        width: 25px;
        height: 25px;
        right: -12.5px;
        background-color: var(--primary);
        border: 4px solid #fff;
        border-radius: 50%;
        z-index: 1;
        top: 15px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: -12.5px;
    }

    .timeline-content {
        padding: 20px 30px;
        background-color: white;
        position: relative;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .timeline-content h4 {
        color: var(--primary);
        margin-bottom: 5px;
    }

    .timeline-content h5 {
        margin-bottom: 10px;
        font-weight: 600;
    }

    /* Team styles */
    .team-card {
        background-color: white;
        border-radius: 15px;
        padding: 30px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(88, 64, 239, 0.1);
    }

    .team-img-container {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto;
        border: 5px solid var(--primary-light);
    }

    .team-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #00b0f0;
        color: var(--primary);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        background-color: var(--primary);
        color: white;
    }

    /* Value cards */
    .value-card {
        background-color: white;
        border-radius: 15px;
        padding: 30px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(88, 64, 239, 0.1);
    }

    .value-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    /* Achievement cards */
    .achievement-card {
        background-color: white;
        border-radius: 15px;
        padding: 30px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .achievement-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(88, 64, 239, 0.1);
    }

    .achievement-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .counter {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    /* Responsive adjustments for timeline */
    @media screen and (max-width: 768px) {
        .timeline::after {
            left: 31px;
        }

        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }

        .timeline-item:nth-child(even) {
            left: 0;
        }

        .timeline-dot {
            left: 18px;
            right: auto;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: 18px;
        }
    }