a {
    color: #000;
}

.same-space {
    padding: 90px 0px;
}

.btn {
    font-size: 14px;
    color: #fff;
    background: #7f541c;
}


.dropdown-submenu {
    position: relative;
}

/* hidden by default */
.dropdown-submenu .dropdown-menu {
    display: none;
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
}

/* show when active */
.dropdown-submenu.open>.dropdown-menu {
    display: block;
}

/* desktop hover */
@media (min-width: 992px) {
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    font-family: 'Poppins', sans-serif;
}

.slider-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.youtube-thumb {
    position: relative;
    display: block;
}

.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #ff0000;
    z-index: 2;
    transition: 0.3s;
}

.youtube-icon i {
    border-radius: 8px;
    background-color: #fff;
}

.youtube-thumb:hover .youtube-icon {
    transform: translate(-50%, -50%) scale(1.15);
}

.management-card p {
    text-align: justify;
}
/* --------------------------------------top header css-------------------------------------------- */
#top-header {
    padding: 6px 0px;
    background: #c08e70;
}

#top-header .nav li {
    display: inline;
    margin-right: 5px;
}

#top-header .nav a {
    font-size: 14px;
}

/* #top-header .nav .fa-facebook {
    color: #214f94;
}

#top-header .nav .fa-instagram {
    color: #fd2cec;
}

#top-header .nav .fa-youtube {
    color: #f30808;
}

#top-header .nav .fa-whatsapp {
    color: #00ff15;
}

#top-header .nav .fa-twitter {
    color: #0fd0f1;
} */

#top-header .nav .fa-play {
    color: #fff;
    font-size: 20px;
}

/* --------------------------------------middle-header css-------------------------------------------- */
#middle-header {
    padding: 5px 0 5px;
}

#middle-header img {
    background-color: #c08e70;
    padding: 24px 7px 9px;
    border-radius: 0px 0px 55px 55px;
    width: 9%;
    top: 0;
    position: absolute;
    z-index: 9999;
}

#middle-header .content h3 {
    margin: 3px 0px 0px 30px;
    font-weight: bold;
    color: #0a1285;
    font-size: 38px;
}

#middle-header .content p {
    /*padding: 0px 65px; */
    margin-bottom: 0px;
    margin-left: 31px;
    color: #856848;
    font-weight: bold;
    font-size: 17px;
}

#middle-header .content .dropdown {
    position: relative;
    display: inline-block;
}

#middle-header .content .dropdown-btn {
    background: #1d9549;
    color: #fff;
    padding: 5px 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#middle-header .content .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1111;
}

#middle-header .content .dropdown-menu li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

#middle-header .content .dropdown-menu li a:hover {
    background: #f1f1f1;
}

#middle-header .content .dropdown:hover .dropdown-menu {
    display: block;
}


#middle-header a h6{
    background-color: #f2811f;
    color: #000;
    padding: 10px;
    border-radius: 8px;
    margin-left: 5%;
    margin-top: 4%;
    text-align: center;
}
#middle-header li a{
    font-size: 17px;
    
}

#middle-header li {
    background-color: #7f541c;
    padding: 5px 8px;
    border-radius: 5px;
    margin: 2px;
    text-align: center;
}

/* --------------------------------------view-news css-------------------------------------------- */
/* #view-news {
    border-top: 3px solid #fff;
    border-bottom: 3px solid #000;
    background-image: url('../img/back.webp');
} */

.subtitleprogram {
    background: linear-gradient(45deg, #7f541c, #7f541c);
    border-radius: 5px;
}

.news-slider {
    overflow: hidden;
    position: relative;
    /* background: #fff; */
    border-radius: 5px;
    padding: 8px;
}

.news-track {
    display: flex;
    gap: 40px;
    animation: scrollNews 20s linear infinite;
}

.news-item a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

.news-item a:hover {
    color: #ff6a00;
}

/* animation */
@keyframes scrollNews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* pause on hover */
.news-slider:hover .news-track {
    animation-play-state: paused;
}

/* --------------------------------------about-section css-------------------------------------------- */
.overlay-text h2 {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}
#about {
    background: #f1ddcd;
    /* background-image: url('../img/back.webp'); */
}

