* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  font-family: "Sora", sans-serif;
}

:root {
    --text-color: #000;
    --primary-color: #d70000;
    --secondary-color: #d70000;
}


 .section-heading h6 {
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    color: #000000;
    background: #ffe7e7;
    width: 100%;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline;
}

h2 {
    color: #270101;
    font-weight: 700;
}

.bg-color{
   background: #d70000;
}
.primary-text {
    color: var(--text-color);
}

.secondary-text {
    color: var(--secondary-color);
}

.custom-underline {
    position: relative;
    display: inline-block;
}

label {
    font-size: 14px;
    color: #000000;
}

/* h3::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
} */

/* *********************** Header *********************** */
header {
    /* position: absolute; */
    z-index: 999;
    width: 100%;
}

.animateHeader {
    animation: sdb05 1.8s;
    box-shadow: 2px 0px 8px 1px #e7a4d6a6;
}

@keyframes sdb05 {
    0% {
        transform: translateY(-60px);
    }

    100% {
        transform: translateY(0);
    }
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 8px 6px -6px rgb(0 0 0 / 20%);
    z-index: 999;
    background: #fff;
}

header .top-bar {
    overflow: hidden;
    background: #021210 !important;
    line-height: 48px;
    /* font-size: 16px; */
    height: 50px;

}

header .top-bar ul {
    list-style: none;
}

header .top-bar span {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

header .top-bar h5 {
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 400;
}

header .top-bar a {
    color: #000;
    font-size: 16px !important;
    font-weight: 500;
}

header .menu_style .nav-link {
    color: #000 !important;
    font-size: 18px !important;
}


.actives {
    color: #000 !important;
    font-weight: 600 !important;
}

.actives::after {
    width: 80% !important;
}


header .menu_style .nav-link {
    position: relative;
    display: inline-block;
    color: #000;
    padding: 8px 15px;
    text-decoration: none;
}

header .menu_style .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: #000;
    /* underline color */
    transition: width 0.3s ease-in-out;
}

/* Hover effect */
header .menu_style .nav-link:hover::after {
    width: 80%;
}

.vl {
    border-right: 2px solid #d70000;
    height: 15px;
    align-items: center;
    display: flex;
    justify-content: center;
}

/* *********************** Banner Section *********************** */



.img-overlay {
    position: relative;
    display: inline-block;
}

.img-overlay .item img {
    display: block;
    width: 100%;
    height: auto;
}

.img-overlay .item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:#6b64644d;
    /* overlay color */
}

#banner .owl-item img {
    transform: scale(1);
    transition: transform 6s ease-in-out;
    width: 100%;
}

#banner .owl-item.active img {
    transform: scale(1.15);
    /* zoom in */
    width: 100%;
}

#banner .item {
    overflow: hidden;
}

.banner_section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner_section .item {
    /* height: 100vh; */
    justify-content: center;
    text-align: center;
}

.banner-content {
    color: white;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
    position: absolute;
    justify-content: center;
    align-items: center;
    display: flex;
    top: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 60px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: "Poppins", serif;
    line-height: 1.1;
    text-shadow: 1px 1px #4c4c4c;
}

