body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    /*text-align: justify;*/
    font-size: 15px;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

header {
    background-color: #fff;
    padding: 0;
    margin: 0;
}

/* Social Media */
.social-media ul {
    padding: 0;
    margin: 0;
}

    .social-media ul li {
        display: inline-block;
        margin-right: 2px;
    }

        .social-media ul li a img {
            width: 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .social-media ul li a:hover img {
            transform: scale(1.2);
        }

/* Header Buttons Wrapper */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

    /* Common Button Styles */
    .header-buttons .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #1b305c;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        padding: 5px 8px;
        border-radius: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        border-color: #fff;
    }

        .header-buttons .btn i {
            font-size: 15px;
        }

        .header-buttons .btn:hover {
            transform: translateY(-2px);
        }


/* Responsive (mobile) */
@media (max-width: 768px) {
    .header-buttons {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 8px;
    }

        .header-buttons .btn {
            font-size: 13px;
            padding: 6px 12px;
        }

    .social-icons ul li {
        margin-right: 5px;
    }
}


.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;  
    overflow: hidden;
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    z-index: 1;
}


.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
        z-index: 2;
    }

     
    .slide img,
    .slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;  
        background-color: #000; 
    }

/* Dots navigation */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .dot.active {
        background-color: #ffffff;
    }
/* Tablets */
@media (max-width: 992px) {
    .slider {
        height: 60vh;
    }
    
    .hero-slider {
        height: 60vh;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .slider {
        height: 45vh;
    }

    .hero-slider {
        height: 45vh;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .slider {
        height: 35vh;
    }

    .hero-slider {
        height: 35vh;
    }
}
 

/* Navigation Buttons */
/*.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

    .prev:hover,
    .next:hover {
        background: rgba(255, 255, 255, 0.8);
        color: #000;
    }

.prev {
    left: 25px;
}

.next {
    right: 25px;
}*/

.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(180deg, #1b305c 0%, #16304f 100%);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(27, 48, 92, 0.18);
}

    .btn-view-all:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(27, 48, 92, 0.25);
        color: #ffffff;
        text-decoration: none;
    }

    .btn-view-all:focus {
        outline: none;
    }

    .btn-view-all i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .btn-view-all:hover i {
        transform: translateX(5px);
    }

/* Responsive tweak */
@media (max-width: 480px) {
    .btn-view-all {
        padding: 10px 16px;
        font-size: 13px;
    }

        .btn-view-all i {
            font-size: 14px;
        }

    

    .col.contact-column {
        margin-top: 15px;
    }

    .section-title__title {
        font-size: 22px !important;
    }

    .counter-sec h2 {
        font-size: 25px !important;
    }

    .video-item {
        height: auto !important;
    }
}

/* Footer */
.site-footer {
    background: #1b2f5b;
    color: #fff;
    padding: 70px 0px 30px 0px;
}

/*.footer-column {
    padding-bottom: 30px;
}*/

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-column ul li {
        margin-bottom: 8px;
        position: relative;
    }

        .footer-column ul li a {
            color: #cfdce6;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            padding-left: 18px;
            display: inline-block;
        }

            .footer-column ul li a::before {
                content: "\f105";
                font-family: FontAwesome;
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                color: #cfdce6;
                font-size: 12px;
                transition: color 0.3s;
            }

            .footer-column ul li a:hover {
                color: #fff;
            }

                .footer-column ul li a:hover::before {
                    color: #fff;
                }


.contact-column p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.social-icons a:hover {
    color: #f39c12;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #1a3b56;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 768px) {
    /* Ensure parent flex container stacks columns */
    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
    }

    /* Each column takes full width */
    .footer-column {
        width: 100% !important;
        max-width: 100%;
        flex: none !important;
        border-bottom: 1px solid #eee;
        padding: 15px;
    }

        .footer-column h4 {
            font-size: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            margin: 0;
        }

    .contact-column h4 {
        font-size: 15px;
    }

    .footer-column .toggle-symbol {
        font-weight: bold;
    }

    .footer-column ul {
        display: none;
        margin-top: 10px;
        padding-left: 0;
        list-style: none;
    }

    .footer-column.active ul {
        display: block;
    }

    .footer-column ul li {
        padding: 5px 0;
    }
}