#about .about-contant {
    position: relative;
}
#about .about-contants p,
#about .about-contant p{
    text-align: justify;
}
#about .about-contant {
    border: 5px solid #215e29;
    background-color: #ededed;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #fff;
}

#about .about-contant .about-box {
    position: absolute;
    top: 8%;
    left: 2%;
    width: 80%;
}

#about .caption p{
    
    text-align: justify;
}
/*#about .team-box img {
    height: 200px;
}*/

/* --------------------------------------news-section css-------------------------------------------- */
#news {
    background: #f1ddcd;
    /* background-image: url('../img/back.webp'); */
}

.news-img-mainbox {
    position: relative;
    background: rgb(247, 226, 210, 0.2);
    border: 5px solid #f7dee3;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #000;
}

.news-img-box img {
    /* border: 5px solid #ff8100; */
    border-radius: 10px;
}

.news-img-box {
    padding: 20px 20px;
    background: #f7dee3;
}

.news-img-text-box .disticname {
    background: #7f1c32;
    position: relative;
    width: 110px;
    top: -10px;
    font-size: 10px;
    text-align: center;
    /* margin-top: -24px; */
    padding: 2px;
    color: #fff;
    left: 0%;
    border-radius: 20px;
}

.news-img-text-box h5 {
    padding: 4px 4px;
    font-size: 16px;
}

.news-img-text-box p {
    font-size: 13px;
}

.news-img-text-box .btn {
    font-size: 10px;
    padding: 3px 8px;
}

/* #news .news-img-box .news-img-text-box {
    position: absolute;
    top: 1%;
    left: 2%;
} */

.management-card {
    background: #eceaff;
    padding: 20px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-height: 280px;
}

.management-img {
    width: 150px !important;
    height: 150px;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    object-fit: cover;
    border-radius: 100px;
}

.management-content h5 {
    font-size: 18px;
    font-weight: 600;
}

.designation {
    color: #a8702f;
    font-weight: 600;
    margin-bottom: 10px;
}



/* --------------------------------------result-section css-------------------------------------------- */
#result-section {
    position: relative;
    background: #7f541c;
}

.result-title::before,
.result-title::after {
    content: "";
    width: 80px;
    height: 2px;
    background: #fff;
    display: inline-block;
    margin: 0 10px;
}
.classvrg p,
.district p {
    margin-top: 0;
    margin-bottom: 0px;
}
/* District */
.district {
    color: #fff;
    display: inline-block;
    font-weight: 600;
    margin-top: 0px;
    padding: 5px 15px;
    /*background: #f4a805;*/
    border-radius: 10px;
    margin-right: 0%;
}
.classvrg{
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 5px 15px;
   /* background: #f4a805;*/
    
}
/* Name */
.student-name {
    font-weight: 700;
    color: #fff;
    margin-top: 5px;
    text-align: center;
}

/* Percentage */
.percentage {
    color: #ecf12f;
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
}

/* Image */
.student-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #f4a805;
    overflow: hidden;
    margin: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.student-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width:768px) {
    .student-img {
        width: 110px;
        height: 110px;
        margin-top: 10px;
    }
}

#alumni .alumni-card {
    background: rgb(51 167 152 / 20%);
    padding: 10px 10px;
}

#alumni .alumni-card p {
    font-size:14px;
    margin-bottom:0px;
}

/* --------------------------------------gallery-section css-------------------------------------------- */
.works-box {
    background: #d8f5ef;
    padding: 10px 2px;
    border-radius: 0px 0px 10px 10px;
}

.works-mainbox {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    background: rgb(247, 226, 210, 0.2);
    border: 5px solid #dff1e9;
    border-radius: 10px;
    box-shadow: 0px 0px 2px 0px #000;
}

.works-mainbox:last-child {
    border-bottom: none;
}

.works-mainbox .views-row h5 {
    color: #05604c;
    font-weight: 600;
}

.views-row p {
    color: #555;
}

#gallery .gallery-box {
    margin-top: 10px;
}

#gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

#gallery .gallery-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: 0.4s;
    border-radius: 10px;
    border: 5px solid;
    padding: 5px;
}

/* Hover Zoom */
#gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
#gallery .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(127, 84, 28, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    border-radius: 10px;
}

#gallery .overlay i {
    color: #fff;
    font-size: 22px;
}

