:root {
    --primary-blue: #007FFF;
    --primary-yellow: #F9AF16;
    --secondary-green: #005c34;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.bg-primary-blue{
    background-color: #e7dd0d;
    /* background-color: var(--primary-blue) !important; */
}

.text-primary-green {
    color: #057c05 !important;
    /* color: var(--primary-blue) !important; */
}

.btn-primary-blue {
    background-color: #057c05;
    /* background-color: var(--primary-blue); */
    color: black;
    /* color: white; */
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-green:hover {
    background-color: var(--secondary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 66, 37, 0.15);
}

.bg-yellow {
    background: var(--primary-yellow) !important;
}

.text-yellow {
    color: var(--primary-yellow) !important;
}

.nav-link {
    color: #057c05 !important;
    /* color: var(--primary-blue) !important; */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 1rem 1.2rem !important;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        color: var(--primary-yellow) !important;
    }

.navbar {
    padding: 0.5rem 0;
}

.navbar-brand {
    padding: 0;
}

.hero-section {
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}


.important-notice {
    border-left: 4px solid #e7dd0d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.step-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #057c05;
    /* background-color: var(--primary-yellow); */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.display-4 {
    font-weight: 800;
    letter-spacing: 1px;
}

.display-5 {
    font-weight: 600;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

.btn-warning {
    background-color: var(--primary-yellow);
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #c69500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.2);
}

.btn-outline-primary-green {
    color: #057c05;
    /* color: var(--primary-blue); */
    border: 2px solid #057c05;
    /* border: 2px solid var(--primary-blue); */
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-primary-green:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 66, 37, 0.15);
}

.card-header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

footer {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-links ion-icon {
    font-size: 20px;
    color: white;
}

.contact-info ion-icon {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

.large-radio {
    width: 50px;
    height: 50px;
    accent-color: #007FFF; /* Optional: Customize the color */
}

.form-group div div {
    font-size: 14px;
    margin-top: 5px; /* Adjust spacing between radio button and text */
}

.btn-apply-now {
    background-color: #007FFF !important;
    border-color: #332075 !important;
    color: white !important;
}

@media (max-width: 768px) {
    .social-links {
        text-align: center;
        margin-top: 10px;
    }

    .contact-info {
        text-align: center;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }
}

.success-message {
    color: #28a745;
    font-weight: 500;
}


