/* Import Fonts */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Variables */

:root {

    --white: #FFF;
    --black: #000;
    --black1: #0F172B;
    --gray: #747474;
    --lightBlue: #F1F8FF;
    --primaryColor: #00C0D2;

}

/* Typography */

p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 28.8px;
}

h1 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 65px;
    font-weight: 900;
    line-height: 80px;
}

h2 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 45px;
    font-weight: 900;
    line-height: 66px;
    text-align: center;

}

h3 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 47.52px;
}

h4 {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 42.24px;
}

h5 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 36.96px;
}

h6 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 29.04px;
}

main {
    background-color: var(--lightBlue);
    min-height: 100vh;
}

/* Home Banner */

main .home-banner .logo-header {
    transition: background-color 0.3s ease;
    /* Smooth transition for background color */
}

.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    background-color: black;
    z-index: 1000;
    /* Ensures it stays on top */
}

main .home-banner {
    height: 700px;
    background: url('../assets/images/bannerbg.png') no-repeat center center/cover;
}

main .home-banner h1 {
    color: var(--white);
}

main .home-banner p {
    max-width: 780px;
    font-size: 20px !important;
    color: var(--white);
}

/* Boxes Section */

.boxes-section {
    min-height: 350px;
}

.boxes-section .card {

    border: none;
    border-radius: 16px;
    transition: all .44s;
    background-color: var(--white);
    box-shadow: 10px 10px 29px 0px #0000000a;
}

.boxes-section .card:hover {
    cursor: pointer;
    transform: translateY(-10px);
    background-color: var(--primaryColor);
}

.boxes-section .card:hover>p {
    color: var(--white);
}

.boxes-section .card:hover>h4 {
    color: var(--black1);
}

.boxes-section .card p {
    color: var(--gray);
}

.boxes-section .card h4 {
    color: var(--primaryColor);
}

/* How It Works */

.how-it-works .first-item,
.how-it-works .second-item {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 509px;
}

.how-it-works .content {
    max-width: 600px;
}

.how-it-works h6 {
    color: var(--primaryColor);
}

.how-it-works h2,
.how-it-works h3 {
    color: var(--black1);
}

.how-it-works p {
    color: var(--gray);
}


/* Footer */

footer {
    min-height: 500px;
    background-color: var(--black);
}

footer .container {
    margin-top: 4rem;
}

footer ul li a span {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 23.76px;
    color: var(--white);

}

footer p {
    color: var(--white);
}

/* Utility Classes */

.why-wait-card {
    position: relative;
    max-width: 700px;
    border: none;
    margin-left: auto;
    margin-right: auto;
    min-height: 287px;
    z-index: 100;
    top: 7rem;
}

.why-wait-card h3 {
    color: var(--black1);
}

.why-wait-card p {
    color: var(--gray);
}

.why-wait-card .btn-enroll {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 69px;
    border-radius: 4px !important;
    color: var(--white);
    text-decoration: none;
    background-color: var(--primaryColor);
    border: 2px solid var(--primaryColor) !important;

    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 36.96px;
    text-align: center;

}

.why-wait-card .btn-enroll:hover {
    color: var(--primaryColor) !important;
    background-color: var(--white);
}

.border-light-2 {
    border-bottom: 1px solid #EBEBEB;
}

.pl-10 {
    padding-left: 36px;
}

.txt-blue {
    color: var(--primaryColor) !important;
}

.bg-white {
    background-color: var(--white);
}

.btn-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 69px;
    color: var(--white);
    border-radius: 4px !important;
    background-color: #00C0D2;
    border: 2px solid var(--primaryColor) !important;

    /* Typography */
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 36.96px;
    text-align: left;

}

.btn-blue:hover {
    color: var(--primaryColor);
    background-color: var(--black1);
}


/* Mobile Responsive */

@media (max-width: 500px) {

    .home-banner {
        min-height: 900px !important;
        background: url('../assets/images/mobilebannerbg.png') no-repeat center center/cover !important;
    }

    .home-banner .banner-img {
        margin-top: 1rem;
    }

    .home-banner p {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: 0.01em;
        text-align: center;

    }

    p {
        font-size: 15px;
        font-weight: 400;
        text-align: center;
    }

    h1 {
        font-size: 32px;
        font-weight: 900;
        line-height: 44px;
        text-align: center;

    }

    h2 {
        font-size: 32px;
        font-weight: 900;
        margin-top: -1rem;
    }

    h3 {
        font-size: 22px;
        font-weight: 900;
        line-height: 40px;
        text-align: center;

    }

    .boxes-section .card {
        margin-bottom: 1.33rem;
    }

    .how-it-works h6 {
        font-size: 16px;
        font-weight: 500;

    }

    .first-item {
        padding-bottom: 5rem !important;
    }

    .last-div {
        padding-top: 4rem !important;
        padding-bottom: 0rem !important;
    }

    .why-wait-card {
        max-width: 330px;
    }

    .bottom-stuff {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer ul {
        margin-bottom: 3rem !important; 
    }

    .reverse-wrap {
        flex-wrap: wrap-reverse !important;
    }

    /* Buttons */
    .btn-blue {
        margin-left: auto;
        margin-right: auto;
        width: 200px;
        height: 55px;
        font-size: 28px;
    }
}