@font-face {
    font-family: 'Gilroy-Regular';
    src: url('/fonts/gilroy-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy-SemiBold';
    src: url('/fonts/gilroy-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy-Bold';
    src: url('/fonts/gilroy-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

.card {
    transition: transform 0.3s ease;   /* smooth zoom effect */
    transform-origin: center center;  /* zooms from the center */
}

.card:hover,
.card:focus-within {
    transform: scale(1.05);  /* zoom in to 105% */
}

.a-href{
    text-decoration: none;
    color: white;
    font-size: 16px;
}
.teaser-text p{
    margin-bottom: 20px;
    margin-top: 15px;
}
.mob-text-container{
    padding: 8px;
    color: white;
}

/* Mobile devices (up to 768px) */
@media only screen and (max-width: 768px) {
    .teaser-title{
     text-align: left;
    }
}

/*start benifit section css*/
.sb-section-title {
    text-align: center;
    font-weight: 600;
    color:black;
    margin-bottom: 2rem;
}

.sb-row-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sb-row-container p {
    flex: 1 1 30%;
    background-color: #F0F0F0;
    padding: 1rem;
    /*border-radius: 10px;*/
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: black;
}

.sb-row-container p:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sb-row-container i {
    font-size: 1.2rem;
    color: #3E245C;
    min-width: 20px;
}

@media (max-width: 768px) {
    .sb-row-container {
        flex-direction: column;
        align-items: stretch;
    }

    .sb-row-container p {
        flex: 1 1 100%;
        margin-bottom: 10px;
    }
}
/*end student benefit section css */

/*start of form style*/
form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    /*border-radius: 12px;*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form div {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #3E245C;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #3E245C;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button[type="submit"] {
    background-color: #3E245C;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

button[type="submit"]:hover {
    background-color: #2d1b45;
}

#formResponse {
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    color: #3E245C;
}

.section-eight-agent{
    margin-bottom: 50px;
}

@media screen and (max-width: 600px) {
    .contact-form-section{
        margin-bottom: 50px;
    }
    form {
        padding: 20px;
        margin-bottom: 0px;
    }
    button[type="submit"] {
        font-size: 15px;
        padding: 10px 20px;
    }
    .sb-row-container {
        gap: 0px;
        margin-bottom: 0px;
    }
    .sb-section-title {
        margin-bottom: 1.5rem;
    }
    .section-eight-agent {
        margin-bottom: 30px;
    }

}
/*end of form style*/




