
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #0A2241; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #6093E5; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #413e66; /* The default color of the main navmenu links */
    --nav-hover-color: #1bb1dc; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1bb1dc; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f5f8fd;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #2d2b46;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #413e66;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}



/*Modal start*/
/* #welcomeModal{
  background-color: none;
}
#welcomeModal .modal-dialog .modal-content{
    color:var(--surface-color);
    background-color: #6093E5;
  }
  #welcomeModalLabel{
    font-size: 1rem;
    color: var(--surface-color);
  } 
  #welcomeModal .modal-dialog .modal-content .modal-header{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-close{
    background-color: var(--background-color);
  }
  #welcomeModal .btn-primary{
    float: right;
    color:var(--surface-color);
    border-color: var(--accent-color);
    background-color: var(--heading-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3rem;
  }
  #welcomeModal .btn-primary:hover{
    color: var(--heading-color);
    background-color: var(--accent-color);
}
#welcomeModalLabel{
  font-size: 1.1vw;
}
#welcomeModal .modal-body p{
  font-size: 0.8vw;
}
#welcomeModal .carousel-control-prev-icon {
  margin-left: 0rem;
}

#welcomeModal .carousel-control-next-icon {
  margin-right: 0rem;
} */
.modal-dialog .modal-content .carousel-control-prev-icon {
    margin-left: -3.5rem;
    top: 50%;
}

.modal-dialog .modal-content .carousel-control-next-icon {
    margin-right: -3.5rem;
    top: 50%;
}

.custom-modal {
    max-width: 720px; /* Custom width */
    max-height: 620px; /* Custom height */
}

.custom-modal {
    max-width: 720px; /* Custom width */
    max-height: 620px; /* Custom height */
}
/*Modal end*/
/*Header start*/
/* .topbar {
  transition: padding 0.3s ease;
} */
.topbar {
    background-color: var(--heading-color);
    color: var(--surface-color);
    font-size: 0.74rem;
    font-weight: 600;
    padding: 7px 4px;
}

    .topbar a {
        text-decoration: none;
        color: var(--surface-color);
    }

    .topbar .btn-outline-primary {
        color: var(--surface-color);
        border-color: var(--surface-color);
        font-weight: 700;
        font-size: 0.74rem;
    }

        .topbar .btn-outline-primary:hover {
            color: #f8d673;
            background-color: #313f57;
        }

    .topbar .btn-primary {
        color: #f8d673;
        border-color: #313f57;
        background-color: #313f57;
        font-weight: 700;
        font-size: 0.74rem;
    }

        .topbar .btn-primary:hover {
            color: #f8d673;
            background-color: #313f57;
        }
/*Header end*/


/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

    .pulsating-play-btn:before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-play-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .pulsating-play-btn:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .pulsating-play-btn:hover:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

    .pulsating-play-btn:hover:after {
        border-left: 15px solid var(--accent-color);
        transform: scale(20);
    }

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    z-index: 997;
}

.header-other {
    background-color: #ffffff;
}

.header .logo {
    line-height: 1;
}

    .header .logo img {
        max-height: 68px;
        margin-right: 8px;
    }

    .header .logo h1 {
        font-size: 30px;
        margin: 0;
        font-weight: 700;
        color: var(--heading-color);
    }

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            padding: 18px 12px;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu li:last-child a {
            padding-right: 0;
        }

        /*  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }*/

        .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

        /*  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }*/

        /*  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }*/

        /*  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }*/
        .navmenu .active i,
        .navmenu .active:focus i {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            transform: rotate(180deg);
        }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid var(--accent-color);
        border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 47px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    background-image: url('../img/banner.jpg');
    background-size: 150% auto; /* Adjust width to 120% and height auto for maintaining aspect ratio */
    background-repeat: no-repeat;
    background-position: center;
}

    .page-title .heading h1 {
        padding-top: 200px;
        padding-bottom: 200px;
        color: #ffffff;
        font-size: 40px;
        line-height: 45px;
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
    }






/* .page-title {
  color: var(--default-color);
  background-image: url('../img/BSS_BANNER_5.jpg');
  padding: 200px 0 600px 0;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  padding-bottom: 100px;
  color: red;
} */


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0 0 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    /* padding-bottom: 60px; */
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-title p {
        margin-bottom: 0;
    }

/****************Hero Starts***********************/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
}

    .hero .hero-bg {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 870%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

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

    .hero h1 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
    }

        .hero h1 span {
            color: var(--accent-color);
        }

    .hero p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 5px 0 30px 0;
        font-size: 20px;
        font-weight: 400;
    }

    .hero .btn-get-started {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px 12px 28px;
        border-radius: 50px;
        transition: 0.5s;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

        .hero .btn-get-started:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }

    .hero .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        color: var(--default-color);
        font-weight: 600;
    }

        .hero .btn-watch-video i {
            color: var(--accent-color);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .hero .btn-watch-video:hover {
            color: var(--accent-color);
        }

            .hero .btn-watch-video:hover i {
                color: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .hero-bg {
        content: url('../img/mobilebanner/back_to_school.jpg'); /* Replace with the mobile-friendly image path */
    }
    /* .hero h1 {
    color: #ffffff;
  }
  .hero p {
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 300;
} */
}

@media (max-width: 1199px) {
    .hero h1 {
        line-height: 48px;
        font-size: 37px;
    }
}

@media (max-width: 424px) {
    .hero h1 {
        line-height: 40px;
        font-size: 30px;
    }

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

@media (max-width: 347px) {
    .hero h1 {
        line-height: 37px;
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }
}
/***************Hero Ends********************/

/**************About Starts*******************/
.about .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 7px;
    display: inline-block;
}

.about .about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 992px) {
    .about .about-title {
        font-size: 2rem;
    }
}