.terms-policy ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

    .terms-policy ul li a {
        font-size: 14px;
        color: white;
        text-decoration: none;
    }

        .terms-policy ul li a:hover {
            text-decoration: underline;
        }


.social-icons ul {
    padding: 0;
    margin: 0;
}

    .social-icons ul li {
        display: inline-block;
        margin: 0;
        transition: transform 0.3s ease;
    }

        .social-icons ul li a img {
            display: block;
            transition: transform 0.3s ease;
        }

        .social-icons ul li a:hover img {
            transform: scale(1.2);
        }


.awards-achievements {
    background-color: #1b305c;
    color: #fff;
    position: relative;
    margin-top: 30px;
}

.award-list {
    padding: 30px;
}

.award-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-title {
    font-size: 55px;
    font-weight: bold;
    color: #fff;
}

    .award-title span {
        display: block;
    }

.award-box {
    padding: 0;
    height: 100%;
}

    .award-box img {
        width: 120px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .award-box h5 {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .award-box ul {
        list-style: none;
        padding: 0px;
        text-align: left;
    }

        .award-box ul li {
            font-size: 0.95rem;
            line-height: 1.5;
        }

    .award-box p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
    }

@media (max-width: 992px) {
    .award-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .award-title {
        font-size: 1.5rem;
    }

    .award-box h5 {
        font-size: 1rem;
    }

    .award-box img {
        width: 80px;
        height: 80px;
    }
}


.counter-sec {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 50px 0;
    margin: 50px 0;
    background-image: url(../images/why-choose-bg.jpg);
    z-index: 1;
    color: #fff;
}

    /* Black Overlay */
    .counter-sec::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
    }

    .counter-sec * {
        position: relative;
        z-index: 2;
    }


.counter-box {
    text-align: center;
    border-right: 2px solid #fff;
}

.col-md-3:last-child .counter-box {
    border-right: none;
}
.counter-txt {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    display: block;
    margin: 0;
    padding: 0;
}
.counter-value {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    display: block;
    margin: 0;
    padding: 0;
}

.counter-box h6 {
    color: #fff;
    font-weight: normal;
    font-size: 15px;
    text-transform: uppercase;
}

.counter-box .icon i {
    font-size: 30px;
    color: #fff;
}

.counter-sec h2 {
    padding-bottom: 70px;
    color: #fff;
    font-size: 37px;
    text-align: center;
    text-transform: uppercase;
}

    .counter-sec h2 span {
        color: #fff;
        font-size: 14px;
        display: block;
    }

