


/* Main content */
.footer-main {
    flex: 1;
    padding: 20px 0px;
}
.content-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* gap: 30px; */
}

/* School info section */
.school-info {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: left;
    text-align: left;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {

    width: 45px;
    height: 45px;


}

.school-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.school-tagline {
    font-size: 0.9rem;
}

.school-title {
    font-family: Golos Text;
    font-weight: 500;
    font-size: 24px;
    line-height: 32.5px;
    letter-spacing: 5%;
    color: #FFFFFF;

    margin-bottom: 10px;
}

.locationf {
    display: flex;
    /* align-items: center; */
    gap: 8px;
    margin-bottom: 20px;
    justify-content: flex-start;
    width: 100%;
}
.locationf span
{
    font-family: Golos Text;
    font-weight: 400;
    font-size: 24px;
    line-height: 32.5px;
    letter-spacing: 0%;
    color:#FFFFFF;
    width: 100%;

}

.location-icon {
    color: #f8a13f;
}

.contact-items {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    /* gap: 8px; */

}
.contact-form-container
{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color:#FFFFFF;
    padding: 8px 8px 8px 0px ;


    font-family: Golos Text;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0%;
    vertical-align: middle;

}

.contact-icon {
    min-width: 24px;
}

.divider {
    width: 100%;
    max-width: 400px;
    height: .1px;
    background-color: var(--yellow);
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: #2a56a5;
    border-radius: 50%;
    text-decoration: none;
}

/* Contact form section */
.contact-form {
    background-color: white;
    color: #333;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;

}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    width: fit-content;
    font-family: Golos Text;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 0%;
    color:var(--blackish);


}

.required::after {
    content: "*";
    color: red;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd   !important;
    border-radius: 5px;
    font-size: 1rem;
}

.phone-input {
    display: flex;
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.flag {
    width: 20px;
    margin-right: 5px;
}

.phone-input input {
    border-radius:5px;
}

.submit-btn {
    background-color: var(--blue);

}

.submit-btn:hover {
    background-color: #1e4080;
}

/* Footer */
footer {
    background-color: var(--blue);
    /* padding: 15px 15px 0px 15px; */
    text-align: center;

}
.marquee
{
    background-color: var(--darkblue);
    font-family: Golos Text;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 0%;
    text-align: center;
    color:#FFFFFF;
    padding: 10px 4px;


}

/* Responsive styles */
@media only screen and (max-width: 900px) {
    .content-wrapper {

        flex-direction: column-reverse;
        align-items: flex-start;
        gap:30px;
    }

    .school-info, .contact-form-container {
        width: 100% !important;
    }





    .logo {
        margin-left: 0;
    }
    .contact-form {
        background-color: white;
        color: #333;
        border-radius: 30px;
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .locationf span {
        font-size: 20px;
        /* text-align: center; */



    };


}


@media only screen and (max-width: 600px) {


    .locationf {

        /* align-items: center; */


    }
    .school-title
    {
        /* text-align: center; */

        font-size: 22px !important;



    }


    .contact-item {
        font-size: 16px;


    }
    .locationf span {
        font-size: 18px;
        /* text-align: center; */
        width: 100%;
    };

    .school-title {

        text-align: center;
    }

}