
    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #004aad, #0099ff);
        color: white;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-section h1 {
        font-size: 3rem;
        font-weight: 700;
    }

    .hero-section p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    /* Services Section */
    .services-section {
        padding: 80px 0;
    }

    .service-card {
        background: #fff;
        border-radius: 15px;
        padding: 40px 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .service-card i {
        font-size: 3rem;
        color: #004aad;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .service-card:hover i {
        transform: scale(1.2);
        color: #022e4b;
    }

    .service-card h5 {
        font-weight: 700;
        color: #004aad;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-top: 10px;
        line-height: 1.7;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #004aad, #0099ff);
        color: white;
        text-align: center;
        padding: 80px 20px;
        margin-top: 80px;
        border-radius: 20px 20px 0 0;
    }

    .cta-section h3 {
        font-weight: 700;
    }

    .btn-white {
        background: white;
        color: black;
        border-radius: 30px;
        padding: 12px 30px;
        border: none;
        margin-top: 20px;
        transition: all 0.3s ease;
    }

    .btn-white:hover {
        background: #004aad;
        color: black;
    
    }