.about .about-description {
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

        .about .feature-list li i {
            color: var(--accent-color);
            font-size: 1.25rem;
        }

.about .profile .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.about .profile .profile-name {
    font-size: 1.125rem;
    margin: 0;
}

.about .profile .profile-position {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.875rem;
}

.about .contact-info {
    padding: 1rem 1.5rem;
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

    .about .contact-info i {
        color: var(--accent-color);
        font-size: 1.5rem;
    }

    .about .contact-info .contact-label {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 0.875rem;
        margin: 0;
    }

    .about .contact-info .contact-number {
        font-weight: 600;
        margin: 0;
    }

.about .image-wrapper {
    position: relative;
}


    .about .image-wrapper .small-image {
        position: absolute;
        top: 20%;
        /* left: -10%; */
        right: -10%;
        width: 45%;
        border: 8px solid var(--surface-color);
    }

    .about .image-wrapper .experience-badge {
        position: absolute;
        bottom: 5%;
        left: 14px;
        /* right: 5%; */
        background-color: var(--accent-color);
        color: var(--contrast-color);
        padding: 1.5rem;
        border-radius: 0.5rem;
        text-align: center;
        min-width: 200px;
        animation: experience-float 3s ease-in-out infinite;
    }


        .about .image-wrapper .experience-badge h3 {
            color: var(--contrast-color);
            font-size: 2.5rem;
            margin: 0;
            line-height: 0.5;
        }

            .about .image-wrapper .experience-badge h3 span {
                font-size: 1rem;
                display: inline-block;
                margin-left: 0.25rem;
            }

        .about .image-wrapper .experience-badge p {
            margin: 0.5rem 0 0;
            font-size: 0.875rem;
        }

@keyframes experience-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

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


@media (max-width: 992px) {
    .about .image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

        .about .image-wrapper .images {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .about .image-wrapper .main-image {
            margin-left: 0;
        }

        .about .image-wrapper .small-image {
            position: static;
            width: 100%;
            margin: 0 auto;
            border: 0;
        }

        .about .image-wrapper .experience-badge {
            position: static;
            width: fit-content;
            margin: 0 auto;
        }

    .about .small-image {
        display: none;
    }
}

@media (max-width: 420px) {
    .about .about-title {
        font-size: 24px;
        margin-bottom: 1rem;
        line-height: 1.2;
        font-weight: 700;
    }

    .about .feature-list li {
        font-size: 14px;
    }
}
/*****************About Ends**********************/


/***********Events Awards Gallery Starts************/
/* .eventsawardsgallery {
  overflow: hidden;
}
.eventsawardsgallery .marquee-horizontal {
  z-index: 200;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 11rem;
  display: flex;
  position: relative;
  overflow: hidden;
}
.eventsawardsgallery .track-horizontal {
  position: absolute;
  white-space: nowrap;
  will-change:var(--moz-transform);
  animation: marquee-horizontal 40s linear infinite;
}
        @keyframes marquee-horizontal {
          0% {
              transform: translateX(0); 
          }
          100% {
              transform: translateX(-50%); 
          }
      }
.eventsawardsgallery .track-horizontal {
  grid-column-gap: 6rem;
  grid-row-gap: 7.5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.eventsawardsgallery .brand-card {
  justify-content: center;
  align-items: center;
  min-width: 11.25rem;
  padding-top: 1.88rem;
  padding-bottom: 1.88rem;
  display: flex;
}
.eventsawardsgallery img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
} */
.eventsawardsgallery {
    overflow: hidden;
}

    .eventsawardsgallery .marquee-horizontal {
        z-index: 200;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 11rem;
        overflow: hidden;
        position: relative;
    }

    .eventsawardsgallery .track-horizontal {
        display: flex;
        gap: 2rem; /* Adjust spacing between cards */
        animation: marquee-horizontal 40s linear infinite; /* Continuous loop animation */
        will-change: transform;
    }

/* Keyframes */
@keyframes marquee-horizontal {
    0% {
        transform: translateX(0%);
    }

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

.eventsawardsgallery .brand-card {
    min-width: 11.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.eventsawardsgallery img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .eventsawardsgallery .marquee-horizontal {
        height: 10rem;
    }

    .eventsawardsgallery .brand-card {
        min-width: 10rem;
        padding: 0.8rem;
    }
}

@media (max-width: 768px) {
    .eventsawardsgallery .marquee-horizontal {
        height: 8rem;
    }

    .eventsawardsgallery .brand-card {
        min-width: 8rem;
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .eventsawardsgallery .marquee-horizontal {
        height: 6rem;
    }

    .eventsawardsgallery .brand-card {
        min-width: 6rem;
        padding: 0.3rem;
    }
}























/************************/

.awards .awardshead {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.awards p {
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.awards .award-item {
    text-align: center;
}

    .awards .award-item img {
        max-width: 100%;
        height: auto;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .awards .awardshead {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .awards .awardshead {
        font-size: 1.5rem;
    }
}

/***********************/








/*********Carousel MVV Starts****************/
.carousel-mvv .carousel-control-next-icon {
    margin-right: -20rem;
}

.carousel-mvv .carousel-control-prev-icon {
    margin-left: -20rem;
}

.carousel-mvv {
    background-color: #0a2241;
}

    .carousel-mvv h2 {
        color: #ffffff;
    }

    .carousel-mvv p {
        color: rgba(255, 255, 255, 0.7);
    }

    .carousel-mvv .carousel-mvv-subhead {
        font-weight: 300;
        color: var(--contrast-color);
        text-transform: uppercase;
        font-size: 1.3rem;
    }

    .carousel-mvv .carousel-mvv-mainhead {
        color: var(--contrast-color);
        font-weight: 500;
        text-align: left;
    }
    /*Changes made in Mission Vission Values Carousel 03-02-2025 start*/
    .carousel-mvv .carousel-item .carousel-smooth {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.05s ease-in-out, transform ease-in-out;
    }

    .carousel-mvv .carousel-item.active .carousel-smooth {
        opacity: 1;
        transform: translateY(0);
    }

:target::before {
    content: "";
    display: block;
    height: 200px; /* Adjust this value based on your header height */
    margin-top: -200px; /* Negative margin equal to the height */
}
/*********Carousel MVV Ends******************/
/*************Principal Speaks Starts****************/
.ticspeaks .speech-quote {
    margin-top: -7rem;
    margin-left: 26rem;
    font-size: 82px;
    color: var(--surface-color);
    transform: rotateY(180deg);
}

.ticspeaks .section-title {
    margin-bottom: 60px;
}

.ticspeaks .content {
    background: var(--heading-color);
    color: var(--contrast-color);
    padding: 1rem 0;
}

    .ticspeaks .content .img-overlap {
        margin-top: -120px;
    }

.ticspeaks p {
    text-align: justify;
    color: var(--contrast-color);
}

.ticspeaks .content-title {
    color: var(--contrast-color);
    font-weight: 300;
    text-align: left;
}

    .ticspeaks .content-title strong {
        font-weight: 700;
    }

.ticspeaks .content-subtitle {
    font-weight: 300;
    color: var(--contrast-color);
    text-transform: uppercase;
    font-size: 1.3rem;
}

/* Override img-overlap on small screens */
@media (max-width: 991px) {
    .ticspeaks .content .img-overlap {
        margin-top: 0; /* Reset margin */
    }
}

@media (max-width: 420px) {
    .ticspeaks .content-subtitle {
        font-size: 16px;
    }

    .ticspeaks .content-title {
        font-size: 20px;
    }
}
/*************Principal Speaks Ends****************/

/**************Custom Button Starts***************************/
.custom-button {
    position: relative;
    background-color: #f8d673;
    color: #0A2241;
    border-right: none; /* Remove right border */
    border-bottom: none; /* Remove bottom border */
    border-radius: 6px;
    padding: 10px 20px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .custom-button::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: -2px; /* Extend to create right border effect */
        bottom: -2px; /* Extend to create bottom border effect */
        border-right: 5px solid #fff; /* Right border */
        border-bottom: 5px solid #fff; /* Bottom border */
        border-radius: 8px; /* Matches button's border radius */
    }

    .custom-button:hover {
        background-color: #F8D673;
        color: #0A2241;
        font-weight: 700;
    }

        .custom-button:hover::after {
            border-color: transparent; /* Removes the border effect on hover */
        }

.custom-button-two {
    position: relative;
    background-color: #0A2241;
    ;
    color: #F8D673;
    border-right: none; /* Remove right border */
    border-bottom: none; /* Remove bottom border */
    border-radius: 6px;
    padding: 10px 20px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .custom-button-two::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: -2px; /* Extend to create right border effect */
        bottom: -2px; /* Extend to create bottom border effect */
        border-right: 5px solid #f8d673; /* Right border */
        border-bottom: 5px solid #f8d673; /* Bottom border */
        border-radius: 8px; /* Matches button's border radius */
    }

    .custom-button-two:hover {
        background-color: #F8D673;
        color: #0A2241;
        font-weight: 700;
    }

        .custom-button-two:hover::after {
            border-color: transparent; /* Removes the border effect on hover */
        }

/***********Custom Button Ends***************/


/*********BSS Chorus Starts************/
.bsschorus {
    /* background-color: #efefef82 !important; */
    padding: 60px 0px;
}

    .bsschorus .player {
        position: relative;
        background-color: #ffffff;
        background-image: url("../img/home/chorus.jpg");
        width: 550px;
        height: 375px;
        border-radius: 3px;
        border-bottom: 6px solid #6093e5;
        box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.2);
        z-index: 1;
        background-repeat: no-repeat;
    }

    .bsschorus p {
        text-align: justify;
    }
    /* .bsschorus .player:hover .mask {
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 1s;
} */
    /* .bsschorus .player .like {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 15px;
  right: 20px;
  z-index: 15;
  font-size: 1.5em;
  vertical-align: middle;
  line-height: 38px;
  color: #f2f2f2;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
.bsschorus .player .bi-heart-fill {
  display: block;
}
.bsschorus .player .mask {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
  transition: all 1s;
} */
    .bsschorus .bsschorus-subhead {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 7px;
        display: inline-block;
        text-transform: uppercase;
    }

    .bsschorus .bsschorus-mainhead {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        font-weight: 700;
    }

    .bsschorus .player-info {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 4;
        list-style: none;
        color: #0a2241;
        transform: scale(1);
    }

        .bsschorus .player-info li {
            margin-bottom: 7px;
        }

            .bsschorus .player-info li:nth-child(1) {
                font-size: 1.5em;
            }

            .bsschorus .player-info li:nth-child(2) {
                font-size: 1.2em;
            }

            .bsschorus .player-info li:nth-child(3) {
                font-size: 0.9em;
            }

    .bsschorus .player .info-two {
        left: auto;
        right: 4.5%;
        z-index: 1;
        color: #f2f2f2;
    }

        .bsschorus .player .info-two li:nth-child(2) {
            float: right;
        }

        .bsschorus .player .info-two li:nth-child(3) {
            display: inline-block;
            float: right;
            clear: both;
        }

    .bsschorus .player #play-button {
        box-sizing: border-box;
        position: absolute;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #6093e5;
        box-shadow: 0 8px 25px 6px rgba(0, 0, 0, 0.5);
        right: 40px;
        bottom: 90px;
        z-index: 5;
        cursor: pointer;
        transition: all 70ms;
        border: none;
    }

        .bsschorus .player #play-button:hover {
            width: 70px;
            height: 70px;
            box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.5);
            right: 45px;
            bottom: 95px;
            transition: all 70ms;
        }

        .bsschorus .player #play-button .bi-play-fill {
            position: absolute;
            font-size: 1.5em;
            left: 52%;
            top: 50%;
            transform: translate(-48%, -50%);
            transition: all 70ms;
            color: #ffffff;
        }

        .bsschorus .player #play-button:hover .bi-play-fill {
            font-size: 1.2em;
            transition: all 70ms;
        }

        .bsschorus .player #play-button .bi-x {
            position: absolute;
            font-size: 1.6em;
            left: 50%;
            top: 49%;
            transform: translate(-50%, -51%);
            color: #ffffff;
        }

    .bsschorus .control-row {
        position: absolute;
        bottom: -1px;
        width: 100%;
        height: 130px;
        background-color: #ffffff;
        overflow: hidden;
        z-index: 3;
    }

        .bsschorus .control-row #pause-button {
            box-sizing: border-box;
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #f2f2f2;
            left: 40px;
            bottom: 25px;
            z-index: 5;
            cursor: pointer;
            border: none;
            transform: scale(0);
            display: none;
            -webkit-animation: scale-animation 0.4s;
            animation: scale-animation 0.4s;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

            .bsschorus .control-row #pause-button .bi-pause-fill {
                position: absolute;
                font-size: 1.5em;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.1s;
                color: #424242;
            }

            .bsschorus .control-row #pause-button .bi-play-fill {
                position: absolute;
                font-size: 1.5em;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.1s;
                color: #424242;
            }

        .bsschorus .control-row .seek-field {
            bottom: 67px;
            left: 148px;
            position: absolute;
            width: 170px;
            z-index: 5;
            transform: scale(0);
            display: none;
            -webkit-animation: scale-animation 0.4s;
            animation: scale-animation 0.4s;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

        .bsschorus .control-row .volume-field {
            bottom: 67px;
            right: 127px;
            position: absolute;
            width: 50px;
            z-index: 5;
            transform: scale(0);
            display: none;
            -webkit-animation: scale-animation 0.4s;
            animation: scale-animation 0.4s;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

        .bsschorus .control-row .volume-icon {
            width: 20px;
            height: 20px;
            position: absolute;
            border-radius: 50%;
            bottom: 58px;
            right: 185px;
            z-index: 5;
            font-size: 1.2em;
            display: none;
            transform: scale(0);
            -webkit-animation: scale-animation 0.4s;
            animation: scale-animation 0.4s;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

            .bsschorus .control-row .volume-icon .bi-volume-down-fill {
                color: #424242;
            }

    .bsschorus .like-active {
        color: #ef5350;
        -webkit-animation: scale-animation 0.4s;
        animation: scale-animation 0.4s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

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

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scale-animation {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.bsschorus .waves-animation-one {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #6093E5;
    z-index: 3;
    left: 42.5%;
    bottom: 20%;
    transform: scale(0);
    -webkit-animation: waves-animation-one 0.25s;
    animation: waves-animation-one 0.25s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    display: none;
}

@-webkit-keyframes waves-animation-one {
    0% {
        transform: scale(1);
    }

    99% {
        transform: scale(7.8);
    }

    100% {
        transform: scale(7.8);
    }
}

@keyframes waves-animation-one {
    0% {
        transform: scale(1);
    }

    99% {
        transform: scale(7.8);
    }

    100% {
        transform: scale(7.8);
    }
}

.bsschorus .waves-animation-two {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #5c6bc0;
    z-index: 3;
    right: 40px;
    bottom: 35px;
    transform: scale(7.8);
    display: none;
    -webkit-animation: waves-animation-two 0.2s;
    animation: waves-animation-two 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes waves-animation-two {
    to {
        transform: scale(0);
    }
}

@keyframes waves-animation-two {
    to {
        transform: scale(0);
    }
}

.bsschorus .info-active {
    -webkit-animation: info-active-animation 3s;
    animation: info-active-animation 3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0.37s;
    animation-delay: 0.37s;
}

@-webkit-keyframes info-active-animation {
    to {
        bottom: 56.5%;
    }
}

@keyframes info-active-animation {
    to {
        bottom: 56.5%;
    }
}

.bsschorus .play-active {
    -webkit-animation: play-animation 0.3s;
    animation: play-animation 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes play-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    98% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        transform: translate(-200px, 65px);
    }

    99% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        transform: translate(-200px, 65px) scale(0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        transform: translate(0, 65px) scale(1);
    }
}

@keyframes play-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    98% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        transform: translate(-200px, 65px);
    }

    99% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        transform: translate(-200px, 65px) scale(0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        transform: translate(0, 65px) scale(1);
    }
}

.bsschorus .play-inactive {
    -webkit-animation: play-inactive 1s;
    animation: play-inactive 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes play-inactive {
    from {
        transform: translate(0, 65px);
    }
}

@keyframes play-inactive {
    from {
        transform: translate(0, 65px);
    }
}

.bsschorus input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

    .bsschorus input[type="range"]:focus {
        outline: none;
    }

    .bsschorus input[type="range"] + .thumb {
        display: none;
    }

    .bsschorus input[type="range"]::-webkit-slider-runnable-track {
        width: 100%;
        height: 3px;
        cursor: pointer;
        animate: 0.2s;
        box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
        background: #f2f2f2;
        border-radius: 0;
        border: 0px solid #000101;
    }

    .bsschorus input[type="range"]::-webkit-slider-thumb {
        box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
        border: 0px solid transparent;
        height: 18px;
        width: 18px;
        border-radius: 50%;
        background: #DDBF66;
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -7px;
    }

    .bsschorus input[type="range"]:focus::-webkit-slider-runnable-track {
        background: #f2f2f2;
    }

    .bsschorus input[type="range"]::-moz-range-track {
        width: 100%;
        height: 3px;
        cursor: pointer;
        animate: 0.2s;
        box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
        background: #f2f2f2;
        border-radius: 0;
        border: 0px solid #000101;
    }

    .bsschorus input[type="range"]::-moz-range-thumb {
        box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
        border: 0px solid transparent;
        height: 18px;
        width: 18px;
        border-radius: 50%;
        background: #009688;
        cursor: pointer;
    }

    .bsschorus input[type="range"]::-ms-track {
        width: 100%;
        height: 3px;
        cursor: pointer;
        animate: 0.2s;
        background: transparent;
        border-color: transparent;
        border-width: 39px 0;
        color: transparent;
        padding-top: 5px;
    }

    .bsschorus input[type="range"]::-ms-fill-lower {
        background: #f2f2f2;
        border: 0px solid transparent;
        border-radius: 0;
        box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
    }

    .bsschorus input[type="range"]::-ms-fill-upper {
        background: #f2f2f2;
        border: 0px solid transparent;
        border-radius: 0x;
        box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
    }

    .bsschorus input[type="range"]::-ms-thumb {
        box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
        border: 0px solid transparent;
        height: 18px;
        width: 18px;
        border-radius: 50%;
        background: #009688;
        cursor: pointer;
        margin-top: 1px;
    }

    .bsschorus input[type="range"]::-ms-tooltip {
        display: none;
    }

    .bsschorus input[type="range"]::-ms-ticks {
        display: none;
    }

    .bsschorus input[type="range"]:focus::-ms-fill-lower {
        background: #f2f2f2;
    }

    .bsschorus input[type="range"]:focus::-ms-fill-upper {
        background: #f2f2f2;
    }
/**********BSS Chorus Ends**************/

/*******Carousel Starts Here*********/
.carousel-control-next-icon, .carousel-control-prev-icon {
    background-color: rgba(68, 68, 68, 0.5);
    border-radius: 50%;
    width: 41px;
    height: 41px;
}
/*************Carousel Ends Here**************/

/****************News & events Starts*******************/
#news .swiper-slide {
    height: auto;
}

#news .upcoming-events-img {
    height: 235px;
    width: 200px;
    object-fit: cover;
}

.comingsoon .bi {
    color: #0a2241;
}
/* .comingsoon .card-header {
  background-color: #6093E5;
  color: #fff;
} */
/* #news a{
  text-decoration: none;
}
#news a h2{
font-size: 32px;
line-height: 1.5;
} */

#news .card-event-text ul li {
    list-style: none;
}
/*********News Ends Here*********/
/*News - Home starts*/
/*****************News-Home start*********************/
/* #news .slide-container .slide-content .card{
  width: 230px !important;
} */
.twitter {
    margin: 0 auto;
    width: 600px;
    height: 510px;
    max-width: 100%;
    padding: 30px;
    background-color: var(--accent-color);
    position: relative;
    border-radius: 10px;
}

.twitter__header {
    position: relative;
}

.twitter__title {
    line-height: 50px;
    margin: 0;
    font-weight: 300;
    font-size: 18px;
    color: var(--surface-color);
}

.twitter__header h2 {
    font-size: 34px;
    color: var(--surface-color);
}

.twitter__title i {
    font-weight: 400;
}

.twitter__btn {
    position: absolute;
    top: 0;
    width: 33px;
    height: 33px;
    background-color: var(--surface-color);
    border-radius: 50%;
    border: 3px var(--surface-color) solid;
    outline: none;
    padding: 0;
    font-size: 24px;
    color: var(--heading-color);
    opacity: 1;
    transition: background-color 350ms ease, color 350ms ease, opacity 350ms ease;
}

    .twitter__btn:disabled {
        opacity: 0.5;
    }

    .twitter__btn:enabled:hover {
        background-color: var(--heading-color);
        color: var(--surface-color);
    }

.twitter__btn--prev {
    right: 42px;
}

.twitter__btn--next {
    right: 0;
}

.twitter__container {
    margin: 30px 0 0;
    height: 490px;
    overflow: hidden;
}

.twitter__list {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 1s ease;
}

.twitter__item {
    padding: 30px 0;
    border-bottom: 1px #fff solid;
}

    .twitter__item:first-child {
        padding-top: 0;
    }

.twitter__item__text {
    margin: 0;
    color: #fff;
    font-weight: 300;
}

    .twitter__item__text a {
        color: #fff;
        text-decoration: none;
        word-break: break-all;
    }

.twitter__item__date {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
}

.twitter__item__img {
    position: relative;
    overflow: hidden;
    height: 240px;
    margin-top: 30px;
}

.twitter .news-img {
    width: 100%;
    height: 200px;
    object-fit: contain !important;
}

#news .form-control {
    width: 82%;
}