.campus-facilities {
    padding: 50px 0;
    margin-top: 30px;
    background: #1b305c;
}
    /* Common style */
    .campus-facilities figure {
        position: relative;
        overflow: hidden;
        background: #3085a3;
        text-align: center;
        margin: 0;
        cursor: pointer;
    }

        .campus-facilities figure img {
            position: relative;
            display: block;
            min-height: 100%;
            max-width: 100%;
            opacity: 0.8;
        }

        .campus-facilities figure figcaption {
            padding: 2em;
            color: #fff;
            font-size: 1.25em;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

            .campus-facilities figure figcaption::before,
            .campus-facilities figure figcaption::after {
                pointer-events: none;
            }

            .campus-facilities figure figcaption,
            .campus-facilities figure figcaption > a {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

/*---------------*/
/***** Oscar *****/
/*---------------*/

figure.effect-oscar {
    background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
    background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%);
}

    figure.effect-oscar img {
        opacity: 0.9;
        -webkit-transition: opacity 0.35s;
        transition: opacity 0.35s;
    }

    figure.effect-oscar figcaption {
        padding: 2em;
        background-color: rgba(58,52,42,0.5);
        -webkit-transition: background-color 0.35s;
        transition: background-color 0.35s;
    }

        figure.effect-oscar figcaption::before {
            position: absolute;
            top: 30px;
            right: 30px;
            bottom: 30px;
            left: 30px;
            /*border: 1px solid #fff;*/
            content: '';
        }

    figure.effect-oscar h2 {
        font-size: 22px;
        font-weight: bold;
        margin: 15% 0 15px 0;
        -webkit-transition: -webkit-transform 0.35s;
        transition: transform 0.35s;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    figure.effect-oscar figcaption::before,
    figure.effect-oscar p {
        opacity: 0;
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s, transform 0.35s;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    figure.effect-oscar:hover h2 {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    figure.effect-oscar:hover figcaption::before,
    figure.effect-oscar:hover p {
        text-align: center;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    figure.effect-oscar:hover figcaption {
        background-color: rgba(58,52,42,0);
    }

    figure.effect-oscar:hover img {
        opacity: 0.4;
    }

.news-events {
    padding: 30px 0;
    margin: 0;
}

.single-news-card {
    margin-bottom: 30px;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .08);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .08)
}

    .single-news-card .news-img img {
        -webkit-transition: .5s;
        transition: .5s
    }

    .single-news-card .news-content .list2 {
        margin-bottom: 15px
    }

        .single-news-card .news-content .list2 ul {
            padding-left: 0;
            margin-bottom: 0
        }

            .single-news-card .news-content .list2 ul li {
                display: inline-block;
                margin-right: 15px;
                font-size: 14px;
            }

.read-more-btn {
    font-size: 15px;
    color: #666
}

    .read-more-btn .fa {
        position: relative;
        top: 0;
        padding-left: 7px;
    }

.single-news-card .news-content .list2 ul li i {
    padding-right: 7px;
    color: #1b305c;
}

.single-news-card .news-content .list2 ul li a {
    color: #555
}

.single-news-card .news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
    -webkit-transition: .5s;
    transition: .5s
}

.single-news-card:hover .news-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.single-news-card:hover .news-content h3 {
    color: #1b305c;
}

.single-news-card.style2 .news-content,
.single-news-card.style3 {
    background-color: #fff;
    border: 1px solid #eee;
}

.single-news-card .news-img {
    overflow: hidden;
}

/*.news-img {
    width: 100%;
    max-width: 300px;  
}*/

.news-img a {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.news-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    position: relative;
    display: block;
    margin-bottom: 30px;
    z-index: 1;
}

.section-title__tagline-shape {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: -4px;
    right: -6px;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    font-style: italic;
    color: #333;
}

.section-title__title {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    padding: 5px;
    color: #fff;
    background: #1b305c;
}

    .section-title-two__tagline,
    .section-title__title span {
        color: #ff6600;
        font-style: italic;
        position: relative;
    }

    .section-title__title span {
        display: inline-block;
        z-index: 1;
    }

        .section-title__title span img {
            position: absolute;
            bottom: -10px;
            right: 6px;
            height: 18px;
            width: 157px;
        }

/*.video-item {
    position: relative;
    text-align: center;
    cursor: pointer;
}*/
.take-tour {
    padding: 50px 0;
    margin: 0;
}

.video-item {
    position: relative;
    display: block;
    background-color: #FCFCFC;
    border: 1px solid #d1e3fb;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 15px 15px 15px;
    cursor: pointer;
}

.video-title {
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    text-align: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(253, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
}

    .play-button:hover {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 15px rgba(253,0,0,0.6);
    }

    .play-button::before {
        content: "";
        border-style: solid;
        border-width: 10px 0 10px 18px;
        border-color: transparent transparent transparent white;
        display: inline-block;
        margin-left: 3px;
    }

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
}

.testimonials {
    padding: 50px 0;
    margin: 0;
}

.btn-back-to-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 15px;
    border-radius: 0;
    right: 15px;
    opacity: 1;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    -webkit-transition: all .4s;
    background-color: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 25px;
    border-radius: 2px;
}

    .btn-back-to-top:hover {
        background: #404040;
        color: #fff
    }


.btn-whatsapp-pulse {
    background: #25d366;
    color: #fff !important;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    z-index: 999;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 120px;
    right: 20px;
    animation-play-state: paused;
}

    .btn-whatsapp-pulse-border::before {
        content: "";
        position: absolute;
        border-radius: 50%;
        padding: 25px;
        border: 5px solid #25d366;
        opacity: 0.75;
        animation-name: pulse-border;
        animation-duration: 1.5s;
        animation-timing-function: ease-out;
        animation-iteration-count: infinite;
    }

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* ============sidebar-contact========== */

.toggle {
    position: absolute;
    top: 25%;
    left: -78px;
    transform: rotate(-90deg);
    padding: 5px 15px;
    line-height: 30px;
    border-radius: 8px 8px 0px 0px;
    cursor: pointer;
}

    .toggle .fa {
        color: #fff;
        padding-left: 5px;
    }

    .toggle:before {
        content: 'Enquire Now';
        font-size: 15px;
        color: #fff;
        font-weight: bold;
    }

.sidebar-contact {
    position: fixed;
    top: 60%;
    right: -550px;
    transform: translateY(-70%);
    width: 550px;
    height: auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    z-index: 999;
    transition: all 0.3s ease;
}

    .sidebar-contact h6 {
        margin: 0 auto;
        padding: 10px;
        font-size: 15px;
        color: #fff;
        font-weight: bold;
        border-bottom: none;
        background: #256f69;
        position: absolute;
        top: -15px;
        text-align: center;
        left: 0;
        right: 0;
        width: 60%;
        border-radius: 15px;
        box-shadow: 0 0 10px #cccccc;
    }

.toggle {
    background-color: #1b305c;
    border-color: #fff;
    box-shadow: 0 0 10px #cccccc;
}

.sidebar-contact:hover,
.sidebar-contact.active {
    right: 0;
}

.toggle {
    cursor: pointer;
}

a.toggle.simple {
    position: inherit;
    background: transparent;
    border: none;
}

    a.toggle.simple:before {
        display: none;
    }

.sticky1 a {
    background: #df2a2a;
    position: fixed;
    right: -68px;
    bottom: 170px;
    -ms-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(270deg);
    padding: 7px 15px;
    text-align: center;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
    font-size: 15px;
    z-index: 999;
    border-radius: 8px 8px 0px 0px;
    box-shadow: 0 0 10px #cccccc;
}

.popup-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.btn-close-white {
    z-index: 2;
}

.confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

body.modal-open {
    padding-right: 0 !important;
    overflow-y: auto !important;
}

.modal {
    overflow-y: auto !important;
}

#celebrationModal .modal-dialog {
    max-width: 370px !important;
}

