:root {
    --primary: #0056d2;
}

body {
    background-color: white;
}

.container {
    max-width: 1320px;
}

h2 {
    color: #0056d2;
}

.banner-section {
    background-image: linear-gradient(rgba(71, 119, 186, 0.4), rgba(71, 119, 186, 0.4)), url('../img/new/banner.webp');
    width: 100%;
    min-height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
}

.banner-how-it-works {
    background-image: linear-gradient(rgba(71, 119, 186, 0.4), rgba(71, 119, 186, 0.4)), url('../img/new/banner-how-it-works.webp');
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
}

.banner-enquire {
    background-image: linear-gradient(rgba(71, 119, 186, 0.4), rgba(71, 119, 186, 0.4)), url('../img/new/banner-enquire.webp');
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
}

.banner-content {
    max-width: 600px;
    position: absolute;
    top: 22%;
    text-align: center;
    color: white;
}

.banner-about {
    top: 40%;
    text-align: left;
    left: 10%;
    max-width: 450px;
}

h1 {
    font-size: 50px;
    color: white;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    outline: none;
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 40px;
}

.btn-primary:hover {
    background-color: white;
    color: var(--primary);

}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    outline: none;
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 40px;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.banner-shape {
    position: absolute;
    bottom: 0;
    width: 100%;
}


.section-container {
    padding-block: 80px;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 40px;
    padding-inline: 30px;
}

.section-img-right {
    display: flex;
    justify-content: right;
}

.section-img-left {
    display: flex;
    justify-content: left;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer {
    background-color: var(--primary);
    padding-inline: 30px;
    padding-block: 40px;
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    color: white;
}

.footer-container div a {
    color: white;
    text-decoration: none;
}

.footer-link {
    border-top: 1px solid rgba(255, 255, 255, 0.39);
    padding-top: 20px;
}

.section-card {
    background-color: #f6f9ff;
    /* color: white; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    border-radius: 10px;
    gap: 10px;
    border: solid 1px #0d6efd;
}

.form-custom {
    height: 50px;
    border-radius: 6px;
    border: 1px solid #cfd6dd;
    background-color: #f2f5f7;
}

textarea.form-custom {
    height: auto;
}

.form-label {
    font-weight: 500;
    color: #2c3e50;
}

@media (max-width:1024px) {
    h1 {
        font-size: 40px;
    }

    .banner-content {
        top: 30%;
    }

    .section-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-img-right,
    .section-img-left {
        justify-content: center;
    }

}

@media (max-width:768px) {
    h1 {
        font-size: 30px;
    }

    .section-grid {
        grid-template-columns: 1fr;
        padding-inline: 8px;
    }

    .section-container {
        padding-block: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .section-img-right {
        order: 1;
    }

    .section-content {
        order: 2;
    }
}