.card-event-text {
    margin: 0;
    padding: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

    .card-event-text .card-text {
        padding: 15px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        background-color: #f5f8fd;
        color: var(--heading-color);
    }
/**********Footer Starts Here **************/
/* .footer{
  background-color:var(--heading-color);
}
.footercontainer {
  padding: 50px 0px;
}
.footer ul{
  text-decoration: none;
  list-style: none;
  color: #f6f4f4;
  margin-top: 2rem;
}
.footer ul li{
  margin-top: 0.85rem;
  font-size: 14px;
}
.footer ul li h6{
  color:#fff;
}
.footer ul a{
  color: #f5f5f5;
  text-decoration-line: none;
}
.footer ul a:hover{
  color: #fff;
}
.footer .copyright{
  background-color:var(--accent-color);
  color:#ffffff;
  text-align: center;
  padding: 0.02rem 0 0.02rem 0;
  font-weight: 600;
}
.footer .copyright a{
  text-decoration: none;
  color: #ffffff;
}
.footer .copyright a:hover{
  color: #ffffff;
}
.footer .copyright p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 13px;
  font-weight: 500;
} */


.footer {
    background-color: var(--heading-color);
}

.footercontainer {
    padding: 50px 15px; /* Reduce padding for smaller screens */
}

.footer ul {
    text-decoration: none;
    list-style: none;
    color: #f6f4f4;
    margin-top: 1.5rem;
    padding: 0; /* Reset padding for consistent alignment */
}

    .footer ul li {
        margin-top: 0.85rem;
        font-size: 14px;
    }

        .footer ul li h6 {
            color: #fff;
            font-size: 16px; /* Ensure headings are not too large on smaller screens */
        }

    .footer ul a {
        color: #f5f5f5;
        text-decoration-line: none;
    }

        .footer ul a:hover {
            color: #fff;
        }

.footer .copyright {
    background-color: var(--accent-color);
    color: #ffffff;
    text-align: center;
    padding: 0.5rem 0;
    font-weight: 600;
}

    .footer .copyright a {
        text-decoration: none;
        color: #ffffff;
    }

        .footer .copyright a:hover {
            color: #ffffff;
        }

    .footer .copyright p {
        margin: 0.5rem 0;
        font-size: 13px;
        font-weight: 500;
    }



/****************Footer Ends Here*******************/
/**************Home Page Ends ***************/


/************About Page Starts******************/
/*Mission & Vision start*/
.about .about-main-head {
    font-size: 28px;
    font-weight: 600;
}

.mission-vision h3 {
    font-size: 32px;
    color: #fdb633;
}

.mission-vision .icons {
    margin-top: -22px;
}

.mission-vision .content-title {
    color: var(--heading-color);
    margin-left: 3rem;
}

.mission-vision .underline, .underline1 {
    float: left;
    width: 143px;
    height: 4px;
    background-color: var(--accent-color);
    margin-top: 3px;
    left: 48px;
    position: relative;
}

.mission-vision .underline3 {
    float: left;
    width: 280px;
    height: 4px;
    background-color: var(--accent-color);
    margin-top: 1rem;
    left: 48px;
    position: relative;
}

.mission-vision ul {
    text-decoration: none;
    margin: 0;
    padding: 0;
}

    .mission-vision ul li {
        list-style: none;
    }

.objective-underline {
    width: 272px !important;
}

.history .section-title {
    margin-bottom: 60px;
}

.history .content {
    background: var(--heading-color);
    color: var(--contrast-color);
    padding: 1rem 0;
}

    .history .content .img-overlap {
        margin-top: -120px;
    }

.history p {
    color: var(--contrast-color);
    font-weight: 300;
}

.history .content-title {
    color: var(--contrast-color);
    font-weight: 600;
}

    .history .content-title strong {
        font-weight: 700;
    }

.history .content-subtitle {
    font-weight: 500;
    color: var(--contrast-color);
    text-transform: uppercase;
    font-size: 22px;
}

.ticspeaks-page .speech-quote {
    margin-top: -7rem;
    margin-left: 26rem;
    font-size: 82px;
    color: #0a2241;
    transform: rotateY(180deg);
}

/************About Page Ends******************/


/*Indicators*/
.carousel-indicators [data-bs-target] {
    position: relative;
    width: 60px;
    height: 6px;
    border: none;
    border-radius: 24px;
}

    .carousel-indicators [data-bs-target] span {
        content: ’’;
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #7952b3;
        border-radius: inherit;
    }

/*Mission & Vision end*/
.breadcrumb-item.active {
    color: var(--accent-color);
}
/* #about-section-principal-speech .fa-quote-left{
  color: var(--accent-color);
  font-size: 3rem;
} */
/*Mission */

/*Academics start*/
.academic-banner-bg, .about-section-banner, .home-section-banner {
    background: url(../img/bg-img2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

/*Subject start*/
#curriculum-section {
    background: var(--heading-color);
    padding-bottom: 60px;
}

    #curriculum-section a {
        text-decoration: none;
        color: var(--surface-color);
        text-align: center;
        justify-content: center;
        display: flex;
    }

    #curriculum-section .curriculum-sub-title {
        text-decoration: none;
        color: var(--surface-color);
        text-align: center;
        justify-content: center;
        display: flex;
    }

    #curriculum-section .card {
        color: #fff;
        background-color: var(--heading-color);
        border: 2px solid var(--accent-color);
        padding: 15px;
    }

        #curriculum-section .card p {
            font-family: var(--default-font);
            text-align: center;
            align-items: center;
            justify-content: center;
            display: flex;
            color: #fff;
            font-weight: 300;
        }

        #curriculum-section .card .card-sub-title {
            font-size: 17px;
            font-weight: 500;
            color: #ffffff;
            font-family: var(--default-font);
        }

        #curriculum-section .card .card-text {
            text-align: left;
            font-size: 15px;
            font-family: var(--default-font);
        }

