/*** Color Variables ***/
:root {
    --primary: #1e3a5f; /* Navy Blue */
    --secondary: #2e8b57; /* Evergreen */
    --light: #f8f9fa;
    --dark: #212529;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/


/*** Common CSS Start ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.display-4,
.display-5,
.display-6 {
    font-weight: 600;
}

.wow,
.animated {
    animation-duration: 2s !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.border-secondary {
    border-color: var(--secondary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: #152a46 !important;
    border-color: #152a46 !important;
    color: white !important;
}

.btn-secondary {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: white !important;
}

.btn-secondary:hover {
    background-color: #246b44 !important;
    border-color: #246b44 !important;
    color: white !important;
}
/*** Common CSS End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-border-radius {
    border-radius: 25% 10%;
}

.img-border-radius {
    border-radius: 50% 20% / 10% 40%;
}

.title-border-radius {
    border-radius: 10% 30%;
}
/*** Button End ***/


/*** Topbar Start ***/
.topbar .top-info {
    font-size: medium;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

.topbar .top-link a:hover {
    background: var(--secondary) !important;
}

.topbar .top-link a:hover i {
    color: var(--primary) !important;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        font-weight: 400;
        font-family: 'Fredoka', sans-serif;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/


/*** Hero Slider Start ***/
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.slider-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-indicator.active {
    background: var(--secondary);
}

.hero-header {
    background: linear-gradient(rgba(30, 58, 95, 0.7), rgba(30, 58, 95, 0.3)), url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Hero Slider End ***/


/*** About Start ***/
.about {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-img-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

.about-content {
    padding-left: 30px;
}

.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../img/about.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.video.border {
    border-radius: 50% 20% / 10% 40%;
}
/*** About End ***/


/*** Mission Vision & Core Values Start ***/
.mission-vision {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
}

.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--light);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
    border-color: var(--primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}
/*** Mission Vision & Core Values End ***/


/*** Administration & Leadership Start ***/
.administration {
    background: linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.team-leader {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.team-leader:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

.team-leader img {
    transition: transform 0.3s ease;
}

.team-leader:hover img {
    transform: scale(1.05);
}

.education-info ul li {
    padding: 2px 0;
    border-bottom: 1px dashed #e9ecef;
}

.education-info ul li:last-child {
    border-bottom: none;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}
/*** Administration & Leadership End ***/


/*** Infrastructure & Facilities Start ***/
.facilities {
    background: linear-gradient(rgba(30, 58, 95, 0.03), rgba(30, 58, 95, 0.08));
}

.facility-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
}

.facility-icon {
    transition: transform 0.3s ease;
}

.facility-item:hover .facility-icon {
    transform: scale(1.1);
}

.facility-icon i {
    color: var(--primary);
}
/*** Infrastructure & Facilities End ***/


/*** Achievements & Awards Start ***/
.achievements {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
}

.achievement-item {
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary);
}

.achievement-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.15);
}

.achievement-item .flex-shrink-0 {
    transition: transform 0.3s ease;
}

.achievement-item:hover .flex-shrink-0 {
    transform: scale(1.1);
}
/*** Achievements & Awards End ***/


/*** Academic Programs Start ***/
.academic-programs {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
}

.program-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--light);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
    border-color: var(--primary);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-features p {
    transition: transform 0.3s ease;
}

.program-card:hover .program-features p {
    transform: translateX(5px);
}
/*** Academic Programs End ***/


/*** Contact Section Start ***/
.contact-info {
    background: linear-gradient(rgba(30, 58, 95, 0.05), rgba(30, 58, 95, 0.1));
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    background: var(--secondary);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon i {
    transform: scale(1.1);
}
/*** Contact Section End ***/


/*** Results Section Start ***/
.results {
    background: white;
}

.results-counter {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    border: 2px solid var(--light);
}

.results-counter:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    transition: color 0.3s ease;
}

.results-counter:hover .counter-number {
    color: var(--secondary);
}

.counter-text {
    color: var(--dark);
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 600;
}

.results-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.results-counter:hover .results-icon {
    transform: scale(1.1);
}
/*** Results Section End ***/


/*** Service Start ***/
.service {
    background: linear-gradient(rgba(30, 58, 95, 0.05), rgba(30, 58, 95, 0.1));
}

.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    width: 100%;
    height: 100%;
    border-radius: 50% 20% / 10% 40%;
    transition: 0.5s;
    position: relative;
}

