﻿
body {
    font-family: Poppins, Arial, sans-serif;
    background: #f6f9ff;
}


.hero {
    padding: 80px 0;
    text-align: center;
}

    .hero h1 {
        font-size: 45px;
        font-weight: 800;
    }

    .hero p {
        font-size: 18px;
        opacity: 0.9;
    }

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #004aad;
}

.box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #0057ff;
    margin-bottom: 25px;
    transition: 0.3s ease-in-out;
}

    .box:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

.box1 {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: 0.3s ease-in-out;
}

    .box1:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

.btn-main {
    background: #0057ff;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    border: 0;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-main:hover {
        background: white;
        color: #0057ff;
        border: 2px solid #0057ff;
    }

.highlight-text {
    color: #ff4e00;
    font-weight: 700;
}

.footer {
    text-align: center;
    padding: 15px;
    background: #004aad;
    color: white;
    margin-top: 40px;
}