@media (min-width: 768px) {
    #curriculum-section .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 33%;
    }
}
/*Subject end*/
/*subjects-section section Start*/
/* #subjects-section{
  background: none;
  margin-top: 3rem;
  margin-bottom: 3rem;
} */
/**************Academics Page Starts Here*******************/
.subjects-section {
    padding-bottom: 60px;
}

#subjects-section .study a {
    text-decoration: none;
    color: var(--heading-color);
    margin-top: 50px;
}

#subjects-section .study h2 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 35px;
    /* margin-bottom: 15px; */
    text-align: center;
    justify-content: center;
    display: flex;
}

#subjects-section .study p {
    font-family: var(--default-font);
    margin-bottom: 25px;
    text-align: center;
    justify-content: center;
    display: flex;
    /* padding-top: 1rem;
  padding-bottom: 1.5rem; */
}

#subjects-section .card {
    background: transparent;
    border: 1px solid var(--accent-color);
    width: 95%;
    height: 100%;
}

#subjects-section .read-more {
    float: right;
    color: var(--accent-color);
}

#subjects-section .card .card-body {
    padding: 50px;
}

    #subjects-section .card .card-body .card-title {
        margin-bottom: 15px;
        color: #fdb633;
        font-weight: 600;
    }

    #subjects-section .card .card-body .card-text {
        font-family: sans-serif;
        font-size: 14px;
        color: var(--heading-color);
    }

        #subjects-section .card .card-body .card-text a:hover {
            color: var(--accent-color);
        }
