
body {
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #ffffff;
    margin: 0;
    text-align: center;
}




.brand-box {
    display: flex;
    justify-content: flex-start;
    padding: 20px;
}

.brand img {
    width: 160px; /* Adjust for responsiveness */
    height: auto;
    margin: 0 55px;
}

.overlay {
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    padding: 20px;
    height: 50%;
}

.text {
    max-width: 50%; /* Allow more flexibility on smaller screens */
}

.text p {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-size: 38px;
    margin-top: 50px;
    color: #005C9D; /* Change color as needed */
    text-align: left;
}

.banner-form {
    position: absolute;
    right: 40px;
    bottom: 40px;
    background-color: #005C9D;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 25px;
    max-width: 400px; /* Set max width for the form */
    margin: 20px auto; /* Center the form */
    min-width: 300px;
}

.banner-form h2 {
    font-family: "Fira Sans", sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    text-align: left;
}

.banner-form form {
    display: flex;
    flex-direction: column;
}

.banner-form input,
.banner-form select {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 25px;
    border: none;
}

.banner-form input::placeholder{
    color: black; /* Change placeholder text color to black */
    opacity: 1;   /* Ensure the opacity is set to 1 for better visibility */
}

.select-box {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    color: #60666d;
}
.select-box__input {
    display: none; /* Hides the radio button */
}

.select-box__input-text{
    margin: 10px;
    font-family: 'Arial';
    font-size: 13px;
    color: #000;
}

.select-box__current {
    margin: 8px 0;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    cursor: pointer;

}