.service-content::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    right: auto;
    background: transparent;
    border-radius: 50% 20% / 10% 40%;
    transition: .5s;
}

.service-item:hover {
    border: 1px solid var(--secondary) !important;
}

.service-item:hover .service-content::after {
    background: var(--secondary);
    width: 100%;
    opacity: 1;
    z-index: 1;
}

.service-item .service-content .service-content-inner {
    position: relative;
    z-index: 2;
}

.service-item .service-content-inner i,
.service-item .service-content-inner p,
.service-item .service-content-inner a.h4 {
    transition: 0.5s;
}

.service-item:hover .service-content-inner i,
.service-item:hover .service-content-inner p {
    color: var(--bs-white) !important;
}
.service-item:hover .service-content-inner a.h4 {
    color: var(--primary);
}

.service-item:hover .service-content-inner a.btn-primary {
    background: var(--bs-white) !important;
    color: var(--primary) !important;
}

.service-item .service-content-inner a.btn-primary:hover {
    background: var(--primary) !important;
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Programs Start ***/
.program {
    background: linear-gradient(rgba(30, 58, 95, 0.05), rgba(30, 58, 95, 0.1));
}

.program .program-item {
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.program .program-item:hover {
    transform: translateY(-5px);
}

.program .program-item .program-img .program-rate {
    position: absolute;
    width: 100px; 
    top: -20px; 
    left: 50%; 
    margin-left: -50px; 
    border-radius: 10% / 50%;
}

.program .program-item .program-text {
    padding-top: 150px; 
    margin-top: -125px;
}

.program .program-item .program-img img,
.program .program-item .program-teacher img,
.program .program-item:hover .program-text-inner a.h4 {
    transition: 0.5s;
}

.program .program-item:hover .program-img img,
.program .program-item:hover .program-teacher img {
    transform: scale(1.2);
}

.program .program-item:hover .program-text-inner a.h4 {
    color: var(--primary) !important;
}
/*** Programs End ***/


/*** Events Start ***/
.events .events-item {
    width: 100%;
    height: 100%;
    border-radius: 30%;
    position: relative;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.events .events-item:hover {
    transform: translateY(-5px);
}

.events .events-item .events-inner .events-rate {
    position: absolute;
    width: 120px; 
    top: -20px; 
    left: 50%; 
    margin-left: -60px; 
    border-radius: 10% / 50%;
}

.events .events-item .events-inner .events-img .event-overlay {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
}

.events .events-item .events-inner .events-img:hover .event-overlay {
    opacity: 1;
}

.events .events-item .events-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(30, 58, 95, .7);
    border-radius: 10px;
    transition: 0.5s;
}

.events .events-item:hover .events-img::after {
    height: 100%;
    opacity: 1;
}

.events .events-item .events-text a.h4,
.events .events-item .events-img img {
    transition: 0.5s;
}

.events .events-item:hover .events-text a.h4 {
    color: var(--primary) !important;
}

.events .events-item:hover .events-img img {
    transform: scale(1.3);
}
/*** Events End ***/


/*** Blog Start ***/
.blog .blog-item {
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.blog .blog-item:hover {
    transform: translateY(-5px);
}

.blog .blog-item .blog-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(30, 58, 95, .7);
    border-radius: 10px 10px 0 0;
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
    opacity: 1;
}

.blog .blog-item .blog-date-comments {
    padding-top: 150px !important; 
    margin-top: -125px;
}

.blog .blog-item .blog-img img,
.blog .blog-item .blog-content img,
.blog .blog-item .blog-text-inner a.h4 {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-content img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-text-inner a.h4 {
    color: var(--primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.team .team-item:hover {
    transform: translateY(-5px);
}

.team .team-item .team-icon {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
}

.team .team-item .team-icon a.share-link {
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-icon a.share-link {
    opacity: 1;
}

.team .team-item .team-content,
.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    background: var(--primary) !important;
    border-radius: 0 0 10px 10px;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content p {
    color: var(--bs-dark) !important;
}
/*** Team end ***/


/*** Testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(30, 58, 95, 0.05), rgba(30, 58, 95, 0.1));
}

.testimonial .testimonial-item {
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.testimonial .testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--secondary);
}
/*** Testimonial End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/background.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .footer-galary-img {
    transition: transform 0.3s ease;
}

.footer .footer-galary-img:hover {
    transform: scale(1.1);
}

.footer .footer-galary-img img {
    width: 100%;
    border-style: dotted; 
    border-color: var(--primary);
    transition: 0.5s;
}

.footer .footer-galary-img img:hover {
    transform: scale(1.2);
}

.footer-item a.text-body:hover {
    color: var(--secondary) !important;
}
/*** Footer End ***/


/*** Image Galleries & Sliders Start ***/
.management-gallery,
.facilities-slider,
.achievements-slider,
.team-gallery,
.programs-gallery {
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 58, 95, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Slider Styles */
.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-track {
    position: relative;
    height: 500px;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--secondary);
}
/*** Image Galleries & Sliders End ***/


/*** WhatsApp Button Styles ***/
.wh-float{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    align-items:center;
    gap:8px;
    background:#25D366;
    padding:10px 16px;
    border-radius:40px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    z-index:9999;
    transition:0.15s ease;
}

.wh-float:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(37, 211, 102, 0.4);
}

.wh-float-icon{
    width:26px;
    height:26px;
    fill:#fff;
}

.wh-float-text{
    color:#fff;
    font-size:16px;
    font-weight:600;
    font-family:system-ui,Arial;
}

.wh-btn{
    display:inline-flex;
    align-items:center;
    gap:0.6rem;
    padding:0.5rem 0.9rem;
    background:#25D366;
    color:#fff;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
    font-family:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    box-shadow:0 6px 18px rgba(37,211,102,0.18);
    transition:transform .08s ease, box-shadow .12s ease;
}

.wh-btn:active{ 
    transform:translateY(1px); 
}

.wh-btn:hover {
    box-shadow:0 8px 25px rgba(37,211,102,0.3);
    transform:translateY(-2px);
}

.wh-icon{ 
    width:20px; 
    height:20px; 
    fill:#fff; 
    flex:0 0 20px; 
}

.wh-text{ 
    font-size:0.95rem; 
    line-height:1; 
}

/* Admissions Section Styles */
.admissions {
    background-color: #f8f9fa;
}

.process-step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h5 {
    margin-bottom: 5px;
}

.requirements-list {
    margin-bottom: 20px;
}

.requirement-item {
    display: flex;
    align-items: center;
}

.fee-table {
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.fee-table thead th {
    border: none;
    padding: 15px;
    text-align: center;
}

.fee-table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
}

.fee-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.bank-info {
    max-width: 400px;
}

.payment-info ul {
    padding-left: 20px;
}

.payment-info li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
    }
    
    .step-content {
        margin-left: 0 !important;
        margin-top: 10px;
    }
    
    .fee-table {
        font-size: 0.9rem;
    }
}

/* Gallery Section Styles */
.gallery {
    background-color: #f8f9fa;
}

.gallery-filter {
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-filter .btn {
    margin: 2px;
}

.gallery-card {
    transition: all 0.3s ease;
    height: 300px;
    overflow: hidden;
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    background: linear-gradient(to bottom, rgba(13, 110, 253, 0.8), rgba(13, 110, 253, 0.9));
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-content {
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-view-btn {
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-view-btn {
    transform: scale(1);
}

/* Lightbox customization */
.lightbox-overlay {
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-container {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    background: rgba(13, 110, 253, 0.9);
    color: white;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

/* Gallery item animation */
.gallery-item {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-filter .btn {
        width: 200px;
        margin: 5px 0;
    }
    
    .gallery-card {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .gallery-card {
        height: 200px;
    }
}