/*From our partner start*/
/*Testimonials Start*/
/* #student-achievement{
  padding: 0;
  background-color: none;
}
#student-achievement .student-achievement{
  margin-top: 3rem;
} 
#student-achievement a{
  text-decoration: none;
}
#student-achievement a h2{
font-size: 32px;
line-height: 1.5;
}*/

/*Testimonials end*/
/*Academics end*/
/*Infrastructure start*/
/*Campus start*/
#principal-speech {
    margin: 0;
    padding: 0;
}

    #principal-speech a {
        text-decoration: none;
    }

        #principal-speech a h2 {
            font-size: 32px;
            line-height: 1.5;
        }

.infrastructure .infra-main-heading {
    font-weight: 600;
    font-size: 32px;
}
/* .infrastructure .video-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.infrastructure .video-container .ratio {
  border-radius: 8px;
} */
/* .infrastructure .video-container .watch-button {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--accent-color); 
  color: var(--surface-color);
  border: none;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.infrastructure .video-container .watch-button:hover {
  background-color: var(--accent-color); 
  transform: scale(1.05);
} */
.infrastructure .about-description {
    text-align: justify;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
}
/*Campus end*/
/*Facilities start*/
/*subjects-section section Start*/
/* .facilities-section{
 padding-bottom: 60px;
}
.facilities-section .study a{
  text-decoration: none;
  color: var(--heading-color);
  margin-top: 50px;
}
.facilities-section .study h1{
  color: var(--heading-color);
  font-weight: 500;
  font-size: 48px;
  margin-bottom: 15px;
  text-align: center;
  justify-content: center;
  display: flex;
}
.facilities-section .study p{
  color: var(--heading-color);
  font-family: var(--default-font);
  margin-bottom: 25px;
  text-align: center;
  justify-content: center;
  display: flex;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.facilities-section .card{
  background: transparent;
  width: 100%;
  height: 100%;
} */





/* .facilities-section h1{
      font-family: var(--heading-font);
      justify-content: center;
      display: flex;
      margin-bottom: 5px;
}
.facilities-section h1 a{
      text-decoration: none;
      color: var(--heading-color);
} */
.facilities-section ul li {
    list-style: none;
}

.facilities-section .bi {
    color: var(--heading-color);
}

.facilities-section p {
    font-family: var(--default-font);
    font-weight: 500;
    /* color: var(--heading-color); */
    align-items: center;
    justify-content: center;
    display: flex;
}

.facilities-section .carousel-indicators [data-bs-target] {
    background-color: #6c757d;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin: 0 5px;
    bottom: -44px;
}

.facilities-section .carousel-indicators .active {
    background-color: var(--accent-color);
}

.facilities-section .carousel-control-prev-icon {
    position: absolute;
    bottom: -37px;
    left: 115px;
    width: 28px;
    height: 28px;
}

.facilities-section .carousel-control-next-icon {
    position: absolute;
    bottom: -37px;
    left: -72px;
    width: 28px;
    height: 28px;
}
/* .facilities-section .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: -75px; 
} */
/* .facilities-section .carousel-control-prev-icon {
  position: absolute;
  margin-left: 19.5rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  top: 24.5rem;
  left: -165px;
}
.facilities-section .carousel-control-next-icon {
  position: absolute;
  margin-right: 19.5rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
   top: 24.5rem;
  left: -98px;
}  */
/* .deib-section .carousel-control-prev-icon{
  top: 24.5rem;
  left: -165px;
}
.deib-section .carousel-control-next-icon{
  top: 24.5rem;
  left: -98px;
} */



/*Facilities end*/
/*Transport start*/
.transportation {
    background: var(--heading-color);
}

.transportation {
    padding-bottom: 60px;
}

    .transportation .content-title {
        color: #fff;
        font-size: 32px;
        font-weight: 600;
        justify-content: center;
        display: flex;
    }

    .transportation h3 {
        font-size: 22px;
        color: var(--accent-color);
    }

    .transportation p {
        color: #ffffff;
        font-size: 14px;
    }
/* #transportation a{
  text-decoration: none;
  margin-top: 20px;
}
#transportation .activee{
  justify-content: center;
  align-items: center;
  display: flex;
  font-family: sans-serif;  
 
} */
/*Transport end*/
/*Infrastructure end*/
/*Admission start*/
.admission {
    padding-bottom: 60px;
}

