

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Smooch+Sans:wght@100..900&display=swap');
*{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
@font-face {
    font-family: 'myfont';
    src: url('font/le-beaune-new/LeBeauneNew.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
  }

::-moz-selection{
    color: white;
    background-color: #0B082B ;
}

::selection{
    color: white;
    background-color: #0B082B ;
}

body{
    font-family: raleway;
    height: 100%;
    width: 100%;
   
}
/* loader css */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.loader-image {
    width: 170px;
    height: 200px;
    opacity: 0;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-animation: imageReveal 0.5s ease forwards;
            animation: imageReveal 0.5s ease forwards;
}

@-webkit-keyframes imageReveal {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
                transform: scale(0.8);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

@keyframes imageReveal {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
                transform: scale(0.8);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

.loader-container.fade-out {
    opacity: 0;
    visibility: hidden;
    -webkit-animation: loaderFadeOut 0.5s ease forwards;
            animation: loaderFadeOut 0.5s ease forwards;
}

@-webkit-keyframes loaderFadeOut {
    0% {
        opacity: 1;
        -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
    }
    100% {
        opacity: 0;
        -webkit-backdrop-filter: blur(0px);
                backdrop-filter: blur(0px);
    }
}

@keyframes loaderFadeOut {
    0% {
        opacity: 1;
        -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
    }
    100% {
        opacity: 0;
        -webkit-backdrop-filter: blur(0px);
                backdrop-filter: blur(0px);
    }
}

.page-content {
    min-height: 100vh;
    padding: 20px;
}
/* loader css end */

/* topbar css */
.top-bar {
    background-color: #120B43;
    color: white;
    padding: 10px 0;
    font-size: 12px;
    font-family: Raleway;
    letter-spacing: 1px;
}

@media (max-width:786px){
    .top-bar{
        display: none;
    }
}
.contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
}

.contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
}

.contact-item i {
    color: #ffd700;
}

@media (max-width: 768px) {
    .contact-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-item {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    .opening-hours {
        text-align: center;
        margin-top: 10px;
    }
}

/* topbar css end */
.navbar {
    padding: 15px 0;
    /* width: 100%;
    z-index: 999;
    position: fixed; */
    background-color: white;
    -webkit-box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: #2c3e50 !important;
    position: relative;
    padding: 12px 20px !important;
    margin: 0 5px;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px ;
    font-family: Raleway !important;
    /* letter-spacing: 0.3px; */
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color:#ace1f999;
    -webkit-transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover:before {
    width: 100%;
}

.dropdown-menu {
    border: none;
    -webkit-box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 12px 0;
    border-radius: 12px;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item {
    padding: 10px 24px;
    color: #2c3e50;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 500;
    font-family: Raleway !important;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0B082B;
    padding-left: 28px;
}

@media (min-width: 992px) {
    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(10px);
            -ms-transform: translateY(10px);
                transform: translateY(10px);
        display: block;
        margin-top: 10px;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -320px;
        width: 320px;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 25px;
        overflow-y: auto;
        -webkit-box-shadow: 0 0 30px rgba(0,0,0,0.1);
                box-shadow: 0 0 30px rgba(0,0,0,0.1);
    }

    .navbar-collapse.show {
        -webkit-transform: translateX(320px);
            -ms-transform: translateX(320px);
                transform: translateX(320px);
    }

    .navbar-nav {
        margin-top: 30px;
    }

    .nav-item {
        margin: 8px 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 0 !important;
        margin: 0;
        color: #1a202c !important;
    }

    .dropdown-menu {
        display: none;
        -webkit-box-shadow: none;
                box-shadow: none;
        padding: 5px 0 5px 20px;
        border-left: 2px solid #0B082B;
        margin: 8px 0 8px 15px;
        border-radius: 0;
        background: transparent;
    }

    .dropdown-menu.show {
        display: block;
        -webkit-animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
                animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .dropdown-item {
        padding: 10px 15px;
        font-size: 15px;
        color: #4a5568;
    }

    @-webkit-keyframes slideDown {
        from {
            opacity: 0;
            -webkit-transform: translateY(-15px);
                    transform: translateY(-15px);
        }
        to {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            -webkit-transform: translateY(-15px);
                    transform: translateY(-15px);
        }
        to {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    .nav-link:before {
        display: none;
    }

    .nav-link:hover {
        color: #0B082B !important;
        -webkit-transform: translateX(5px);
            -ms-transform: translateX(5px);
                transform: translateX(5px);
    }

    /* Overlay when menu is open */
    .navbar-collapse-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 999;
        opacity: 0;
        -webkit-backdrop-filter: blur(3px);
                backdrop-filter: blur(3px);
        -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-collapse-overlay.show {
        display: block;
        opacity: 1;
    }

    /* Close button in mobile menu */
    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 28px;
        color: #2c3e50;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        border-radius: 50%;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .mobile-close-btn:hover {
        background-color: #f8f9fa;
    }

    /* Mobile menu header */
    .mobile-menu-header {
        padding-bottom: 20px;
        margin-bottom: 15px;
        border-bottom: 1px solid #edf2f7;
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
                transform: rotate(-180deg);
    }
}

.about-us-container{
   margin-top: 70px;
   margin-bottom: 70px;
}
.page-title h6{
    text-align: center;
    font-size: 13px;
    color: #818896;
    font-family: myfont;
}
.page-title h2{
    text-align: center;
    font-family: myfont;
    font-weight: 500;
    letter-spacing: 5px;
    font-size: 42px;
    color: #0B082B;
}

@media (max-width:786px){
    .page-title h2{

        font-size: 30px;
    }
}

.about-us-container p{
    text-align: center;
    max-width: 800px;
    line-height: 30px;
    letter-spacing: 1px;
    margin: 20px 0px;
    color: #0B082B;
    font-family: raleway;
}

.about-us-container a{
    color: #0B082B;
    text-decoration: none;
    letter-spacing: 0px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;

}
.about-us-container a:hover {
    /* text-decoration:; */
     letter-spacing: 0.6px;
}

.why-container p{
    text-align: justify;
    max-width: 700px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #0B082B;
    margin: 30px 0px;
    font-family: raleway;
}


/* gsap slider of apexian */
.slider-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.card {
    min-width: 300px;
    border-radius: 15px;
    -webkit-box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
 
}

.card.active {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

@media (max-width: 768px) {
    .card {
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .card {
        min-width: 200px;
    }
}

.card-img-top {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.navigation-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
    display: none;
    pointer-events: none;
}

.nav-button {
    position: absolute;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    pointer-events: auto;
    opacity: 0.7;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.nav-button:hover {
    opacity: 1;
}

.prev-button {
    left: 1rem;
}

.next-button {
    right: 1rem;
}


/* fullimage showing modal css */
.thumbnail {
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
.thumbnail:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    visibility: hidden;
}
.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* school tour video */
.video-container {
    position: relative;
    width: 100%;
    height: 560px;
    margin: 50px auto;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
  }
.video-container img{
    border-radius: 20px;
}
  .thumbnail {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    -o-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .play-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #333;
    margin-left: 5px;
  }

  .video-container.playing .play-icon {
    opacity: 0;
    visibility: hidden;
  }

  video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0;
  }

  /* gsap main slider */
  .custom-slider__wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}
@media (max-width:786px){
    .custom-slider__wrapper {
        height: 83vh;
        overflow: hidden;
    }
}
@media (max-width:990px){
    .custom-slider__wrapper {
        height: 89vh;
        overflow: hidden;
    }
}


.custom-slider__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.custom-slider__slide::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: -webkit-gradient(
        linear,
        left bottom, left top,
        from(rgba(255, 255, 255, 0.9)),
        color-stop(20%, rgba(255, 255, 255, 0.808)),
        color-stop(40%, rgba(255, 255, 255, 0.662)),
        color-stop(60%, rgba(255, 255, 255, 0.683)),
        to(rgba(255, 255, 255, 0))
    );
    background: -o-linear-gradient(
        bottom,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.808) 20%,
        rgba(255, 255, 255, 0.662) 40%,
        rgba(255, 255, 255, 0.683) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.808) 20%,
        rgba(255, 255, 255, 0.662) 40%,
        rgba(255, 255, 255, 0.683) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.custom-slider__content {
    text-align: center;
    color: #000;
    padding: 20px;
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
    position: relative;
    z-index: 2;
}

.custom-slider__heading {
    font-family: myfont;
    font-size: 4vw;
    max-width: 800px;
    font-weight: 700;
    color: #0B082B;
    margin-bottom: 1rem;
}

.custom-slider__description {
    font-size: 1.5rem;
    max-width: 800px;
    font-family: myfont;
    margin: 0 auto;
    color: #0B082B;
}

@media (max-width: 768px) {
    .custom-slider__heading {
        font-size: 2rem;
    }

    .custom-slider__description {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .custom-slider__heading {
        font-size: 1.5rem;
    }

    .custom-slider__description {
        font-size: 1rem;
    }
}

/* stats csrd */
.stats-section {
    padding: 60px 20px 120px;
    height: 370px;
    color: white;
    text-align: center;
    position: relative;
    margin-bottom: 120px;
}

.stats-heading {
    margin-bottom: 230px;
}

.stats-subheading {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.stats-cards-container {
    position: absolute;
    left: 0;
    right: 0;

    bottom: -130px;
}

.stat-card {
    background:#0B082B;
    border-radius: 10px;
    padding: 40px;
    margin: 10px;
    color: #ffffff;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: #fefefe;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .stats-section {
        padding-bottom: 40px;
        margin-bottom: 0;
        height: auto;
    }
    
    .stats-cards-container {
        position: relative;
        bottom: auto;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-card {
        margin: 10px 0;
    }
}

/* footer css */
.footer {
    background-image: url('../images/bg_slider-4.png');
    background-size: cover;
    background-position: center;
    color:#0B082B;
    /* font-family: myfont; */
    padding: 50px 0;
    position: relative;
}
.footer h5{
    font-weight: 600;
    margin-bottom: 15px;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f6f5ff5d;
}

.footer-content {
    font-family: Manrope;
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

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

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

.quick-links a {
    color:#0B082B;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.quick-links a:hover {
    color:#0e0387;
}

.contact-info i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .footer-section {
        margin-bottom: 30px;
    }
}


/* admiisioon button */
.admission-btn {
    position: fixed;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: -webkit-gradient(linear, left bottom, left top, from(#fff1eb), to(#ace0f9));
    background-image: -o-linear-gradient(bottom, #fff1eb 0%, #ace0f9 100%);
    background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
    color: rgb(26, 26, 26);
    padding: 15px 10px;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    -webkit-box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
            box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    -webkit-transition:  0.3s ease !important;
    -o-transition:  0.3s ease !important;
    transition:  0.3s ease !important;
    font-family: myfont;
}

.admission-btn:hover {
   background-image: -webkit-gradient(linear, left bottom, left top, from(#fff1eb), to(#ace0f9));
   background-image: -o-linear-gradient(bottom, #fff1eb 0%, #ace0f9 100%);
   background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
    color: rgb(0, 0, 0);
    font-weight: 700;
    padding-right: 15px;
    -webkit-transition: 0.3s ease !important;
    -o-transition: 0.3s ease !important;
    transition: 0.3s ease !important;
}

.admission-btn span {
    display: block;
    text-align: center;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .admission-btn {
        padding: 10px 8px;
        font-size: 14px;
    }
}


/* event section css */
.event-card {
    background-color: #fff;
    padding: 20px;
    color: #0B082B;
    height: 100%;
    -webkit-transition:  0.5s ease;
    -o-transition:  0.5s ease;
    transition:  0.5s ease;
    position: relative;

}

.event-card:hover{
    background-color: #0B082B;
    color: white;

}

.event-card.event-card.purple:hover{
    background-color: #fff;
    color: #0B082B;
}
.event-card.purple {
    background-color: #0B082B;
    color: white;
}

.event-card:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
}

.event-date {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    opacity: 0.9;
}

.event-title {
    font-size: 1.0rem;
    font-family: myfont;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.event-time {
    font-size: 0.9rem;
    opacity: 0.8;
}

.event-location {
    font-size: 0.9rem;
    opacity: 0.8;
}

.arrow-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
}

.arrow-icon::after {
    content: "→";
    font-size: 1.2rem;
}

/* director msg */
.message-container {
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 90%;
}

.profile-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 170px;
    height: 170px;
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
    border: 3px solid #0B082B;
}

.name-title {
    background-color: #0B082B;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 4px 4px 0;
    margin-left: -3px;
}

.quote-marks {
    color:#0B082B;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0.5rem;
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color:#0B082B;
}
.msg-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
@media(max-width:990px){
    .msg-container{
        flex-direction: column;
    }
}
@media (max-width: 576px) {
    .profile-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
    }
    .msg-container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .profile-image {
        margin-bottom: 1rem;
    }
    
    .name-title {
        margin-left: 0;
        border-radius: 4px;
    }
    
    .message-container {
        padding: 1rem;
        margin: 1rem;
    }
}


/* testimonial background image container */
.bg-container {
    position: relative;
    background: url('../images/cl4.jpg') no-repeat center center/cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: white;
}
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0c092ca2; /* Dark overlay effect */
}
.content {
    position: relative;
    z-index: 2;
    text-align: center;
}


/* testimonial slider */
.testimonial-container {
    overflow: hidden;
    margin: auto;
}

.testimonial-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.quote-container {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 1rem;
}

.quote-bubble {
    background: #ffffffd3;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    margin-bottom: 30px;
}

.quote-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 25px;
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.quote-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.author-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    margin-top: 30px;
}

.author-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-image:url('https://th.bing.com/th/id/OIP.Ylhtem14WGHy5v7UiTuHoAHaGH?rs=1&pid=ImgDetMain') ;
    background-position: center;
    background-size: cover;
}

.author-info {
    font-family: myfont;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.author-name {
    color: #e5e5e5;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
}

.author-website {
    color: #808080;
    font-size: 0.9rem;
    text-decoration: none;
}

@media (min-width: 992px) {
    .quote-container {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
    }
}


/* about us page css */
.page-title-container {
    position: relative;
    padding: 40px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.page-title-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color:#0B082B;
    margin-bottom: 10px;
}

.title-image-container {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
    overflow: hidden;
}

.title-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: opacity(0.7);
}

.smoky-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        #f8f9fa 0%,
        rgba(248, 249, 250, 0.758) 20%,
        rgba(248, 249, 250, 0.505) 40%,
        rgba(248, 249, 250, 0.4) 60%,
        rgba(248, 249, 250, 0.2) 80%,
        rgba(248, 249, 250, 0) 100%
    );
}


.hero-section {
    position: relative;
    min-height: 700px;
    overflow: hidden;

    display: flex;
    align-items: center;
}

.content-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
}

.text-overlay {
    position: relative;
    max-width: 550px;
    background: white;
    padding: 1.6rem;
    margin-left: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    margin-right: -50px; /* Creates overlap with image */
}

.highlight {
    color: #28a745;
}

.image-section {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .text-overlay {
        margin: 1rem auto;
        max-width: calc(100% - 2rem);
        margin-right: auto;
    }

    .image-section {
        width: 100%;
        margin-top: -30px;
    }
}


/* academic page */

.download-button {
    position: relative;
    border-width: 0;
    color: white;
    font-size: 15px;
    font-weight: 600;
    background-color: #0B082B;
    cursor: pointer;
    border-radius: 4px;
    z-index: 1;
  }
  
  .download-button .docs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 40px;
    padding: 0 10px;
    border-radius: 4px;
    z-index: 1;
    background-color: #0B082B;
    border: solid 1px #e8e8e82d;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  .download-button:hover {
    box-shadow:
      rgba(0, 0, 0, 0.25) 0px 54px 55px,
      rgba(0, 0, 0, 0.12) 0px -12px 30px,
      rgba(0, 0, 0, 0.12) 0px 4px 6px,
      rgba(0, 0, 0, 0.17) 0px 12px 13px,
      rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }
  
  .download {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    margin: 0 auto;
    z-index: -1;
    border-radius: 4px;
    transform: translateY(0%);
    background-color :#0B082B;
    border: solid 1px #01e0572d;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  .download-button:hover .download {
    transform: translateY(100%);
  }
  
  .download svg polyline,
  .download svg line {
    animation: docs 1s infinite;
  }
  
  @keyframes docs {
    0% {
      transform: translateY(0%);
    }
  
    50% {
      transform: translateY(-15%);
    }
  
    100% {
      transform: translateY(0%);
    }
  }
  

  /* contact us page  */
  .contact-container {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.map-container {
    height: 100%;
    min-height: 400px;
    background: #f8f9fa;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.form-container {
    padding: 2rem;
    background: white;
}

.contact-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
}


.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

.btn-send {
    background-color :#0B082B;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background-color: #222038;
    color: rgb(243, 255, 255);
    transform: translateY(-2px);
}

.linkedin-stats-wrapper {
    margin-bottom: 10px;
    border-radius: 8px;
    height: 230px;
    background: white;
    transition: background-color 0.2s ease;
}

.linkedin-stats-wrapper:hover {
    background: #f8f9fae2;
}

.linkedin-stats-number {
    font-size: 20px !important;
    font-weight: 600;
    color: #000;
}

.linkedin-stats-label {
    font-size: 14px;
    font-family:raleway !important;
    color:#0B082B;
}

.linkedin-brand-icon {
    width: 24px;
    height: 24px;
    background:#0B082B;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 12px;
}

/* glimpsis page css */
.swiper-container {
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.swiper-button-next, .swiper-button-prev {
    color: #0d6efd;
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}


/* gsap sliders left to right to left */
    

/* marquee img slider css */
.carousel-container {
    background-image: url('images/home_04_background_dots.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.media-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.media-item {
    min-width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.media-item img, 
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 768px) {
    .media-item {
        min-width: 250px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .media-item {
        min-width: 200px;
        height: 120px;
    }
}

/* right to left gsap slidercss */
.slider-outer {
    /* background-image: url('images/home_04_background_dots.png'); */
    background-size: cover;
    background-position: center;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-inner {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.slide-element {
    min-width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.slide-element img, 
.slide-element video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .slide-element {
        min-width: 250px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .slide-element {
        min-width: 200px;
        height: 120px;
    }
}


.glimpsis-img img{
    border: 6px solid #0B082B;
    transition: 0.6s ease;
}
.glimpsis-img{
    transition: 0.6s ease;
}
.glimpsis-img img:hover{
    transform: scale(1.09);
}

/* infra page css */
.facility-tabs {
    border-bottom: 2px solid #0B082B;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
}

.facility-tabs::-webkit-scrollbar {
    display: none;
}

.facility-tab-item {
    list-style: none;
    flex: 0 0 auto;
}

.facility-tab-link {
    color: #333;
    background-color: #f8f9fa;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 12px 25px;
    margin-right: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.facility-tab-link:hover {
    background-color: #e9ecef;
    border-color: transparent;
    text-decoration: none;
    color: #333;
}

.facility-tab-link.active-tab {
    background-color: #0B082B !important;
    color: white !important;
    border: none;
}

.facility-content-wrapper {
    padding: 20px;
    background-color: #ffffff00;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.facility-tab-content {
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease-in-out;
}
.facility-tab-content img{
    border: 4px solid #0B082B ;
    margin-bottom: 10px;
}

.facility-tab-content.active-content {
    opacity: 1;
    display: block;
}

@media (max-width: 768px) {
    .facility-tabs {
        display: flex;
        flex-direction: row;
        border-bottom: 2px solid #0B082B;
        padding-bottom: 5px;
    }

    .facility-tab-link {
        min-width: max-content;
        margin-bottom: 0;
        font-size: 14px;
        padding: 8px 16px;
    }
}


