* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: "Poppins", sans-serif;
}

.hero-section {
    background-color: #f6fcff !important;
    background-size: cover;
    background-position: center;
    height: 100vh;
    /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure it's above the hero section */
}

.nav-link {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: black;
}

.nav-link:hover {
    color: #000000;
    transform: scale(1.1);
}

.main-text {
    font-size: 2.3rem;
}

.step-card {
    background-color: #86b7fe !important;
}

.card {
    border: none;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .step-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title .step-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #012172;
    border-radius: 2px;
}

.card {
    width: 100%;
    /* Set width to 100% */
    transition: all 0.3s ease;
    border-radius: 10px !important;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-secondory {
    min-height: 100px !important;
}

.btn-primary {
    background-color: #012172 !important;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #012172 !important;
}

.footer-container {
    height: 50px;
}

.footer-email {
    display: flex;
    align-items: center;
    justify-content: center;
}