#admission .accordion-button:not(.collapsed) {
    color: var(--surface-color);
    background-color: #6093E5;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    font-weight: 500;
}
/*Important dates start*/
.important-dates {
    padding-bottom: 60px;
    background: var(--heading-color);
    height: auto;
    font-family: var(--default-font);
    color: var(--default-font);
}

    .important-dates p {
        font-size: 16px;
        justify-content: center;
        align-items: center;
        display: flex;
        text-align: center;
    }

    .important-dates .downsidee {
        align-items: center;
        display: flex;
        justify-content: center;
        margin-top: 50px;
        background: #fff;
        border-radius: 15px;
        padding: 50px 100px 50px 100px;
        font-size: 16px;
    }

    .important-dates h1 {
        margin-top: 1rem;
        margin-bottom: 2rem;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .important-dates ul {
        text-decoration: none;
    }

        .important-dates ul li {
            list-style: none;
            border-top: 1px solid var(--heading-color);
            padding: 0.5rem;
            font-size: 15px;
            color: var(--heading-color);
        }
        /* .important-dates ul li:nth-child(8){
  border-bottom:1px solid var(--heading-color);
} */
        .important-dates ul .fa-solid {
            color: var(--heading-color);
            font-size: 13px;
        }

#fee-structure {
    margin-top: 0;
    padding-top: 0;
}

    #fee-structure .table {
        border: 1px solid var(--heading-color);
    }

        #fee-structure .table th, td {
            padding: 1rem;
        }

        #fee-structure .table > :not(caption) > * > * {
            padding: 1rem 1rem;
            background-color: var(--surface-color);
            box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
        }

#admission .read-more-btn {
    color: var(--heading-color);
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--accent-color);
}

    #admission .read-more-btn:hover {
        background-color: var(--accent-color);
        color: var(--surface-color);
    }

#admission-section1 .read-more-btn {
    color: var(--heading-color);
    font-size: 1rem;
    font-weight: 500;
    padding: 6px 20px;
    background-color: transparent;
    border: 2px solid var(--accent-color);
}

    #admission-section1 .read-more-btn:hover {
        background-color: var(--accent-color);
        color: var(--surface-color);
    }
/*Important dates end*/
/*Admission end*/
/*Student Life start*/

#Co-Curricular-Programs .slide-container {
    position: relative;
    max-width: 1120px;
    height: 521px;
    width: 100%;
    /* padding: 109px 0; */
}

#Co-Curricular-Programs .slide-content {
    /* margin: 0 40px; */
    overflow: hidden;
    /* border-radius: 25px;*/
}

#Co-Curricular-Programs .card {
    width: 600px;
    border-radius: 25px;
    background-color: #FFF;
}

#Co-Curricular-Programs .image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#Co-Curricular-Programs .image-content {
    position: relative;
}
/*
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: none;
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4070F4;
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}*/
#Co-Curricular-Programs .card-image {
    position: relative;
    background: #FFF;
}

    #Co-Curricular-Programs .card-image .card-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

#Co-Curricular-Programs .name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

#Co-Curricular-Programs .description {
    font-size: 14px;
    color: #707070;
    text-align: center;
}

#Co-Curricular-Programs .swiper-navBtn {
    position: absolute;
    color: var(--surface-color);
    transition: color 0.3s ease;
    top: 30rem;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background-color: var(--heading-color);
}

    #Co-Curricular-Programs .swiper-navBtn:hover {
        color: var(--heading-color);
        background: var(--surface-color);
        border: 1px solid var(--heading-color);
    }

    #Co-Curricular-Programs .swiper-navBtn::before,
    .swiper-navBtn::after {
        font-size: 35px;
    }

#Co-Curricular-Programs .swiper-button-next {
    right: 20rem;
}

#Co-Curricular-Programs .swiper-button-prev {
    left: 42rem;
}

#Co-Curricular-Programs .swiper-pagination-bullet {
    background-color: #6E93f7;
    opacity: 1;
}

#Co-Curricular-Programs .swiper-pagination-bullet-active {
    background-color: #4070F4;
}

@media screen and (max-width: 768px) {
    #Co-Curricular-Programs .slide-content {
        margin: 0 10px;
    }
}
/*Events & Competitions start*/
.testimonial-slider1 {
    background-color: var(--heading-color);
    padding: 2em 2em 3em;
}

    .testimonial-slider1 .headings {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.testimonial-title {
    color: #fff;
}

    .testimonial-title h2 {
        padding-left: 0.2em;
    }

.testimonial-slider1 .card {
    margin: 0 0.5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
    height: 100%;
}

.testimonial-slider1 .carousel-control-prev {
    background-color: #fff;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    top: 60%;
    transform: translateY(-50%);
}

.testimonial-slider1 .carousel-control-next {
    background-color: #fff;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    top: 60%;
    transform: translateY(-50%);
}

@media (min-width: 576px) {
    .testimonial-slider1 .carousel-item {
        margin-right: 0;
        flex: 0 0 25%;
        display: block;
    }

    .testimonial-slider1 .carousel-inner {
        display: flex;
    }
}

@media (min-width: 768px) {
    .testimonial-slider1 .carousel-inner {
        padding: 1em;
    }

    .testimonial-slider1 .carousel-control-prev {
        opacity: 1;
        position: absolute;
        left: 1em;
        transform: translateY(-50%);
    }

    .testimonial-slider1 .carousel-control-next {
        right: 1em;
        opacity: 1;
    }
}

.testimonial-slider1 .carousel-overlap {
    margin-bottom: -150px;
}
/*Events start*/
#events .section-title {
    margin-bottom: 60px;
}

#events .content {
    background: none;
    color: var(--contrast-color);
    /* padding: 1rem 0; */
}

    #events .content .img-overlap {
        margin-top: -120px;
    }

#events p {
    color: var(--contrast-color);
}

#events .content-title {
    color: var(--contrast-color);
    font-weight: 300;
    text-align: left;
}

    #events .content-title strong {
        font-weight: 700;
    }

#events .content-subtitle {
    font-weight: 300;
    color: var(--contrast-color);
    text-transform: uppercase;
    font-size: 1.3rem;
}

#events .speech-quote {
    margin-top: -7rem;
    margin-left: 26rem;
    font-size: 72px;
    color: var(--surface-color);
}

#events .container {
    background: #fdb633;
}
/*
/*Student life end*/
/* indicator position */
#events .carousel-indicators {
    top: 50%;
    bottom: 0;
    right: 0;
    left: -98%;
}

    /* indicator color */
    #events .carousel-indicators button {
        background: #c0c0c0;
        display: block;
        padding: 5px;
        margin: 10px;
        height: 15px;
        width: 15px;
        border-radius: 50%;
        box-shadow: 0 0 5px 1px white;
        -moz-transition: .3s;
        -o-transition: .3s;
        -webkit-transition: .3s;
        transition: .3s;
    }

    /* active indicator */
    #events .carousel-indicators ol {
        text-decoration: none;
    }

        #events .carousel-indicators ol li {
            list-style: none;
        }

    #events .carousel-indicators .active {
        background: var(--heading-color);
        height: 15px;
        width: 15px;
        margin-bottom: 1px;
    }

    #events .carousel-indicators [data-bs-target] {
        background: var(--heading-color);
        height: 15px;
        width: 15px;
    }

    #events .carousel-indicators button:hover {
        background-color: #333;
        border: 5px solid white;
        box-shadow: 0 0 5px 1px #ac4d4d;
    }
/*student life end*/

/*Parent Resouces start*/
/**************************************/
.parent-resources {
    /* background-image: url("../img/classroom1.jpg");*/
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
    /* color: var(--surface-color);*/
}

@media (max-width: 640px) {
    .parent-resources {
        background-position: center 50px;
        background-size: contain;
    }
}

.parent-resources:before {
    content: "";
    /* background: color-mix(in srgb, var(--background-color), transparent 30%); */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


.parent-resources button[type=submit] {
    color: var(--contrast-color);
    background: #0A2241;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

    .parent-resources button[type=submit]:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }
/*Parents-Teachers meeting end*/
/*School Rules start*/
#School-Rules .accordion-item {
    background: var(--heading-color) !important;
    color: var(--surface-color)
}
/* School Rules End */
/*Holiday List Start*/
.holiday-section .table {
    background-color: var(--surface-color);
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--surface-color);
    /* margin: 1rem 0; */
}

    .holiday-section .table th {
        background-color: var(--heading-color);
        color: var(--surface-color);
        text-align: center;
    }

.calender-section .table th {
    background-color: var(--heading-color);
    color: var(--surface-color);
    text-align: center;
}