.select-box__icon {
    margin-right: 10px;
    margin-left: auto;
    width: 25px;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.select-box__list {
    position: absolute;
    width: 100%;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.select-box__list li{
    padding: 10px;
    margin: 5px 15px;
}

.select-box.open .select-box__list {
    opacity: 1;
    visibility: visible;
    text-align: left;
    z-index: 2;
    margin: 0;

}

.select-box__option {
    cursor: pointer;
}

.select-box__option:hover {
    background-color: #fbfbfb;
    color: #546c84;
}

.banner-form button {
    padding: 15px;
    background-color: #34B6E5;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.banner-form button:hover {
    background-color: #007BB3;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.banner-form button {
    padding: 15px;
    background-color: #34B6E5;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.banner-form button:hover {
    background-color: #007BB3;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.header {
    height: 95vh;
    margin: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden; /* Ensure overflow is hidden to maintain layout */
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the header */
    position: absolute; /* Position behind other elements */
    top: 0;
    left: 0;
    z-index: -1; /* Place the image behind content */
    background-size: cover;
    background-position: center;
}

/* Responsive adjustments */
@media screen and (max-width: 1115px) and (min-width: 768px) {
    .text p {
        font-size: 32px;
    }
    .brand img{
        margin: 0 35px;
    }


    .banner-form {
        margin-top: 20px; /* Add margin above the form */
    }
}

@media (max-width: 980px) {
    .header {
        height: 70vh; /* Reduce height on smaller screens */
    }

    .brand img {
        width: 120px; /* Smaller logo on medium screens */
    }
    .text {
        max-width: 95%; /* Allow more flexibility on smaller screens */
    }

    .text p {
        font-size: 28px; /* Adjust font size */
    }

    .banner-form {
        /* Full width on mobile */
    }
}

@media (max-width: 768px) {
    .header {
        height: 60vh; /* Further reduce height on smaller screens */
    }

    .brand img {
        width: 80px; /* Smaller logo on mobile */
    }

    .text p {
        font-size: 28px; /* Adjust font size */
    }

    .banner-form {
        max-width: 90%; /* Full width on mobile */
    }
}

@media (max-width: 650px) {
    .text {
        max-width: 95%;
    }

    .text p {
        font-size: 22px; /* Further reduce font size */
    }

    .brand img {
        margin: 0 15px;
    }
}

/* New media query for 1115px or less */
@media (max-width: 980px) {
    .header {
        flex-direction: column; /* Stack header elements vertically */
    }

    .banner-form {
        right: 0;
        bottom: 0;
        margin-top: 20px; /* Add margin above the form */
        max-width: 85%; /* Make the form responsive */
        position: relative; /* Ensure it stacks below the header */
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
img{
    width: 100px;
}
.container h1 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 38px;
    margin: 30px;
    color: #000;
}
.container h1 span{
    color: #005C9D;
}
.reasons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
.reason {
    flex: 1;
    background-color: #005C9D;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.reason .cont_img{
    height: 120px;
    margin-top: 20px;
}
.reason img {
    max-width: 100px;
    margin-bottom: 20px;
}
.reason h4{
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    margin: 0;
}
.reason p {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 10px;
    margin: 0;
    line-height: 1.6;
}
.cta {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 26px;
    color: #005C9D;
    margin-bottom: 10px;
}
.contact {
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: black;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
img{
    width: 100px;
}
h1 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 38px;
    margin: 30px;
}
h1 span{
    color: #005C9D;
}
.reasons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
.reason {
    flex: 1;
    background-color: #005C9D;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.reason img {
    max-width: 100px;
    margin-bottom: 20px;
}
.reason h4{
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    margin: 0;
}
.reason p {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
}
.cta {
    font-size: 26px;
    color: #005C9D;
    margin-bottom: 10px;
}
.contact {
    font-size:  18px;
    color: black;
}
/* New responsive styles */
@media screen and (max-width: 970px) {
    .reasons {
        flex-wrap:wrap;
    }
    .reason {
        flex: auto;
    }
}

/* Styles for even smaller screens, if needed */
@media screen and (max-width: 480px) {
    .reasons {
        flex-direction: column;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 768px) {
    .reasons-secondary, .testimonials {
        flex-direction: column;
    }

    .reason-secondary, .testimonial {
        margin-bottom: 20px;
    }

    .arrows {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 22px;
        margin: 20px;
    }

    .cta, .cta-secondary, .cta-testimonial {
        font-size: 18px;
    }

    .contact, .contact-secondary {
        font-size: 16px;
    }

    .reason p, .reason-secondary p, .testimonial p {
        font-size: 12px;
    }

    img {
        width: 100px;
    }
}
.second_container{
    max-width: 100%;
    margin: 20px auto;
    background-color: #F7F7F7;
    padding: 20px;

}
.wrap{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.second_container h1 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 38px;
    margin-top: 50px;
    color: #000;
}

.reasons, .reasons-secondary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
.reason, .reason-secondary {
    flex: 1;

    color: white;
    padding: 20px;
}
.reason-secondary {
    border-left-color: #005C9D;
    border-right-color: #005C9D;
}
.reason-secondary {
    background-color: #F7F7F7;
    color: #000;
}
.reason-secondary .cont_img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
}
.reason img, .reason-secondary img {
    max-width: 100px;
    margin-bottom: 20px;
}


.reason-secondary h4{
    font-family: "Fira Sans", sans-serif;
    font-weight: 750;
    font-style: normal;
    font-size: 16px;
    margin: 0;

}
.reason-secondary p {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
}
.cta-secondary {
    padding-top: 20px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 26px;
    color: #005C9D;
    margin-bottom: 10px;
}
.cta-secondary {
    margin-top: -20px;
    color: #005C9D;
}
.contact-secondary {
    font-size: 18px;
    color: black;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;

}




.third-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}
.third-container h1 {
    color: #005C9D;
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 38px;
    margin-bottom: 0;
}
.third-container p {
    font-size: 18px;
    color: black;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 30px;

}

.testimonials {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
.testimonial {
    flex: 1;
    padding: 30px;
    border-radius: 8px;
}
.testimonial {
    background-color: #F7F7F7;
    color: #000;
}
.testimonial img {
    max-width: 100px;
    margin-bottom: 20px;
}
.testimonial p {
    font-size: 14px;
    color: black;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 50px 0;

    line-height: 1.6;
}
p.cta-testimonial {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 26px;
    color: #000000;
    margin-bottom: 10px;
}

p.cta-testimonial span{
    color: #005C9D;
}

.cta-testimonial {
    margin-top: 40px;
    color: #285387;
    font-weight: bold;
}





.profile-container {
    background-color:#F7F7F7 ;
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
}


.profile {
    display: flex;
    align-items: center;
    margin-bottom: 40px;

}

.profile.reverse {
    flex-direction: row-reverse;
}

.profile-image img {
    border-radius: 8px;
    height: auto;
    object-fit: cover;
    width: 457px;
    margin: 20px;
}

.profile-text {
    margin-left: 90px;
    text-align: left;
}

.profile.reverse .profile-text {
    margin-left: 0;
    margin-right: 90px;
}

.profile-text h2 {
    color: #000;
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 38px;
    margin-bottom: 10px;
}

.profile-text h2 span {
    color: #005C9D;
}

.profile-text p {
    font-size: 14px;
    color: black;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 990px) {
    .profile {
        flex-direction: column;
    }

    .profile.reverse {
        flex-direction: column;
    }

    .profile-text {
        margin: 20px 0 0 0;
        text-align: center;
    }

    .profile.reverse .profile-text {
        margin-right: 0;
    }

    .profile-image {
        text-align: center;
    }
    .profile-image img{
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

.contact-section {
    background-color: #005C9D;
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.contact-content h2 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 26px;
    margin-bottom: 40px;
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.circle {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img {
    width: 50px;
    height: 50px;
}

.cta-button p {
    margin: 0;
    font-size: 14px;
}

.footer {
    display: flex;
    align-items: center;
    color: #000000;
    justify-content: space-around;
}

.footer a {
    color: #000000;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-button {
        flex-direction: column;
    }

    .circle {
        width: 40px;
        height: 40px;
    }

    .circle img {
        width: 20px;
        height: 20px;
    }

    .footer {
        flex-direction: column;
        gap: 10px;
    }
}
