* {
    margin: 0;

    padding: 0;

    box-sizing: border-box;
}


body {
    background-color: #fff;
}

/* Loader Start */


/* Loader Ends */
svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
    z-index: -1;
}

h1 h2 h3 {
    font-family: "Eagle Lake", serif !important;
}



/* ================= TOPBAR ================= */

.topbar {
    background-color: #fff;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.topbar a {
    color: #333;
}

.school-title h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.school-title small {
    font-size: 12px;
    color: #333;
}

/* Social Section Wrapper */
.social-wrapper {
    height: 100%;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/* Individual Icon */
.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F3C7E;
    font-size: 25px;
    transition: all .3s ease;
    border-left: 1px solid #eee;
}

/* Remove extra first border */
.social-icon:first-child {
    border-left: none;
}

/* Hover Effect */
.social-icon:hover {
    background: #FBEAEB;
    color: #990011;
}


/* ================= NAVBAR ================= */

.nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 12px;
    transition: all .4s ease;
}


.nav-link:hover {
    background-color: #2F3C7E !important;
    color: #FBEAEB !important;
}

/* .mandatory a:hover {
    color: #990011 !important;
} */

/* ================= TOGGLER ANIMATION ================= */

.menu-btn {
    width: 28px;
}

.menu-btn span {
    display: block;
    height: 3px;
    background: #333;
    margin: 6px 0;
    transition: all .4s ease;
}

/* Toggle animation */

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* ================= MOBILE MENU ================= */

@media (max-width:991px) {

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        padding-top: 20px;
        transition: all .4s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }

}

/* Close Button */

.close-menu {
    font-size: 32px;
    color: #2F3C7E;
    cursor: pointer;
}

@media(max-width:767px) {
    .school-title h5 {
        font-size: 20px;
        line-height: 1.1;
    }
}

@media (max-width:991px) {
    .hr-sm-none {
        display: none;
    }
}

/* Marque Start */
.admission-marquee {
    background: #2F3C7E;
    color: #FBEAEB;
    overflow: hidden;
    padding: 10px 0;
    font-weight: 600;
    position: relative;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 18s linear infinite;
}

.admission-marquee:hover .marquee-track {
    animation-play-state: paused;
    cursor: pointer;
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Marque Ends */

/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    background: url('../images/banners/home-banner.png') center/cover no-repeat;
}

/* overlay */
.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(80, 84, 102, 0.9),
            rgba(255, 201, 184, 0.4));
    top: 0;
    left: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title span {
    color: #FBEAEB;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: .95;
}

/* Buttons */

.btn-admission {

    background: rgba(255, 255, 255, 0.7);
    color: #2F3C7E;
    padding: 12px 26px;
    font-weight: 600;
    margin-right: 15px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #2F3C7E;
}

.btn-admission:hover {
    background: #ffffff;
    color: #2F3C7E;
}

.btn-contact {
    border: 2px solid #ffffff;
    color: #fff;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #ffffff;
    color: #2F3C7E;
}


/* Responsive */

@media(max-width:768px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

}

/* Cards Start */

/* Main Card */
.hero-main-card {
    margin-top: -150px;
    position: relative;
    z-index: 10;
}

