@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    background: linear-gradient(rgba(0, 82, 158, 0.8), rgba(0, 82, 158, 0.8)),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1') center/cover;
    min-height: 100vh;
    color: white;
    padding-top: 80px;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.brand-icon {
    font-size: 32px;
    margin-right: 10px;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(5px);
}

.custom-select {
    height: 60px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 18px;
    padding: 15px 25px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select:focus {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.custom-select option {
    background: #00529e;
    color: white;
}

.btn-proceed {
    height: 60px;
    padding: 0 45px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    background: #fff;
    color: #00529e;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-proceed.active {
    opacity: 1;
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-proceed.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.select-wrapper {
    position: relative;
    margin: 25px 0;
}

.select-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
    z-index: 1;
}

.stats-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-icon {
    font-size: 40px;
    color: #00529e;
    margin-bottom: 15px;
}

footer {
    background: #002b5c;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-heading {
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.contact-info div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 25px;
    margin-right: 15px;
    color: #00a8ff;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 30px;
    }
    
    .custom-select {
        height: 50px;
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .btn-proceed {
        height: 50px;
        font-size: 16px;
        padding: 0 35px;
    }

    .stat-card {
        margin: 15px auto;
        max-width: 90%;
    }

    .stats-section .row > div {
        text-align: center;
    }
}