/* Breadcrumbh */

.breadcrumbh-sec {
    background: #1b305c;
}

    .breadcrumbh-sec ol.breadcrumb {
        margin: 0;
        background: none;
        padding: 10px 0;
    }

        .breadcrumbh-sec ol.breadcrumb li,
        .breadcrumbh-sec ol.breadcrumb li a {
            font-size: 13px;
        }

            .breadcrumbh-sec ol.breadcrumb li::before {
                color: #fff9e7;
            }

            .breadcrumbh-sec ol.breadcrumb li a {
                color: #fff9e7;
            }

            .breadcrumbh-sec ol.breadcrumb li.active {
                color: #c9c9c9;
            }

.heading {
    color: #1b305c;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 500 !important;
    position: relative;
    text-transform: uppercase;
}

    .heading:before {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 75px;
        height: 1px;
        background: #1b305c;
    }

/*#secondary-navigation {
    background: #1b305c;
    color: #fff;
}*/
#secondary-navigation {
    margin-bottom: 20px;
    background: #1b305c;
    position: sticky;
    overflow: auto;
    position: -webkit-sticky;
    top: 5%;
    color: #fff;
}
    
.tabs-tst .accordion-item {
    background: transparent !important;
    border: none;
    margin-bottom: 15px;
}

.accordion-button {
    font-weight: bold;
    background: #1b305c;
    color: #fff;
    border-radius: 0 !important;
}

    .accordion-button:not(.collapsed) {
        color: #ffffff !important;
        background-color: #1b305c !important;
    }

    .accordion-button::after {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        margin-left: auto;
        content: "";
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e %3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
        background-repeat: no-repeat;
        background-size: 1.25rem;
        transition: transform .2s ease-in-out;
    }


    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
        transform: rotate(-180deg);
    }