.wing-card {
    background: #ffffff;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

/* Default hover effect */
.wing-card:hover {
    transform: translateY(-8px);
}

/* 1st Card */
.col-lg-3:nth-child(1) .wing-card:hover {
    background: #2F3C7E;
    color: #fff;
}

/* 2nd Card */
.col-lg-3:nth-child(2) .wing-card:hover {
    background: #990011;
    color: #fff;
}

/* 3rd Card */
.col-lg-3:nth-child(3) .wing-card:hover {
    background: #2F3C7E;
    color: #fff;
}

/* 4th Card */
.col-lg-3:nth-child(4) .wing-card:hover {
    background: #990011;
    color: #fff;
}

.wing-card:hover p,
.wing-card:hover h5,
.wing-card:hover i {
    color: #fff;
}

@media(max-width:576px) {
    .hero-main-card {
        margin-top: auto;
    }

    /* 2nd Card */
    .col-lg-3:nth-child(2) .wing-card {
        background: #FBEAEB;
    }

    /* 4th Card */
    .col-lg-3:nth-child(4) .wing-card {
        background: #FBEAEB;
    }
}

.wing-icon {
    font-size: 40px;
    color: #2F3C7E;
    margin-bottom: 15px;
}

.wing-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.wing-card p {
    font-size: 14px;
    color: #666;
}

/* Cards Ends */

/* About campus Start */

/* About Campus Ends */

/* Why Choose Us Start */
.why-choose {
    background: rgba(251, 234, 235, 0.7);
}

.why-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    background: #2F3C7E;
    color: #fff;
}

.why-card:hover p {
    color: #fff;
}

.why-icon {
    font-size: 40px;
    color: #2F3C7E;
    margin-bottom: 15px;
}

.why-card:hover .why-icon {
    color: #fff;
}

.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666;
}

/* Why Choose Us Ends */
/*  Achievements Start */
.achievements-section {
    /* background:#fff; */
}

.achievement-card {
    /* background: rgba(251,234,235); */
    padding: 30px 20px;
    border-radius: 8px;
    border: 2px dashed #2F3C7E;
    transition: 0.3s;
}

.achievement-card:hover {
    background: #2F3C7E;
    transform: translateY(-6px);
}

.achievement-icon {
    font-size: 40px;
    color: #2F3C7E;
    margin-bottom: 10px;
}

.achievement-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2F3C7E;
}

.achievement-card p {
    font-size: 14px;
    margin: 0;
    color: #555;
}

/* Hover text color */
.achievement-card:hover h3,
.achievement-card:hover p,
.achievement-card:hover .achievement-icon {
    color: #fff;
}

/*  Achievements Ends */

/* center of excellence start */
.section-title {
    font-family: "Eagle Lake", serif !important;
    font-size: 38px;
    font-weight: 700;
    color: #2F3C7E;
    text-transform: uppercase;
    text-align: center;
}

.section-subtitle {
    font-family: "Eagle Lake", serif !important;
    font-size: 16px !important;
    color: #555;
    text-align: center;
}

.excellence-card {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.excellence-card p {
    font-size: 14px;
    flex-grow: 1;
}

.excellence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.excellence-card img {
    display: block;
    margin: 0 auto;
    transition: transform 0.6s;
}

.excellence-card:hover img {
    transform: rotateY(180deg) scale(1.4);
}

@media(max-width:991px) {
    .section-title {
        font-size: 28px;
    }
}

@media(max-width:576px) {
    .section-title {
        font-size: 24px;
    }
}

.card-custom-button {
    background-color: #2F3C7E;
    border: 2px solid #2F3C7E;
    color: #fff;
    transition: 0.3s ease;
    margin-top: 20px !important;
}

.card-custom-button:hover {
    background-color: #FBEAEB;
    color: #2F3C7E;
    border: 2px solid #2F3C7E;
}

/* center of excellence ends  */
/* Admission Process Start */
.admission-process {
    background: rgba(251, 234, 235, 0.5);
}

.process-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-6px);
}

.process-icon {
    font-size: 40px;
    color: #2F3C7E;
    margin-bottom: 15px;
}

.process-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: #666;
}

.btn-admission-ad {

    background: rgba(255, 255, 255, 0.7);
    color: #2F3C7E;
    padding: 12px 26px;
    font-weight: 600;
    margin-right: 15px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #2F3C7E;
}

.btn-admission-ad:hover {
    background: #ffffff;
    color: #2F3C7E;
}

.btn-prospectus {
    background-color: #243061;
    color: #FBEAEB;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-prospectus:hover {
    background: #ffffff;
    color: #2F3C7E;
}


@media(max-width:576px) {
    .btn-admission-ad {
        margin-right: 0;
    }

}

