

/* containers */

.body-container1 {
    /* background-image: url(education.jpg); */
    margin-top: 56px;
    /* background-size: cover;
        background-repeat: no-repeat;
        background-position: center; */

}

.container1-fluid {
    background-color: antiquewhite;
    /* backdrop-filter: blur(10px); */
    width: auto;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 50px;

}

.left-section,
.right-section {
    box-sizing: border-box;

}

.right-section {
    background-color: lightcyan;
    border: 2px #123c5a solid;
    padding: 20px;
    border-radius: 18px;
    gap: 20px;

}

.left-section h1 {
    font-size: 50px;
    /* Adjust heading size */
    color: #943208;
    /* Adjust heading color */
    animation: blink 4s infinite;
    /* Blink animation */
}

.right-section form input {
    display: block;
    border-radius: 8px;
    border: 1px #123c5a solid;
    padding: 6px;

}

@media (min-width: 768px) {
    .container1-fluid {
        display: flex;
    }
    .left-section,
.right-section {
    margin: 40px 40px 40px 40px;
}


}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}


.body-container2 {
    margin: 40px;
    height: 100%;
    display: block;
    justify-items: center;
}

.body-container2 h1 {
    color: aliceblue;
}

.all-cards {
    justify-content: center;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.card {
    border-radius: 20px;
}

.card img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

@media (max-width: 768px) {
    .all-cards {
        flex-direction: column;
    }

    .card {
        margin-bottom: 12px;
    }

}

@media (min-width: 768px) {
    .card {
        width: 30em;
    }
}


.body-container3 {
    background-color: antiquewhite;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width:768px) {
    .body-container3 {
        flex-direction: column;
    }

}

.body-container3 h2 {
    background-color: brown;
    color: white;
    width: auto;
    padding: 16px;
    border-radius: 10px;
    text-align: center;

}







/* our vision css starts */

.our-vision {
    background-color: antiquewhite;
    display: flex;
    flex-wrap: wrap;
    padding-left: 70px;
    padding-right: 70px;
    padding-top: 40px;
    padding-bottom: 40px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.our-vision img {
    width: 25em;
    border-radius: 20px;
}

.content-our-vision {
    position: relative;
    right: 20px;
    border: 1px solid #123c5a;
    background-color: white;
    width: 22em;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {

    .our-vision {
        flex-direction: column;
        padding-left: 0%;
        padding-right: 0%;
    }

    .our-vision img {
        width: 20em;
    }

    .content-our-vision {
        width: 17em;
        position: relative;
        bottom: 20px;
        right: 0%;
    }

}

/* our vision css ends */

/* footer css starts */


.footer-container {
    margin: 20px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer1 {
    color: white;
    padding-left: 10px;
    padding-right: 10px;

}

.verticle-line {
    width: 1px;
    height: auto;
    background-color: antiquewhite;
    margin-left: 10px;
    margin-right: 10px;
}

.hor-line {
    height: 1px;
    width: auto;
    background-color: antiquewhite;
    margin-bottom: 20px;
    margin-top: 20px;
    /* margin: 20px; */

}

@media (min-width: 768px) {
    .footer1 {
        display: flex;
    }

    .footer-container {
        margin: 80px;
    }
}

.footer2 {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer2-col h4 {
    margin-bottom: 20px;
    position: relative;
}

.footer2-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: brown;
    height: 2px;
    width: 50px;
    border-radius: 100%;
    box-sizing: border-box;
}

.footer2-col ul li a {
    text-decoration: none;
    text-transform: capitalize;
    color: black;
    font-weight: 400;
}

.footer2-col ul li a:hover {
    font-weight: 500;
}

.footer2-col img {
    height: 60px;
    border-radius: 10px;

}

@media (max-width: 768px) {
    .footer2 {
        flex-direction: column;
    }

    .footer2-col h4 {
        margin-top: 40px;
    }

}

.social-links {
    margin-top: 10px;
    text-align: center;
}

.footer2-col h6 {
    text-align: center;
    margin-top: 20px;
}

.footer2-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    /* margin: 0 10px 10px 0; */
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #123c5a;
    transition: all 0.5s ease;
}

.footer2-col .social-links a:hover {
    background-color: #123c5a;
    color: white;
}

.copyright {
    color: white;
    text-align: center;
    margin-top: 40px;
}