.holiday-section .table td, .table th {
    vertical-align: middle;
    text-align: center;
    border: 1px solid rgb(10 34 65 / 50%);
}
/*.holiday-section .table-striped>tbody>tr:nth-of-type(odd)>* {
  color: var(--surface-color);
  background-color: var(--accent-color);
}*/
/*Holiday List end*/
/*Calender start*/

/*Calender end*/
/**********END**************/

/***********Contact Starts Here************/
.contact .contact-left {
    padding: 70px 40px;
    background: #0A2241;
}

.contact .info-item + .info-item {
    margin-top: 40px;
}

.contact .info-item i {
    background: #ffffff;
    color: #0A2241;
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact label {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
}
/***********Contact Ends Here************/
/***********Subject start**************/
.subject-img {
    right: 20px;
    width: 50px;
    height: 50px;
    top: 5%;
}

/******************/
.btn-primary {
    background-color: #0a2241;
    border: 1px solid #0a2241;
}
/*************All Pages Banner start*************/
.hero-banner {
    position: relative;
    background-image: url('/assets/img/BSS_BANNER.jpg'); /* Replace with the actual image path */
    background-size: cover;
    object-fit: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 530px; /* Adjust as needed */
}

    .hero-banner .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: aliceblue;
        /* background-color: rgba(0, 0, 0, 0.5); Comment- Dark overlay */
    }

    .hero-banner .text-center {
        position: relative;
        display: flex;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1;
        margin-top: 4.563rem;
    }

        .hero-banner .text-center h1 {
            color: #0a2241;
            font-size: 2.8rem;
            background-color: rgb(255 255 255 / 50%);
            border-top-left-radius: 15px;
            border-bottom-right-radius: 15px;
            padding: 5px;
        }
/*************All Pages Banner end*************/
/***********Resources-Calender section start******/
.calendar-section table th {
    color: var(--surface-color);
    background-color: #0A2241;
}

/********Media Queries*********/
@media (max-width: 420px) {
    .bsschorus .bsschorus-subhead {
        font-size: 17px;
    }

    .bsschorus .bsschorus-mainhead {
        font-size: 24px;
    }

    .facilities-section .carousel-control-prev-icon {
        position: absolute;
        bottom: -37px;
        left: 50px;
        width: 28px;
        height: 28px;
    }

    .facilities-section .carousel-control-next-icon {
        position: absolute;
        bottom: -37px;
        left: -21px;
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 520px) {
    table, .accordion-body {
        font-size: 11px;
    }

    p {
        font-size: 14px;
    }

    .parent-resources h2 {
        font-size: 18px !important;
    }

    .holiday-calender h2 {
        font-size: 18px !important;
    }

    .School-Rules h2 {
        font-size: 18px !important;
    }

    h2 .accordion-button, h5 {
        font-size: 14px;
    }

    .parent-resources section {
        padding: 10px 0 0 0 !important;
    }
}

@media (min-width: 1200px) {
    .parent-resources section {
        padding: 40px 0 0 0 !important;
    }
}

/*******Admission Page media Query*******/

@media (min-width: 1200px) {
    .important-dates .container {
        max-width: 1080px !important;
    }

    .important-dates h1 {
        font-size: 36px !important;
    }

    .important-dates .downsidee {
        font-size: 16px !important;
        padding: 50px 100px 50px 100px !important;
        font-size: 16px !important;
        margin-bottom: 50px !important;
    }
}

@media (min-width: 992px) {
    .important-dates .container {
        max-width: 900px;
    }

    .important-dates h1 {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .important-dates .container {
        max-width: 750px;
    }

    .important-dates h1 {
        font-size: 18px;
    }

    .important-dates .downsidee {
        padding: 50px 25px 50px 25px;
    }
}

@media (min-width: 470px) {
    .important-dates .container {
        max-width: 450px;
    }

    .important-dates h1 {
        font-size: 18px;
    }

    .important-dates .downsidee {
        padding: 30px 29px 30px 29px;
        margin-top: 10px;
        margin-bottom: 3px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 469px) {
    .date-img {
        display: none;
    }

    .important-dates .downsidee {
        padding: 0px;
        margin: 0px 6px;
    }

    .custom-button {
        font-size: 14px;
    }

    .custom-button-two {
        font-size: 14px;
    }
}

@media (max-width: 478px) {
    .header-home {
        padding-top: 30px;
    }
}

@media (max-width: 358px) {
    .header-home {
        padding-top: 50px;
    }
}

/***********************/
/*****Alumni Heading Testimonial*******/
.testimonial .headings {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 480px;
}

/* Add spacing for content */
.testimonials .card-body {
    padding: 1rem;
}

.testimonials .card {
    border: 1px solid var(--accent-color);
}

.testimonials h3.studentss {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonials .card img {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover;
}

.testimonials .fa-quote-left {
    color: var(--heading-color);
    font-size: 5rem;
}

@media (min-width: 576px) {
    .testimonials .card img {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 768px) {
    .testimonials .card img {
        width: 100px;
        height: 100px;
    }

    .accreditation-img {
        margin-top: 50%;
        margin-bottom: 50%;
    }
}

@media (min-width: 992px) {
    .testimonials .card img {
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 1200px) {
    .testimonials .card img {
        width: 150px;
        height: 150px;
    }
}
/****Student Life Co-curriculum Media Query*******/
@media screen and (max-width: 1400px) {
    #events h2 {
        font-size: 1.5rem;
    }

    #events p {
        font-size: 16px;
    }
    /* .gallery{
     padding-top:0;
     padding-bottom:0;
     margin-top: 0;
     margin-bottom:0
   } */
    p.fst-italic {
        font-size: 14px;
    }
    /* .testimonials p{
     font-size: 13px;
   }
 .testimonials h2{
     font-size: 1.2rem;
   } */
    /* .testimonials h6{
     font-size: 0.7rem;
   } */
}

@media screen and (max-width: 1200px) {
    #events h2 {
        font-size: 1rem;
    }

    #events p {
        font-size: 15px;
    }

    .testimonials p {
        font-size: 13px;
    }

    .testimonials h2 {
        font-size: 0.8rem;
    }

    .testimonials h6 {
        font-size: 0.7rem;
    }

    .owl-carousel .owl-prev {
        left: -52px !important;
    }

    .owl-carousel .owl-next {
        right: -52px !important;
    }

    #Co-Curricular-Programs .slide-container {
        height: 550px;
    }

    #Co-Curricular-Programs .swiper-navBtn {
        top: 30rem;
    }

    #Co-Curricular-Programs .swiper-button-prev {
        left: 38rem;
    }
    /*    #Co-Curricular-Programs .swiper-button-next {
        right: 20rem;
    }*/
    #Co-Curricular-Programs .swiper-button-next {
        right: 12rem !important;
    }

    .gallery {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0
    }
}

@media screen and (max-width: 992px) {
    #events h2 {
        font-size: 0.9rem;
    }

    #events p {
        font-size: 14px;
    }

    .testimonials h2 {
        font-size: 0.9rem;
    }

    .testimonials h6 {
        font-size: 0.7rem;
    }

    .owl-carousel .owl-prev {
        left: -42px !important;
    }

    .owl-carousel .owl-next {
        right: -42px !important;
    }

    #Co-Curricular-Programs .slide-container {
        height: 450px;
    }

    #Co-Curricular-Programs .swiper-navBtn {
        top: 26rem;
    }

    #Co-Curricular-Programs .swiper-button-prev {
        left: 29rem !important;
    }

    #Co-Curricular-Programs .swiper-button-next {
        right: 5rem !important;
    }

    .gallery {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0
    }
}