.banner-content p {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.custom-btn {
    background: linear-gradient(135deg, #d70000, #272727);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.custom-btn:hover {
    background: linear-gradient(135deg, #272727, #d70000);
    color: white;
    box-shadow: 0px 1px 3px 0 #333;
    transform: translateY(-3px);
}

.arrow-circle {
    background-color: var(--primary-color);
    color: black;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.banner_section .owl-dots {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #d70000 !important;
}


/* *********************** About Section *********************** */

.AboutUs_section h3::after {
    left: 0;
    right: 0;
    width: 20%;
    height: 4px;
    bottom: -7px;
    margin: 0 auto;
}

.custom-btn {
    background: linear-gradient(135deg, #d70000, #272727);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.arrow-circle {
    background-color: #B4EBFF;
    color: black;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.custom-btn:hover {
    background: linear-gradient(135deg, #272727, #d70000);
}


.AboutUs_section h3 {
    color: #000;
    font-size: 48px;
    font-weight: 600;
    font-family: "Poppins", serif;
}


.AboutUs_section h5 {
    color: #242621;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.AboutUs_section p {
    color: #242621;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}


/* *********************** Our mission and vision *********************** */
.our_mission {
    background: #ffffff;
}

.our_mission .image-box {
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.our_mission .image-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.our_mission .card-wrap:hover img {
    transform: scale(1.08);
}

.info-box {
    background: #fff;
    padding: 28px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.info-box h3 {
    font-weight: 600;
    margin-bottom: 12px;
}

.info-box p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
}

/* CENTER CARD */
.center-box {
    background: #d70000;
    color: #fff;
    padding: 50px 35px;
    border-radius: 20px;
    height: 100%;
    box-shadow:0 25px 60px rgba(231, 88, 88, 0.35);
}

.center-box h3,
.center-box h5 {
    font-weight: 600;
}

.center-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0 30px;
}



/* *********************** Our team *********************** */

.our_team .teacher-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease-in-out;
}

.our_team .teacher-card:hover {
    transform: translateY(-5px);
}

.our_team .teacher-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.our_team .teacher-info {
    padding: 20px 15px 40px;
}

.our_team .teacher-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.our_team .teacher-info span {
    color: #000;
    font-size: 14px;
}



/* *********************** Footer *********************** */
.footer__section {
    background: #0b3d3b;
    padding: 80px 0 30px;
    color: #ccc;
}

 .footer__section  p i{
    color: var(--primary-color);
 }

.footer-text {
    font-size: 14px;
    line-height: 1.7;
}

.footer-link-title {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
}

.social-share a {
    display: inline-block;
    margin-right: 10px;
    width: 38px;
    height: 38px;
    background: #ffffff15;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-share a:hover {
    background: var(--secondary-color);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .footer__section {
        text-align: center;
    }

    .social-share {
        justify-content: center;
    }
}

/* ---------------------top---------------------------- */
#button {
    display: inline-block;
    background-color: var(--primary-color);
    width: 43px;
    height: 35px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 40px;
    right: 24px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    color: #FFF;
}

.bi-chevron-double-up::before {
    margin-top: 10px;
}

#button:hover {
    cursor: pointer;
    background: #000;
    color: #fff;
}

#button:active {
    background-color: #ffffff;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


#overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 7100;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loader {
    z-index: 7700;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg)
            /* rtl:ignore */
        ;
        transform: rotate(360deg)
            /* rtl:ignore */
        ;
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg)
            /* rtl:ignore */
        ;
        transform: rotate(360deg)
            /* rtl:ignore */
        ;
    }
}

.spinner-border {
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: -0.125em;
    border: 0.25em solid #d70000;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: 0.75s linear infinite spinner-border;
    animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rigth-button a {
    display: none
}




.form-control {
    display: block;
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff;
    box-shadow: 2px 0px 3px 0 #f8f8f8;
    border-radius: 18px;
}


.form-select {
    box-shadow: 2px 0px 3px 0 #f8f8f8;
    border-radius: 18px;
}

/* =========================
   Footer Section
========================= */
.footer__section {
    background-color: #0c0f1a;
    color: #fff;
    font-size: 14px;
}

.footer-title {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
}

.social-share a {
    display: inline-block;
    margin-right: 10px;
    width: 38px;
    height: 38px;
    background: #ffffff15;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-share a:hover {
    background: var(--secondary-color);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

.footer-widget p {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

/* Responsive Center */
@media (max-width: 768px) {
    .footer__section {
        text-align: center;
    }
    .footer-widget p {
    display: inherit;
}
}


/* =========================
   Responsive
========================= */
@media (max-width: 991px) {
    .footer__links-wrapper {
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .section-padding-top-bottom {
        padding: 60px 0;
    }
}

/* *********************** Mobile Responsive *********************** */
@media (min-width: 768px) {

    .footer-left {
        justify-content: flex-start;
        padding-left: 20px;
    }

    .footer-right {
        justify-content: flex-end;
        padding-right: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {


    .banner_section img {
        height: 500px !important;
    }

    .banner-content h2 {
        font-size: 36px;
    }


    .our_products_section h3 {
        font-size: 22px;
    }
}


@media (max-width: 500px) {
    .banner-content h2 {
        font-size: 30px;
    }

    .banner_section .item .img {
        height: 500px;
    }

    .our_products_section h3 {
        font-size: 18px;
    }
}


/* ===============================
   RESPONSIVE ENHANCEMENTS
================================ */

/* ---------- Tablets (≤ 991px) ---------- */
@media (max-width: 991px) {

    /* Header */
    header .menu_style .nav-link {
        font-size: 16px !important;
        padding: 8px 10px;
    }

    .vl {
        display: none;
    }

    /* Banner */
    .banner-content {
        top: 18%;
        max-width: 90%;
    }

    .banner-content h2 {
        font-size: 44px;
    }

    .banner-content p {
        font-size: 16px;
    }

    /* About */
    .AboutUs_section h3 {
        font-size: 36px;
    }

    /* Mission & Vision */
    .our_mission .image-box img {
        height: 200px;
    }

    .center-box {
        padding: 40px 25px;
    }

    /* Team */
    .our_team .teacher-card img {
        height: 320px;
    }

    /* Services */
    .Our_services_section h5 {
        font-size: 18px;
    }

    /* Footer */
    .footer h3 {
        font-size: 20px;
    }
}


/* ---------- Mobile (≤ 767px) ---------- */
@media (max-width: 767px) {

    /* Top Bar */
    header .top-bar {
        height: auto;
        line-height: normal;
        text-align: center;
        padding: 6px 0;
    }

    /* Banner */
    .banner_section img {
        height: 460px !important;
        object-fit: cover;
    }

    .banner-content {
        top: 20%;
        padding: 15px;
    }

    .banner-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .banner-content p {
        font-size: 15px;
        padding: 4px 10px;
    }

    .custom-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* Section headings */
    .section-heading h6 {
        font-size: 12px;
        padding-bottom: 5px;
    }

    /* About */
    .AboutUs_section h3 {
        font-size: 28px;
        text-align: center;
    }

    .AboutUs_section p {
        font-size: 15px;
        text-align: center;
    }

    /* Mission */
    .info-box {
        padding: 22px;
    }

    /* .center-box {
        padding: 30px 20px;
        margin-top: 20px;
    } */

    /* Team */
    .our_team .teacher-card img {
        height: 280px;
    }

    .our_team .teacher-info {
        padding: 15px;
    }

    /* Services */
    .Our_services_section h6 {
        font-size: 15px;
        line-height: 24px;
    }

    /* Blog */
    .latest_blog_section h3 {
        font-size: 30px;
    }

    .latest_blog_section p {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer-left,
    .footer-right {
        justify-content: center !important;
        padding: 10px 0;
    }

    /* Back to top */
    #button {
        right: 15px;
        bottom: 25px;
    }
}


/* ---------- Small Mobile (≤ 480px) ---------- */
@media (max-width: 480px) {

    /* Banner */
    .banner-content h2 {
        font-size: 26px;
    }

    .banner-content p {
        font-size: 14px;
    }

    /* About */
    .AboutUs_section h3 {
        font-size: 24px;
    }

    /* Services */
    .Our_services_section h5 {
        font-size: 16px;
    }

    /* Team */
    .our_team .teacher-card img {
        height: 240px;
    }

    /* Footer */
    .footer h3 {
        font-size: 18px;
    }

    /* Loader */
    .spinner-border {
        width: 32px;
        height: 32px;
    }
}