#gallery .gallery-item:hover .overlay {
    opacity: 1;
}

/* Mobile Responsive */
@media(max-width:768px) {
    #gallery .gallery-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px) {
    #gallery .gallery-box {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------counter-section css-------------------------------------------- */
#counter {
    background: #f1ddcd;
}

#counter .sevap .counter_box {
    background: #f0f1d0;
}

/* #counter .counter-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #7f541c;
    border: 5px solid #fff;
    background: rgb(181 149 113);
} */
.counter_box {
    padding: 15px 15px;
}

.counter-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    /* margin-bottom: 20px; */
    background: rgb(255 255 255);
    box-shadow: -10px 5px 10px 0px #706f6f;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f4a805;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
}

#counter .counter-box .number-box h5 {
    font-size: 30px;
}

#counter .counter-box p {
    color: #000;
}

#counter .counter-img {
    text-align: center;
    padding: 20px 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 3px 0px #7f541c;
    border: 5px solid #fff;
    background: rgb(181 149 113);
}




/* --------------------------------------team-section css-------------------------------------------- */


.team-title {
    font-weight: 700;
    color: #6b2d1a;
}

.team-title::before,
.team-title::after {
    content: "";
    width: 80px;
    height: 2px;
    background: #6b2d1a;
    display: inline-block;
    margin: 0 10px;
}

.team-sub {
    color: #a07b57;
    font-size: 18px;
}

.title-border {
    width: 80px;
    height: 3px;
    background: #caa27c;
    margin: 10px auto;
}

/* Team Card */
.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Image */
.team-img {
    position: relative;
    /*height: 280px;*/
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* .team-card {
    padding: 5px;
} */

.team-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 45, 26, 0.7);
    opacity: 0;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

/* Social Icons */
.social a {
    color: #fff;
    margin: 0 8px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social a:hover {
    background: #caa27c;
    border-color: #caa27c;
}

/* Info */
.team-info {
    padding: 20px 5px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #6b2d1a;
}


/* Carousel spacing */
.team-carousel .owl-item {
    padding: 10px;
}




/* --------------------------------------collapsed-section css-------------------------------------------- */
.collapsed-section {
    background: #f9f6f2;
    padding: 40px 0;
}

.subtitleprogram {
    background: #7f1c32;
    font-weight: 700;
    border-radius: 8px 8px 0px 0px;
}
.parbndkd .subtitleprogram {
    background: #1d1495;
}
.parbndkd .btn {
    background: #1d1495;
}

.earlyevent .subtitleprogram {
    background: #05604c;
}

.facility .subtitleprogram {
    background: #6c1c7f;
}
.facltf {
    background-color: #f2dcf7;
    margin: 0px auto;
    padding-bottom: 4%;
}
.sevap .subtitleprogram {
    background: #454602;
}
.skytv .subtitleprogram {
    background: #095381;
}
.skytv div#statsAccordion {
    background-color: #d8eaf5;
    padding-bottom: 10px;
}
.news-img-box .btn {
    font-size: 14px;
    color: #fff;
    background: #7f1c32;
}


.accordion-button {
    font-weight: 600;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #7f541c;
    color: #fff;
}

.accordion-item {
    border: none;
}

.accordion-body {
    background: #fff;
    border-radius: 10px;
}

.accordion-body ul {
    padding-left: 20px;
}

.accordion-body ul li {
    padding: 5px 0;
}

.accordion-body ul li a {
    text-decoration: none;
    color: #000;
}

.accordion-body ul li a:hover {
    color: #7f541c;
}

/* --------------------------------------footer css-------------------------------------------- */
#footer {
    position: relative;
}

#footer .footer-overlay {
    padding-top: 30px;
    background-color: transparent;
    background-image: linear-gradient(160deg, #6e4917 0%, #6e4917 100%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.footer-copyright {
    background: #7f541c;
}

#footer .social-menu li {
    font-size: 25px;
}

#footer .widgettitle {
    color: #fff;
}

.social-menu .fa-whatsapp {
    color: #25D366;
}

.social-menu .fa-instagram {
    color: #E4405F;
}

.social-menu .fa-facebook {
    color: #1877F2;
}

.social-menu .fa-youtube {
    color: #FF0000;
}