/* Admission Process Ends */

/* Gallery Start */

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    height: 220px;
    /* same height for all images */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* important */
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Gallery Ends */


/* Testimonial Start */

.testimonials {
    background: #FBEAEB;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

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



/* Testimonial Ends */
/* ===================  Home Page Ends  ================== */

/* ===================  About Page Start  ================== */
/* Mission And Vision Start */
.vision-mission {
    background: rgba(251, 234, 235, 0.5);
}

.vm-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.vm-title {
    color: #2F3C7E;
    font-weight: 600;
}

.vm-list {
    padding-left: 18px;
}

.vm-list li {
    margin-bottom: 8px;
}

/* Mission And Vision Ends */
/* Message From Principal Start */


.principal-img img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #2F3C7E;
    font-weight: 600;
}

.manager-img img{
    border-radius:8px;
    }
/* Message From Principal Ends */
/* Core Values Start */
.core-values {
    background: rgba(251, 234, 235, 0.5);
}

.value-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 32px;
    color: #2F3C7E;
}

.section-title {
    color: #2F3C7E;
    font-weight: 600;
}

/* Core Values Ends */
/* ===================  About Page Ends  ================== */

/* Hero on every page start */

.inner-hero {
    position: relative;
    height: 300px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(55, 58, 71, 0.5);
}

.inner-hero-title {
    position: relative;
    color: #FBEAEB;
    font-size: 42px;
    font-weight: 700;
    z-index: 2;
}

/* Hero on every page ends */


/* ===================  Academics Page Start  ================== */
/* Academics approach Start */

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.approach-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.approach-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Academics approach Ends */
/* Curriculum Structure Start */

.academic-table thead {
    background: #2F3C7E;
    color: #fff;
}

.academic-table tbody tr:nth-child(even) {
    background: #FBEAEB;
}

.academic-table td,
.academic-table th {
    padding: 16px;
    font-weight: 500;
}
/* Curriculum Structure Ends  */
/* Subjects Offered Start */
.subjects-section {
    background: rgba(251, 234, 235, 0.5);
}

.subject-box {
    background: #fff;
    border-radius: 8px;
}

.subject-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 500;
}

.subject-card i {
    font-size: 20px;
    color: #2F3C7E;
}

.subject-card:hover {
    background: #2F3C7E;
    color: #fff;
    transform: translateY(-3px);
}

.subject-card:hover i {
    color: #fff;
}

/* Subjects Offered Ends */

/* Teaching Methodology Start */



.method-card {
    background: #fff;
    border: 2px dashed #2F3C7E;
    padding: 30px 20px;
    border-radius: 8px;
    transition: 0.3s;
    height: 100%;
}

.method-icon {
    width: 70px;
    height: 70px;
    background: #2F3C7E;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
}

.method-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.method-card p {
    font-size: 14px;
    color: #555;
}

.method-card:hover {
    transform: translateY(-8px);
    background: #2F3C7E;
    color: #fff;
}

.method-card:hover p {
    color: #fff;
}

.method-card:hover .method-icon {
    background: #fff;
    color: #2F3C7E;
}

/* Teaching Methodology Ends */
/* Co-Curricular Integration Start  */
.beyond-classroom {
    background: rgba(251, 234, 235, 0.5);
}

.beyond-card {
    background: #2F3C7E;
    color: #fff;
    padding: 35px 20px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
    border: 2px solid #eee;
}

.beyond-card i {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    display: block;
}

.beyond-card h5 {
    font-weight: 600;
    margin: 0;
}

.beyond-card:hover {
    background: #fff;
    color: #243061;
    transform: translateY(-6px);
    border: 2px dashed #243061;
}

.beyond-card:hover i {
    color: #243061;
}

.section-subtitle::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #2F3C7E;
    margin: 10px auto 0;
}

/* Co-Curricular Integration Ends */
/* Academic Facilities Start  */