#accordionExample .accordion-button {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

    #accordionExample .accordion-button::after {
        background-image: var(--bs-accordion-btn-icon) !important;
    }

    #accordionExample .accordion-button:not(.collapsed)::after {
        background-image: var(--bs-accordion-btn-active-icon) !important;
        transform: rotate(-180deg);
    }


.accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.accordion-button:hover {
    color: #e29021;
}
.accordion-body {
    border: 1px solid #273e47;
}

.accordion-item {
    background: #1b305c !important;
}

#secondary-navigation .title {
    padding: 20px;
    border-top: 5px solid #1b305c;
    background: #fff;
}

#secondary-navigation h5 .icon-arrow-left {
    font-size: 16px;
    color: #fff;
    float: left;
    min-height: 22px;
}

#secondary-navigation h5 {
    margin: 0px;
    color: #000;
    font-weight: bold;
    position: relative;
}

    #secondary-navigation h5 a {
        color: #000;
        text-decoration: none;
    }

#secondary-navigation ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

    #secondary-navigation ul li {
        border-bottom: 1px solid #e5e5e5;
        position: relative;
    }

        #secondary-navigation ul li > a {
            display: block;
            padding: 12px 12px 12px 40px;
            font-size: 13px;
            font-weight: 500;
            color: #fff;
        }

        #secondary-navigation ul li.active > a, #secondary-navigation ul li:hover > a {
            color: #fff;
            background: #e29021;
        }

        #secondary-navigation ul li a .fa-angle-right, #secondary-navigation ul li a .fa-angle-down {
            margin-right: 8px;
            color: #fff;
            position: absolute;
            top: 15px;
            left: 20px;
            margin: 0px;
        }

        #secondary-navigation ul li.active a .fa-angle-right, #secondary-navigation ul li.active a .fa-angle-down, #secondary-navigation ul li:hover a .fa-angle-right {
            color: #fff;
        }

        #secondary-navigation ul li:last-child {
            border: none;
        }

.inner-page {
    padding: 30px 0;
    margin: 0;
}

.space {
    padding: 30px 0;
}

.boldclassesboldclasses {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding: 15px;
    position: relative;
}

    .boldclassesboldclasses:before {
        content: '';
        position: absolute;
        top: 10px;
        left: 0;
        width: 4px;
        height: 30px;
        background: #e29021;
    }