@media screen and (max-width: 768px) {
    #events h2 {
        font-size: 0.8rem;
    }

    #events p {
        font-size: 13px;
    }

    .testimonials h2 {
        font-size: 0.8rem;
    }

    .owl-carousel .owl-prev {
        left: -45px !important;
    }

    .owl-carousel .owl-next {
        right: -45px !important;
    }

    #Co-Curricular-Programs .slide-container {
        height: 480px;
    }

    #Co-Curricular-Programs .swiper-navBtn {
        top: 28rem;
    }

    #Co-Curricular-Programs .swiper-button-prev {
        /*       left: 18rem;*/
        left: 12rem;
    }

    #Co-Curricular-Programs .swiper-button-next {
        right: 16rem;
    }

    .gallery {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0
    }
}

@media screen and (max-width: 576px) {
    #events h2 {
        font-size: 0.7rem;
    }

    #events p {
        font-size: 12px;
    }

    .owl-carousel .owl-prev {
        left: -34px !important;
    }

    .owl-carousel .owl-next {
        right: -34px !important;
    }

    #Co-Curricular-Programs .slide-container {
        height: 390px;
    }

    #Co-Curricular-Programs .swiper-navBtn {
        top: 23rem;
        margin-bottom: 20px;
    }

    #Co-Curricular-Programs .swiper-button-prev {
        /*         left: 18rem;*/
        left: 12rem;
    }

    #Co-Curricular-Programs .swiper-button-next {
        right: 4rem;
    }

    .gallery {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0
    }
}

@media screen and (max-width: 520px) {
    #Co-Curricular-Programs .slide-container {
        height: 400px;
    }

    #Co-Curricular-Programs .swiper-navBtn {
        top: 22rem !important;
        margin-bottom: 20px !important;
    }

    #Co-Curricular-Programs .swiper-button-prev {
        left: 18rem !important;
    }

    #Co-Curricular-Programs .swiper-button-next {
        right: 6rem !important;
    }

    .gallery {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0
    }
}

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

    .gallery {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0
    }
}

@media screen and (max-width: 521px) {
    #Co-Curricular-Programs .slide-container {
        height: 380px;
    }

    #Co-Curricular-Programs .swiper-navBtn {
        top: 21rem;
        margin-bottom: 20px;
    }

    #Co-Curricular-Programs .swiper-button-prev {
        left: 15rem;
    }

    #Co-Curricular-Programs .swiper-button-next {
        right: 4rem;
    }
}

@media screen and (max-width: 519px) {
    #Co-Curricular-Programs .slide-container {
        height: 400px;
    }

    #Co-Curricular-Programs .swiper-navBtn {
        top: 23rem !important;
        margin-bottom: 20px !important;
    }

    #Co-Curricular-Programs .swiper-button-prev {
        left: 4rem !important;
    }

    #Co-Curricular-Programs .swiper-button-next {
        right: 4rem !important;
    }
}

@media screen and (max-width: 320px) {
    #Co-Curricular-Programs .slide-container {
        height: 400px;
    }

    #Co-Curricular-Programs .swiper-navBtn {
        top: 23rem;
        margin-bottom: 20px;
    }

    #Co-Curricular-Programs .swiper-button-prev {
        left: 4rem;
    }

    #Co-Curricular-Programs .swiper-button-next {
        right: 4rem;
    }
}



/************StudentLifePageStarts**************/
.testimonials {
    background-color: #0A2241;
    position: relative;
    padding-top: 80px;
}

    .testimonials:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 30%;
        background-color: #ffffff;
    }

#customers-testimonials .item-details {
    background-color: #ffffff;
    color: #0A2241;
    padding: 20px 10px;
    text-align: left;
}

    #customers-testimonials .item-details h5 {
        margin: 0 0 15px;
        font-size: 18px;
        line-height: 18px;
    }

        #customers-testimonials .item-details h5 span {
            color: #0A2241;
            float: right;
            padding-right: 20px;
        }

    #customers-testimonials .item-details p {
        font-size: 14px;
    }

#customers-testimonials .item {
    text-align: center;
    margin-bottom: 80px;
    height: 100%;
    min-height: fit-content;
}

.owl-carousel .owl-nav [class*='owl-'] {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .owl-carousel .owl-nav [class*='owl-'].disabled:hover {
        background-color: #ffffff;
    }

.owl-carousel {
    position: relative;
}

    .owl-carousel .owl-next, .owl-carousel .owl-prev {
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 50%;
        position: absolute;
        top: 30%;
        font-size: 20px;
        color: #fff !important;
        border: 1px solid #ddd !important;
        text-align: center;
    }

    .owl-carousel .owl-prev {
        left: -70px;
    }

    .owl-carousel .owl-next {
        right: -70px;
    }

.custom-img-size {
    width: 450px;
    height: 280px; /* Set desired height */
    object-fit: cover; /* Ensures the image remains proportional and fills the dimensions */
}

.owl-carousel .item {
    border: 1px solid #6093E5;
}

    .owl-carousel .item .item-details {
        border-top: 1px solid #6093E5;
    }
/************StudentLifePageEnds**************/

/*video::-webkit-media-controls-timeline {
    cursor: pointer !important;
}*/

/* Ensure the play button inside the video also has a pointer */
/*video::-webkit-media-controls-play-button {
    cursor: pointer !important;
}*/

.plyr__progress input {
    cursor: pointer !important;
}

.gallery-img {
    height: 279px;
    width: 100%;
    object-fit: cover;
}
/*Changes done by binita on 10-04-2025*/
@media screen and (max-width: 768px) {
    .contact .with-icon {
        padding: 45px !important;
    }
}

@media screen and (max-width: 385px) {
    .contact .with-icon {
        padding: 45px !important;
    }

    .navmenu a {
        font-size: 14px !important;
    }
}
/*changes made by binita on 11-04-2025*/
/* ≤ 1200px */
@media (max-width: 1200px) {
    .academics-custom-btn {
        font-size: 0.9rem !important;
        padding: 12px 17px !important;
    }

        .academics-custom-btn .icon-circle {
            width: 14px !important;
            height: 14px !important;
            margin-left: 6px !important;
            border: 0.5px solid #000 !important;
        }

            .academics-custom-btn .icon-circle i {
                font-size: 0.55rem !important;
            }
}
/* ≤ 992px */
@media (max-width: 992px) {
    .academics-custom-btn {
        font-size: 0.8rem !important;
        padding: 10px 15px !important;
    }

        .academics-custom-btn .icon-circle {
            width: 12px !important;
            height: 12px !important;
            margin-left: 5px !important;
            border: 0.4px solid #000 !important;
        }

            .academics-custom-btn .icon-circle i {
                font-size: 0.45rem !important;
            }
}

/* ≤ 768px */
@media (max-width: 768px) {
    .academics-custom-btn {
        font-size: 0.6rem !important;
        padding: 8px 12px !important;
        letter-spacing: 1px !important;
    }

        .academics-custom-btn .icon-circle {
            width: 10px !important;
            height: 10px !important;
            margin-left: 4px !important;
            border: 0.3px solid #000 !important;
        }

            .academics-custom-btn .icon-circle i {
                font-size: 0.35rem;
            }
}

/* ≤ 567px */
@media (max-width: 567px) {
    .academics-custom-btn {
        font-size: 0.5rem !important;
        padding: 6px 10px !important;
        flex-wrap: wrap !important;
    }

        .academics-custom-btn .icon-circle {
            width: 8px !important;
            height: 8px !important;
            margin-left: 3px !important;
        }

            .academics-custom-btn .icon-circle i {
                font-size: 0.35rem !important;
            }
}

/* ≤ 358px */
@media (max-width: 358px) {
    .academics-custom-btn {
        font-size: 0.3rem !important;
        padding: 4px 6px !important;
    }

        .academics-custom-btn .icon-circle {
            width: 6px !important;
            height: 6px !important;
            margin-left: 2px !important;
        }

            .academics-custom-btn .icon-circle i {
                font-size: 0.25rem !important;
            }
}
/*Changes made content 22-04-2025 by binita in Objectives Mission Vision Values*/

@media (min-width: 576px) {
    .objectives-column2, .mission-column2, .vision-column2, .values-column2 {
        padding-top: 0 !important;
        margin-top: 0 !important;
        --bs-gutter-y: 0 !important;
    }
}