.facility-card {
    padding: 30px;
    background: #fff;
    border: 2px dashed #243061;
    border-radius: 8px;
    transition: 0.3s;
    height: 100%;
}

.facility-card i {
    font-size: 34px;
    color: #2F3C7E;
    margin-bottom: 15px;
    display: block;
}

.facility-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.facility-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.facility-card:hover {
    background: #2F3C7E;
    color: #fff;
    transform: translateY(-6px);
}

.facility-card:hover i {
    color: #fff;
}

.facility-card:hover p {
    color: #fff;
}

/* Academic Facilities Ends */
/* Examination & Assessment Start */
.exam-section {
    background: rgba(251, 234, 235, 0.7);
}

.exam-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    position: relative;
    transition: 0.3s;
    height: 100%;
}

.exam-number {
    width: 55px;
    height: 55px;
    background: #2F3C7E;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px;
    font-size: 18px;
}

.exam-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.exam-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.exam-card:hover {
    background: #2F3C7E;
    color: #fff;
    transform: translateY(-6px);
}

.exam-card:hover p {
    color: #fff;
}

.exam-card:hover .exam-number {
    background: #fff;
    color: #2F3C7E;
}

/* Examination & Assessment Ends */
/* ===================  Academics Page Ends  ================== */

/* ===================  Result Page Start  ================== */
/* Result Start */
.topper-filter .btn {
    border: 1px solid #2F3C7E;
    color: #2F3C7E;
    margin: 5px;
}

.topper-filter .btn.active,
.topper-filter .btn:hover {
    background: #2F3C7E;
    color: #fff;
}


.topper-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.topper-card img {
    width: 100%;
    transition: 0.4s;
}

.topper-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 60, 126, 0.85);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
    text-align: center;
}

.topper-card:hover img {
    transform: scale(1.1);
}

.topper-card:hover .topper-overlay {
    opacity: 1;
}

.topper-overlay h5 {
    font-weight: 600;
}

.topper-overlay span {
    font-size: 20px;
    font-weight: 700;
}

/* Result Ends */

/* ===================  Result Page End  ================== */


/* Disclosure Start */
.desclosure-subtitle {
    padding: 0 15px;
    margin: 30px 0;
    opacity: .95;
}

.document-list {
    list-style: none;
    padding: 0;
}

.document-list li {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.document-list a {
    text-decoration: none;
    color: #2F3C7E;
    font-weight: 500;
    transition: 0.3s;
}

.document-list a:hover {
    color: #990011;
    padding-left: 5px;
}

/* Disclosure Ends */

/* Contact Start */
.contact-section {
    background: #FBEAEB !important;
}

.contact-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px dotted #1f2a63;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-title {
    color: #2F3C7E;
    font-weight: 600;
    font-family: 'Courier New', Courier, monospace;
}

.contact-card .form-control {
    border-radius: 4px;
    padding: 12px;
    border: 1px solid #ddd;
}

.contact-card .form-control:focus {
    border-color: #2F3C7E;
    box-shadow: none;
}

.btn-send {
    border: 2px dotted #1f2a63 !important;
    color: #1f2a63;
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-send:hover {
    background: #1f2a63;
    color: #fff;
}

/* Contact Ends */
/* Footer Start */

.footer {
    background: #2F3C7E;
    color: #fff;
}

.footer a {
    color: #FBEAEB;
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    padding-left: 0;
    /* removes default ul padding */
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px !important;
}

.footer-links a {
    color: #FBEAEB;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
}

.footer-social-icon {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FBEAEB;
    color: #2F3C7E !important;
    font-size: 30px !important;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: #fff;
    color: #2F3C7E;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
    background: #243061;
    color: #fff;
    font-size: 14px;
}

.footer-bottom a {
    color: #FBEAEB;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Footer Ends */


/* Floating Start */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 999;
}

.floating-whatsapp i {
    font-size: 35px;
}

.floating-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-3px);
}

/* Floating Ends */