.images-carousel .awards-items {
    position: relative;
    overflow: hidden;
}

    .images-carousel .awards-items img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .images-carousel .awards-items:hover img {
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

.images-carousel .awards-items {
    margin: 5px;
}

    .images-carousel .awards-items:hover img {
        transform: scale(1.08);
        filter: brightness(1.1);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    }

.inners-bg {
    background: #f1f1f1;
    padding: 120px 0;
    margin: 0;
    text-align: center;
}

    .inners-bg h1 {
        color: #000;
        font-size: 35px;
        text-transform: uppercase;
        font-weight: bold;
    }

.video {
    height: 80vh;
    overflow: hidden;
    position: relative;
}

    .video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

ul.list li {
    padding: 5px 0;
}

.excellence-section {
    background: linear-gradient(to bottom right, #f7f9fc, #ffffff);
}

.excellence-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

    .excellence-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.excellence-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .excellence-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.excellence-card:hover .excellence-img img {
    transform: scale(1.1);
}

.excellence-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 27, 84, 0.7), rgba(0, 27, 84, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.excellence-card:hover .excellence-img::after {
    opacity: 1;
}

.excellence-content {
    padding: 1.5rem;
}

    .excellence-content h5 {
        font-weight: 700;
        color: #001b54;
        margin-bottom: 10px;
    }

    .excellence-content p {
        color: #555;
        font-size: 0.95rem;
    }


.container {
    width: 100% !important;
    max-width: 1500px !important;
}

.vgs-news-section {
    padding: 50px 0;
    background: #1b305c;
}

.vgs-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .vgs-card:hover {
        transform: translateY(-5px);
    }

    .vgs-card img {
        width: 100%;
        height: 270px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .vgs-card:hover img {
        transform: scale(1.05);
    }

/* Colored line below image */
.color-strip {
    height: 8px;
    width: 100%;
}

.vgs-card.purple .color-strip {
    background: #8c1d82;
}

.vgs-card.orange .color-strip {
    background: #f4b41a;
}

.vgs-card.teal .color-strip {
    background: #009688;
}

.vgs-card.pink .color-strip {
    background: #d94c8a;
}

.overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    color: #222;
    text-align: left;
    padding: 25px 20px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    transition: all 0.45s ease-in-out;
}

.vgs-card:hover .overlay {
    bottom: 0;
}

.overlay-content {
    width: 100%;
    transition: color 0.3s ease;
}

    .overlay-content h4 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.4;
        color: #000;
    }

    .overlay-content .meta {
        font-size: 13px;
        color: #555;
        font-weight: 500;
        margin-bottom: 0;
    }

.vgs-card.purple:hover .overlay {
    background: rgba(140, 29, 130, 0.90);
}

.vgs-card.orange:hover .overlay {
    background: rgba(244, 180, 26, 0.90);
}

.vgs-card.teal:hover .overlay {
    background: rgba(0, 150, 136, 0.90);
}

.vgs-card.pink:hover .overlay {
    background: rgba(217, 76, 138, 0.90);
}

.vgs-card.blue .color-strip {
    background: #5b2c83; 
}

.vgs-card.blue:hover .overlay {
    background: rgba(91, 44, 131, 0.9);
}

.vgs-card.blue:hover .overlay-content h4,
.vgs-card.blue:hover .overlay-content .meta {
    color: #fff;
}


.vgs-card:hover .overlay-content h4,
.vgs-card:hover .overlay-content .meta {
    color: #fff;
}

/* ==========gallery============ */

.demo-gallery {
    padding: 15px 0px;
}

    .demo-gallery h4 {
        font-size: 15px;
        font-weight: bold;
    }

    .demo-gallery span {
        display: block;
    }

    .demo-gallery > ul {
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        /*justify-content: space-between;*/
    }

        .demo-gallery > ul > li {
            list-style: none;
            width: 20%; 
            box-sizing: border-box;
        }

            .demo-gallery > ul > li a {
                border: 3px solid #fff;
                border-radius: 3px;
                display: block;
                overflow: hidden;
                position: relative;
                height: 250px;
            }

                .demo-gallery > ul > li a > img {
                    transition: transform 0.3s ease;
                    transform: scale3d(1, 1, 1);
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }

                .demo-gallery > ul > li a:hover > img {
                    transform: scale3d(1.1, 1.1, 1.1);
                }

                .demo-gallery > ul > li a .demo-gallery-poster {
                    background-color: rgba(0, 0, 0, .1);
                    position: absolute;
                    inset: 0;
                    transition: background-color 0.15s;
                }

                    .demo-gallery > ul > li a .demo-gallery-poster > img {
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        margin-left: -10px;
                        margin-top: -10px;
                        opacity: 0;
                        transition: opacity .3s;
                    }

                .demo-gallery > ul > li a:hover .demo-gallery-poster {
                    background-color: rgba(0, 0, 0, .5);
                }

                    .demo-gallery > ul > li a:hover .demo-gallery-poster > img {
                        opacity: 1;
                    }

 
@media (max-width: 992px) {
    .demo-gallery > ul > li {
        width: 32%;  
    }
}

@media (max-width: 768px) {
    .demo-gallery > ul > li {
        width: 48%;  
    }
}

@media (max-width: 480px) {
    .demo-gallery > ul > li {
        width: 100%;  
    }
}



.sport-card {
    background: #fff;
    transition: all 0.3s ease;
}

    .sport-card:hover {
        transform: translateY(-8px);
        background: #1b305c;
        color: #fff;
    }

        .sport-card:hover .icon i {
            color: #fff !important;
        }

    .sport-card .icon i {
        transition: color 0.3s ease;
    }

.element-card {
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

    .element-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    }

    .element-card .card-body {
        padding: 2rem;
    }

.element-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vayu {
    background: linear-gradient(to right, #a0e9ff, #00bfff);
    color: #fff;
}

.jal {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: #fff;
}

.dhara {
    background: linear-gradient(to right, #a8e063, #56ab2f);
    color: #fff;
}

.agni {
    background: linear-gradient(to right, #ff6a00, #ff0000);
    color: #fff;
}

@media (max-width: 768px) {
    .element-card .card-body {
        padding: 1.5rem;
    }
}

a.download-pros, a.download-cert {
    width: 50%;
    float: left;
    padding: 22px 20px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    min-height: 110px;
    line-height: 20px;
}

a.download-pros {
    background: #1b305c;
    border-right: 1px #fff solid;
}

a.download-cert {
    background: #eba601;
    border-left: 1px #fff solid;
}

    a.download-pros .ico-block,
    a.download-cert .ico-block {
        display: block;
        padding-right: 15px;
        float: left;
    }

    a.download-pros .txt-block, a.download-cert .txt-block {
        display: block;
        padding-top: 4px;
        float: left;
        text-transform: uppercase;
        max-width: 129px;
    }

    a.download-pros .sm-txt, a.download-cert .sm-txt {
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        line-height: 18px;
        opacity: 0.7;
    }

    a.download-pros:hover,
    a.download-cert:hover {
        background-color: #17a43b;
    }


.equal-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.logos-equal {
    align-items: center;
}

.spaced-list li {
    margin-bottom: 5px;
}

.school-video {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    margin-bottom: 30px;
}

    .school-video:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .school-video iframe {
        border: none;
        border-radius: 15px 15px 0 0;
    }

.schTitle {
    background: linear-gradient(135deg, #1b305c, #1b305c);
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    border-radius: 0 0 15px 15px;
}

    .schTitle h4 {
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0;
        text-transform: capitalize;
        letter-spacing: 0.3px;
    }

@media (max-width: 767px) {
    .col-md-3 {
        margin-bottom: 20px;
    }
}


/* Modern Pagination */
.pagination-container {
    text-align: center;
    margin-top: 30px;
}

.pagination1 {
    display: inline-flex;
    list-style: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

    .pagination1 li {
        margin: 0 5px;
    }

    .pagination1 a {
        display: block;
        padding: 10px 18px;
        border-radius: 40px;
        font-weight: 600;
        text-decoration: none;
        color: #007bff;
        background: transparent;
        transition: all 0.3s ease;
    }

        .pagination1 a:hover {
            background: linear-gradient(135deg, #007bff, #00b4d8);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
        }

    .pagination1 .active a {
        background: linear-gradient(135deg, #0056b3, #007bff);
        color: #fff;
        box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
    }

    .pagination1 i {
        font-size: 16px;
    }

@media (max-width: 768px) {
    .pagination1 {
        padding: 6px 12px;
        border-radius: 30px;
        gap: 4px;
    }

        .pagination1 a {
            padding: 8px 14px;
            font-size: 14px;
        }
}

@media (max-width: 480px) {
    .pagination1 {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 5px 10px;
        border-radius: 20px;
    }

        .pagination1 a {
            padding: 6px 12px;
            font-size: 13px;
            border-radius: 30px;
        }
}

.inner-page p{
    text-align:justify;
}

.Mobilemenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #e29021;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

    .Mobilemenu ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        justify-content: space-around;
        width: 100%;
    }

        .Mobilemenu ul li {
            flex: 1;
            text-align: center;
            padding: 10px 0;
            border-right: 1px solid #fff;
        }

            .Mobilemenu ul li:last-child {
                border-right: none;
            }

            .Mobilemenu ul li a {
                color: #fff;
                font-size: 13px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-decoration: none;
            }

                .Mobilemenu ul li a img {
                    margin-bottom: 5px;
                    max-width: 30px;
                }

 
@media (max-width:768px) {
    .Mobilemenu {
        display: flex;
    }
}

 
@media (min-width: 768px) {
    .Mobilemenu {
        display: none;
    }
    
}

thead.table-dark,
thead.table-dark th,
.table.table-dark thead,
.table.table-dark thead th {
    background-color: #1b305c !important;
    color: #ffffff !important;
}

 
.inners-slider {
    width: 100%;
    height: 70vh;  
    overflow: hidden;
    position: relative;
}

    .inners-slider .inner-pic {
        height: 100%;
    }

        .inners-slider .inner-pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;  
            background-color: #000;  
        }


