@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Dancing+Script:wght@400..700&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* hero section */
.bg-banner {
    background: url('../../images/home/banner-img.jpg') center/cover;
    height: 100vh;
    position: relative;
    width: 100%;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(46, 46, 46, 0.668);
}

.banner-overlay-contents {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-overlay-head {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 42px;
    margin-bottom: 10px;
    text-align: center;
}

.banner-overlay-head-span {
    font-weight: 400;
    font-size: 44px;
}

.banner-overlay-paragraph {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-weight: 300;
}

/* hero ends */
/* about section */

.about-section {
    padding: 60px 0px;
}

.about-carousel {
    position: relative;
}

.about-card {
    padding: 0 10px;
    width: 100%;
}

.about-img-div {
    background-position: center;
    background-size: cover;
    height: 380px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.about-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.about-carousel .slick-slide {
    outline: none;
}

.about-desg {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.about-carousel .slick-prev,
.slick-next {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    z-index: 10;

}

.about-carousel .slick-prev:before,
.slick-next:before {
    color: black;
    font-size: 10px;
}

.about-carousel .slick-prev {
    left: 30px;
}

.about-carousel .slick-next {
    right: 30px;
}

/* about end */
/* staus section starts */

.status-section {
    padding: 60px 30px;
}

.status-text {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}

.status-image-wrapper {
    position: relative;
}

.status-img {
    width: 100%;
    height: auto;
    display: block;
}

.stat-box {
    position: absolute;
    background: #f1f1f1;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.status-card-head {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
    color: rgba(0, 0, 0, 1);
}

.status-card-text {
    margin: 0;
    font-size: 14px;
    color: rgba(119, 119, 119, 1);
}

.stat-box-left {
    top: 40px;
    left: -40px;
}

.stat-box-right {
    bottom: 40px;
    right: -40px;
}

/* status-section-end */
/* course-start */
.course-section {
    padding: 60px 0px;
}

.course-card {
    border: none;
    width: 100%;
    height: 200px;
    height: max-content;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.course-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.course-card-head {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flexbox;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;

    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;

}

.course-img {
    width: 100%;
}

.course-card-body {
    padding: 15px 10px;
    border: none;
}

.course-card-text {
    font-size: 13px;
    color: #5C5C5C;
    margin-bottom: 0px;
    font-weight: 400;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flexbox;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;

    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-card-button a {
    text-decoration: none;
    color: var(--theme-blue);

    margin: 10px 0px;
    font-size: 14px;
}

.course-carousel {
    overflow: hidden;
}

.course-carousel .slick-slide {
    margin: 15px;
}

/* .course-carousel .slick-list {
    margin: 0 15px;
} */
/* course-end */
/* news-events-section start */
.news-events-section {
    padding: 60px 0px;
}

.news-event-main-head {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Latest news */

.news-card {
    border: 1px solid rgba(235, 235, 235, 1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 1);
}

.news-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    aspect-ratio: 1/1;
}

.news-card-info {
    padding: 15px;
}

.news-tag {
    background: var(--theme-blue);
    color: rgba(255, 255, 255, 1);
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 5px;
}

.news-head {
    color: rgba(0, 0, 0, 1);
    font-size: 18px;
    font-weight: 500;
}

.news-desc {
    font-size: 12px;
    color: rgba(24, 24, 24, 1);
}

.news-date {
    font-size: 13px;
    color: rgba(97, 97, 97, 1);
}


/* Events */

.event-card {
    border: 1px solid rgba(235, 235, 235, 1);
    border-radius: 10px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 1);
    margin: 10px 0;
}

.event-head {
    color: rgba(24, 24, 24, 1);
    font-size: 16px;
    font-weight: 500;
}

.event-text {
    color: rgba(97, 97, 97, 1);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

/* news-events-end */
/* testimonial-section */

.testimonial-section {
    padding: 60px 0px;
}

.testimonial-card {
    background-color: rgba(240, 240, 240, 1);
    padding: 25px;
}

.testimonial-text {
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 400;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
}

.testimonial-carousel .slick-slide {
    margin: 15px;
}

@media only screen and (max-width: 992px) {
    .bg-banner {
        height: 80vh;
    }

    .banner-overlay-head {
        font-size: 40px;
    }

    .status-card-head {
        font-size: 18px;
    }

    .stat-box {
        padding: 10px;

    }

}

@media only screen and (max-width: 767px) {
    .banner-overlay-head {
        font-size: 38px;
    }

    .banner-overlay-paragraph {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-name {
        font-size: 14px;
    }

}

@media only screen and (max-width: 576px) {
    .bg-banner {
        height: 70vh;
    }

    .banner-overlay-head {
        font-size: 32px;
    }

    .about-desg {
        font-size: 12px;
    }

    .status-card-head {
        font-size: 16px;
    }

    .status-card-text {
        font-size: 12px;
    }

    .news-head {
        font-size: 16px;
    }

    .event-head {
        font-size: 14px;
    }

    .event-text {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .testimonial-name {
        font-size: 12px;
    }
}