/* ===== Title Shine Effect ===== */
#footer .widgettitle {
    position: relative;
    display: inline-block;
    /* overflow: hidden; */
}

/* #footer .widgettitle::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: footerShine 4s infinite;
} */

#footer ul {
    padding: 0px;
}

#footer li {
    list-style: none;
}

/* ===== Social Icons Animation ===== */
#footer .social-menu li {
    font-size: 25px;
    transition: all 0.3s ease;
}

#footer .social-menu li:hover {
    transform: translateX(8px);
}

/* Individual Icon Hover Glow */
.social-menu i {
    transition: all 0.3s ease;
}

.social-menu i:hover {
    transform: scale(1.3);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* ===== Link Hover Slide Effect ===== */
#footer .menu li a {
    position: relative;
    transition: all 0.3s ease;
}

#footer .menu li a:hover {
    padding-left: 10px;
    color: #ffd700 !important;
}

/* ===== Contact Icons Animation ===== */
#footer .textwidget i {
    transition: all 0.3s ease;
}

#footer .textwidget p:hover i {
    transform: rotate(10deg) scale(1.2);
}

#footer .gallery-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 15px;
}

.gallery-box a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-box img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    transition: 0.4s;
    border: 2px solid #fff;
}

.gallery-box img:hover {
    transform: scale(1.1);
    border-color: #caa27c;
}

/* Footer Title */
.widgettitle {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Mobile */
@media(max-width:768px) {
    .gallery-box img {
        height: 60px;
    }
}

/* ===== Keyframes ===== */
@keyframes footerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes footerShine {
    0% {
        left: -100%;
    }

    50% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}


#result-section .result-card {
    background-color: #704308;
    padding: 10px;
    border-radius: 10px;
}

.school-facilitie .col-lg-2 {
        flex: 0 0 auto;
        width: 14%;
        text-align: center;
    }
    
 .school-facilitie .gallery-box img {
    width: auto!important;
    height: 70px;
    object-fit: contain;
    transition: 0.4s;
    border: 0px solid #fff;
}
.school-facilitie .gallery-box {
    background-color: #ede9e9;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 1px 1px 2px 1px #ccc;
}
.school-gallery .gallery-box img {
    width: 100%;
    height: 185px;
}
.admission-box {
        background: #08255b;
        color: #fff;
        padding: 25px;
        border-radius: 15px;
        text-align: center;
    }

    .admission-box h4 {
        font-weight: 700;
    }

    .admission-box p {
        font-size: 15px;
    }

    .admission-box .btn-warning {
        font-weight: 600;
        border-radius: 8px;
    }

    .section-title {
        color: #08255b;
        font-weight: 700;
    }

    .time-box {
        background: #f7f7f7;
        border: 1px solid #ddd;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .time-icon {
        font-size: 30px;
        margin-right: 15px;
    }

    .time-box h6 {
        margin: 0;
        color: #08255b;
        font-weight: 700;
    }

    .time-box p {
        margin: 3px 0 0;
    }

    .contact-card {
        background-color: #f9f9c8;
        border: 1px solid #ddd;
        padding: 20px;
        border-radius: 15px;
        height: 100%;
    }

    .contact-item {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
    }

    .contact-item i {
        color: #0b3b8c;
        font-size: 22px;
        width: 25px;
    }

    .contact-item p {
        margin: 0;
        font-size: 14px;
    }

    .map-box iframe {
        width: 100%;
        height: 360px;
        border: 0;
        border-radius: 12px;
    }
    
    #about .card-body i {
    font-size: 30px;
    color: #fff;
}

section#vbraplication-section {
    background-color: #950153;
    position: relative;
    z-index: 1;
}
#vbraplication-section .apsection-pattern {
    background-image: url(/public/usercss/img/aplicationbackimg.jpg);
    background-repeat: repeat-x;
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .9;
    z-index: -1;
}
#vbraplication-section .aplicdisc {
    background-color: #011f67;
    padding: 10px;
    color: #fff;
    border-radius: 8px;
}
#vbraplication-section .aplicdisc a {
    color: #f7d006;
    font-weight: bold;
    font-size: 16px;
}
#vbraplication-section .aplicdisc span {
    cursor: grab;
}
#vbraplication-section .btn {
    font-size: 14px;
    color: #fff;
    background: #ef0021;
}