* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    position: unset !important;
}

html {
    scroll-padding-top: 120px;
}

span {
    color: #f4c430;
}

.show-desktop-only {
    display: block;
}


/* Show only on mobile */

.show-mobile-only {
    display: none;
}


/* Back To Top Button */

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.9);
    transition: all 0.4s ease;
    z-index: 9999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top .btn-inner {
    font-size: 22px;
    color: #ffffff;
    transition: 0.3s;
}


/* Hover Effect */

.back-to-top:hover {
    background: linear-gradient(135deg, #ffc107, #836303);
    box-shadow: 0 15px 30px rgba(255, 78, 80, 0.4);
    transform: translateY(-5px) scale(1.05);
}

.back-to-top:hover .btn-inner {
    transform: translateY(-3px);
}


/* ===== HEADER BASE ===== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    transform: translateY(0);
}


/* NAV TOP BAR */

.nav-top {
    transition: opacity 0.3s ease, height 0.3s ease, padding 0.3s ease;
    overflow: hidden;
}


/* ===== SCROLLED STATE ===== */

.header.scrolled {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    animation: headerSlideDown 0.45s ease forwards;
}


/* Header slide-down animation */

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


/* Hide top bar on scroll */

.header.scrolled .nav-top {
    height: 0;
    padding: 0;
    pointer-events: none;
    display: none;
}


/* ===== LOGO ANIMATION ===== */

.navbar-brand {
    padding-bottom: 0 !important;
}

.navbar-brand img {
    width: 180px;
    transition: transform 0.35s ease, width 0.35s ease;
    transform-origin: left center;
}

.header.scrolled .navbar-brand img {
    width: 130px;
    transform: scale(0.92);
}

.header .navbar>.container {
    display: flex;
    flex-wrap: inherit;
    align-items: start;
    justify-content: space-between;
}

.header.scrolled .navbar>.container {
    display: flex;
    flex-wrap: inherit;
    align-items: end;
    justify-content: space-between;
}

.dropdown-menu {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}


/* ===== HEADER EXTRAS VISIBILITY ===== */

.header-extras {
    display: none !important;
    transform: translateY(-8px);
    pointer-events: none;
    transition: all 0.35s ease;
}

.header.scrolled .header-extras {
    display: inline-flex !important;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item.active,
.dropdown-item:active {
    text-decoration: none;
    background-color: #ebebeb;
}

.navbar .nav-item .nav-link {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.4px;
    color: #1e293b;
    padding: 25px 16px;
    position: relative;
    text-transform: uppercase;
}

.navbar .nav-item:last-child .nav-link {
    padding-right: 0;
}

.navbar .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffff01, #f4c430);
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .nav-item .nav-link:hover {
    color: #f4c430;
}

.navbar .nav-item .nav-link:hover::after {
    width: 65%;
}


/* Active / dropdown open */


/* .navbar .nav-item .nav-link.active::after,
.navbar .nav-item.show>.nav-link::after {
    width: 100%;
} */

.navbar .nav-item .nav-link.active,
.navbar .nav-item.show>.nav-link,
.navbar .dropdown-item.active {
    color: #f4c430;
}


/* ===============================
   DROPDOWN ITEMS – CROSSED LINES
================================= */

.navbar .dropdown-item {
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    padding: 10px 22px;
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
}


/* Cross lines */

.navbar .dropdown-item::before,
.navbar .dropdown-item::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 14px;
    height: 2px;
    background: #2563eb;
    opacity: 0;
    transition: all 0.35s ease;
}


/* Diagonal lines */

.navbar .dropdown-item::before {
    transform: translateY(-50%) rotate(45deg) scaleX(0);
}

.navbar .dropdown-item::after {
    transform: translateY(-50%) rotate(-45deg) scaleX(0);
}


/* Hover effect */

.navbar .dropdown-item:hover {
    color: #2563eb;
    padding-left: 36px;
}

.navbar .dropdown-item:hover::before,
.navbar .dropdown-item:hover::after {
    opacity: 1;
    transform: translateY(-50%) rotate(var(--angle)) scaleX(1);
}


/* Fix rotation values */

.navbar .dropdown-item:hover::before {
    transform: translateY(-51%) rotate(115deg) scaleX(1);
    left: 7px;
}

.navbar .dropdown-item:hover::after {
    transform: translateY(-50%) rotate(-65deg) scaleX(1);
}

.navbar-nav li:nth-child(-n + 8):after {
    content: "";
    border-right: 1px dashed #918f8f;
    display: block;
    width: 100%;
    height: 18px;
    margin-top: -45px;
}

.navbar-nav .dropdown li::after {
    display: none;
}


/* Active dropdown item */

.navbar .dropdown-item.active {
    color: #2563eb;
    font-weight: 600;
}

.offcanvas {
    height: 100vh !important;
}


/* ===== HELP DESK STYLE ===== */

.helpdesk a {
    font-weight: 600;
    text-decoration: none;
    color: #111;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.helpdesk a:hover {
    color: #941c1b;
}


/* ===== SOCIAL ICON BASE STYLE ===== */

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #f5f5f5;
    transition: all 0.3s ease;
}


/* Original Brand Colors */

.social-icons a.facebook {
    color: #1877F2;
}

.social-icons a.instagram {
    color: #E4405F;
}

.social-icons a.linkedin {
    color: #0A66C2;
}


/* Hover Effect */

.social-icons a:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background: #fff;
}


/* ================================
   NAV TOP BAR
================================ */

.nav-top {
    background-color: #0b2545;
    font-size: 14px;
}

.nav-top .nav-quote {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 13px;
}

.nav-top .nav-quote i {
    color: #f4c430;
    font-size: 16px;
    margin-right: 6px;
    position: relative;
    top: 1px;
}

.nav-top .social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #f5f5f5;
    transition: all 0.3s ease;
}


/* ================================
   APPLY NOW BUTTON
================================ */

.apply-btn {
    background-color: #f4c430;
    color: #000000;
    font-weight: 600;
    padding: 2px 22px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.header-extras .apply-btn {
    padding: 4px 22px;
    font-size: 15px;
}

.apply-btn i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.apply-btn:hover {
    background-color: #ffd966;
}

.apply-btn:hover i {
    transform: translateX(5px);
}


/* ================================
   MODAL STYLES
================================ */

#applyModal.modal.fade .modal-dialog {
    transform: scale(0.6);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(.19, 1, .22, 1), opacity 0.7s ease;
}

#applyModal.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

#applyModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

#applyModal.modal.fade {
    transition: opacity 0.6s ease;
}

.modal .modal-content {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.modal .modal-header {
    background-color: #0b2545;
    color: #ffffff;
    padding: 16px 24px;
}

.modal .modal-title {
    font-weight: 600;
    letter-spacing: 0.4px;
}

.modal .btn-close {
    filter: brightness(0) invert(1);
}


/* ================================
   FORM STYLES
================================ */

.modal form .modal-body {
    padding: 24px;
}

.modal form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 4px;
}

.modal form .form-control,
.modal form .form-select {
    border-radius: 6px;
    border: 1px solid #ced4da;
    font-size: 14px;
    padding: 8px 10px;
    transition: border-color 0.2s ease;
}

.modal form .form-control:focus,
.modal form .form-select:focus {
    border-color: #0b2545;
    box-shadow: none;
}


/* ================================
   MODAL FOOTER BUTTON
================================ */

.modal .modal-footer {
    padding: 16px 24px;
    border-top: none;
}

.modal .modal-footer .submit-btn {
    background-color: #0b2545;
    color: #ffffff;
    padding: 8px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.modal .modal-footer .submit-btn:hover {
    background-color: #163a63;
}


/* readmore */

.readmore-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #f4c430;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.4s ease;
}

.readmore-btn i {
    margin-left: 8px;
    transition: 0.3s ease;
}

.readmore-btn:hover {
    background: #ffffff;
    color: #f4c430;
}

.readmore-btn:hover i {
    transform: translateX(5px);
}


/* readmore */


/* ===============================
   Banner Wrapper (Spacing Added)
=================================*/

.banner-wrapper {
    padding: 120px 40px 40px;
    /* space on all 4 sides */
}


/* ===============================
   Banner Section
=================================*/

.banner-carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    /* reduced height */
    overflow: hidden;
    border-radius: 20px;
    /* rounded corners */
}


/* Carousel Items */

.banner-carousel .carousel-item,
.banner-carousel .banner-image {
    height: 90vh;
}

.banner-carousel .banner-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    animation: slowZoom 10s linear forwards;
}


/* Slow Zoom */

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}


/* Dark Overlay */

.banner-carousel::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    top: 0;
    left: 0;
    z-index: 1;
}


/* ===============================
   Left Aligned Content
=================================*/

.banner-carousel .banner-content {
    position: absolute;
    bottom: 0%;
    left: 8%;
    transform: translateY(-40%);
    z-index: 2;
    max-width: 700px;
    color: #fff;
    text-align: left;
}

.banner-title {
    font-size: 30px;
    font-weight: 700;
    overflow: hidden;
    margin-bottom: 15px;
}

#bannerText {
    display: inline-block;
    animation: fadeSlide 4s ease-in-out infinite;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    20% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .banner-title {
        font-size: 30px;
    }
}

.banner-carousel .banner-content .banner-subtitle {
    font-size: 17px;
    margin-bottom: 25px;
}


/* ===============================
   Vertical Indicators (Right Bottom)
=================================*/

.banner-carousel .carousel-indicators {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: auto;
    margin: 0;
    flex-direction: column;
    gap: 8px;
}

.banner-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.5;
    border: none;
}

.banner-carousel .carousel-indicators .active {
    opacity: 1;
    background-color: #f4c430;
}


/* ===============================
   Responsive
=================================*/

.kas-about-section {
    padding: 60px 6%;
    background: #f6f9ff;
}


/* Layout */

.kas-about-section .kas-about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1250px;
    margin: auto;
    flex-wrap: wrap;
}


/* IMAGE SIDE */

.kas-about-section .kas-about-image-area {
    flex: 1.15;
    min-width: 360px;
}

.kas-about-section .kas-about-image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.kas-about-section .kas-about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kas-about-section .kas-about-image-wrapper:hover img {
    transform: scale(1.05);
}


/* Overlay */

.kas-about-section .kas-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}


/* Year Badge */

.kas-about-section .kas-about-year-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #f4c430;
    color: #fff;
    padding: 8px 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 1px;
    z-index: 2;
}


/* Bottom Image Content */

.kas-about-section .kas-about-image-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

.kas-about-section .kas-about-image-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.kas-about-section .kas-about-image-content p {
    font-size: 14px;
    letter-spacing: 1px;
}


/* CONTENT SIDE */

.kas-about-section .kas-about-content-area {
    flex: 1;
    min-width: 320px;
}

.kas-about-section .kas-about-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f4c430;
    margin-bottom: 15px;
    display: inline-block;
}

.kas-about-section .kas-about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.kas-about-section .kas-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}


/* Smart Info Strip */

.kas-about-section .kas-about-info-strip {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 25px 0;
    /* border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5; */
}

.kas-about-section .kas-about-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kas-about-section .kas-about-info-item img {
    width: 26px;
    height: 26px;
}

.kas-about-section .kas-about-info-item span {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.kas-about-section .kas-about-info-line {
    width: 2px;
    height: 24px;
    background: #f4c430;
}


/* Button */

.kas-about-section .kas-about-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #f4c430;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.kas-about-section .kas-about-btn:hover {
    background: #084298;
    transform: translateY(-2px);
}

.academy-cards-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 70px 0px;
}

.academy-cards-section .academy-section-title {
    font-size: 34px;
    font-weight: 700;
}

.academy-cards-section .academy-section-subtitle {
    font-size: 16px;
    color: #6c757d;
}


/* Card */

.academy-cards-section .academy-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    height: 100%;
}

.academy-cards-section .academy-card:hover {
    transform: translateY(-8px);
}


/* Top Image */

.academy-cards-section .academy-card-top-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


/* Body */

.academy-cards-section .academy-card-body {
    padding: 25px;
}


/* Header Row */

.academy-cards-section .academy-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}


/* Small Image */

.academy-cards-section .academy-small-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.academy-cards-section .academy-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


/* Header Text */

.academy-cards-section .academy-header-text h5 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.academy-cards-section .academy-header-text span {
    font-size: 13px;
    color: #f4c430;
}


/* Description */

.academy-cards-section .academy-card-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}


/* Points */


/* Remove Default Bullets */

.academy-cards-section .academy-card-points {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}


/* List Items */

.academy-cards-section .academy-card-points li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
    position: relative;
    padding-left: 28px;
}


/* Font Awesome Pen Icon */

.academy-cards-section .academy-card-points li::before {
    content: "\f5a1";
    /* Font Awesome pen icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
    color: #000000;
}


/* Read More */

.academy-cards-section .academy-read-more {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #f4c430;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}

.academy-cards-section .academy-read-more:hover {
    border-bottom: 2px solid #f4c430;
}

.kaps-why-split-section {
    position: relative;
    /* background: #dadada; */
    overflow: hidden;
    padding: 50px 0px 400px;
}


/* Left Image Background */

.kaps-why-split-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../Images/kids-on-stage-with-dress.webp') center left / cover no-repeat;
    /* opacity: 0.12; */
    /* subtle effect */
    z-index: 0;
}


/* Row Card */

.kaps-why-split-section .kaps-why-row {
    position: relative;
    z-index: 2;
    padding: 0;
    margin-left: 0px;
    /* background: #ffffff; */
    border-radius: 20px;
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05); */
}


/* Left Heading */

.kaps-why-split-section .kaps-why-main-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 10px;
}

.kaps-why-split-section .kaps-why-main-title span {
    color: #fff;
}


/* Accent Line */

.kaps-why-split-section .kaps-why-line {
    width: 70px;
    height: 4px;
    background: #f4c430;
    border-radius: 2px;
    margin-bottom: 20px;
}


/* Right Content */

.kaps-why-split-section .kaps-why-right p {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 10px;
}


/* Closing */

.kaps-why-split-section .kaps-why-closing {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-top: 15px;
}

.school-counter {
    padding: 70px 0 100px;
    background-color: #f8f9fa;
    position: relative;
    z-index: 5;
}


/* Card */

.school-counter .counter-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.school-counter .counter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}


/* Icon */

.school-counter .counter-icon {
    font-size: 1.9rem;
    color: #f4c430;
    margin-bottom: 8px;
}


/* Number */

.school-counter .counter-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2d3d;
    line-height: 1.1;
}


/* Text */

.school-counter .counter-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6c757d;
    margin-top: 6px;
}


/* ===== SPECIAL COUNTER CARD ===== */

.counter-special {
    position: relative;
    background: linear-gradient(135deg, #f4c430, #6610f2);
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.35);
    transform: scale(1.05);
}


/* Glow overlay */

.counter-special::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 60%);
    animation: glowMove 3s infinite alternate;
}

@keyframes glowMove {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 0.85;
    }
}


/* Special Icon */

.counter-special .counter-icon {
    color: #ffffff;
    font-size: 2.3rem;
}


/* Special Number */

.counter-special .special-number {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #f9bd09;
}


/* Special Text */

.counter-special .special-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}


/* Ribbon Badge */

.special-badge {
    position: absolute;
    top: 20px;
    right: -34px;
    background: #ffc107;
    color: #1f2d3d;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 38px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
}


/* ===== SCHOOL CTA SECTION ===== */

.school-cta {
    position: relative;
    background: linear-gradient(135deg, #d9aa18, #f4c430ad);
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
    margin-top: -50px;
    z-index: 10;
}

.school-cta .cta-content {
    position: relative;
    z-index: 2;
}


/* Text */

.school-cta .cta-content .cta-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.school-cta .cta-content .cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin-bottom: 25px;
}


/* Buttons */

.school-cta .cta-content .cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.school-cta .cta-content .cta-buttons .btn-apply {
    background-color: #ffffff;
    color: #f4c430;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
}

.school-cta .cta-content .cta-buttons .btn-enquiry {
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}


/* Image */

.school-cta .cta-image {
    text-align: right;
}

.school-cta .cta-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.home-facilities-panel {
    position: relative;
    padding: 120px 0 70px;
    background: #f8f9fa;
    overflow: hidden;
    margin-top: -50px;
}

.home-facilities-panel {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}


/* Zig-zag background */

.home-facilities-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
    z-index: 0;
}

.home-facilities-panel .container {
    position: relative;
    z-index: 1;
}


/* LEFT CONTENT */

.home-facilities-panel .facilities-intro h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1f2d3d;
    margin-bottom: 14px;
}

.home-facilities-panel .facilities-intro p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 18px;
}

.home-facilities-panel .facilities-intro .view-all {
    font-weight: 600;
    color: #f4c430;
    text-decoration: none;
}


/* RIGHT GRID */

.home-facilities-panel .facilities-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


/* Facility Box */

.home-facilities-panel .facility-box {
    background: #ffffff;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* Image */

.home-facilities-panel .facility-box .facility-image {
    margin-bottom: 10px;
}

.home-facilities-panel .facility-box .facility-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}


/* Text */

.home-facilities-panel .facility-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f4c430;
    margin-bottom: 6px;
}

.home-facilities-panel .facility-box p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 6px;
}

.home-facilities-panel .facility-box a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f4c430;
    text-decoration: none;
}

.student-life-snapshots {
    padding: 80px 0;
    background: #f8f9fa;
}


/* Heading */

.student-life-snapshots .student-life-title {
    font-size: 34px;
    font-weight: 800;
    color: #1f2d3d;
}

.student-life-snapshots .student-life-subtitle {
    font-size: 1.05rem;
    color: #6c757d;
    max-width: 700px;
}


/* Strip */

.student-life-snapshots .student-life-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}


/* Snapshot */

.student-life-snapshots .life-snapshot {
    position: relative;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
}

.student-life-snapshots .life-snapshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Overlay */

.student-life-snapshots .life-snapshot .snapshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
    color: #ffffff;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.student-life-snapshots .snapshot-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.student-life-snapshots .snapshot-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.student-life-snapshots .snapshot-overlay a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.main-gallery-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 10px 0;
}

.gallery-title {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
    /* deep academic blue/gray */
    position: relative;
    display: inline-block;
    animation: fadeUp 0.8s ease forwards;
    margin-bottom: 12px;
    text-align: center;
}


/* underline accent */

.gallery-subtitle {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
    /* Bigger text */
    line-height: 1.9;
    /* Comfortable reading */
    color: #444;
    max-width: 760px;
    /* Wider paragraph */
    margin: 0 auto 35px;
    font-weight: 400;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Main-gallery {
    padding: 80px 0px;
}

.main-gallery-buttons button {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}


/* Portfolio - Active state with star */

.main-gallery-buttons button:first-child {
    background-color: var(--primary-color);
    color: white;
    border: none;
}


/* Star indicator before the active text */

.main-gallery-buttons button:first-child::before {
    content: 'ÃƒÂ¢Ã‹Å“Ã¢â‚¬Â¦';
    display: inline-block;
    margin-right: 8px;
    font-size: 14px;
}


/* Prints - Inactive state */

.main-gallery-buttons button:last-child {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}


/* Hover effects */

.main-gallery-buttons button:first-child:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.main-gallery-buttons button:last-child:hover {
    background-color: #e9ecef;
    color: #495057;
}

.main-gallery-buttons button.active::after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 0;
    width: 16px;
    height: 16px;
    top: 32px;
    left: calc(50% - 10px);
    z-index: -1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.main-gallery-buttons button.active:hover::after {
    background-color: var(--accent-color);
}

.spl-footer {
    text-align: center;
}

.spotlight-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 24px;
}


/* base */

.spotlight {
    overflow: hidden;
    border-radius: 12px;
}

.spotlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.spotlight:hover img {
    transform: scale(1.06);
}


/* RESET first (important) */

.spotlight {
    grid-column: auto;
}


/* PATTERN REPEAT EVERY 6 ITEMS */


/* 1st item */

.spotlight:nth-child(6n+1) {
    grid-column: span 2;
}


/* 2nd */

.spotlight:nth-child(6n+2) {
    grid-column: span 1;
}


/* 3rd */

.spotlight:nth-child(6n+3) {
    grid-column: span 1;
}


/* 4th */

.spotlight:nth-child(6n+4) {
    grid-column: span 1;
}


/* 5th */

.spotlight:nth-child(6n+5) {
    grid-column: span 1;
}


/* 6th (big right side) */

.spotlight:nth-child(6n+6) {
    grid-column: span 2;
}

.spotlight-group .badge-title {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.75);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(4px);
}


/* custom classes are always prefixed by "spl-" automatically */

.spl-like {
    background-image: url(demo/gallery/heart-outline.svg);
    background-size: 23px;
}


/* optionally, additional state to toggle the button: */

.spl-like.on {
    background-image: url(demo/gallery/heart.svg);
}


/*
         * Custom Animation:
         * -----------------
         */


/* custom scene transition (slide effect) */

.only-this-gallery.show .spl-scene {
    transition: transform 0.2s ease;
}


/* custom animation "visible state" (css context by custom classname "only-this-gallery" to apply these animation just on a specific gallery) */

.only-this-gallery.show .spl-pane>* {
    clip-path: circle(100% at center);
    transition: transform 0.35s ease, opacity 0.65s ease, clip-path 0.8s ease;
}


/* custom animation "hidden state" ("custom" is the name of the animation you pass as gallery option) */

.only-this-gallery .spl-pane .custom {
    clip-path: circle(0px at center);
    transition: transform 0.65s ease, opacity 0.65s ease;
}


/* animation state when gallery is hidden */

#spotlight.only-this-gallery {
    clip-path: circle(0px at center);
}


/* animation state when gallery will open */

#spotlight.only-this-gallery.show {
    clip-path: circle(100% at center);
    transition: clip-path 0.65s ease 0.15s;
}


/* Footer */

.kaps-footer {
    background-color: #53451b;
    color: #e6f0ff;
    padding: 30px 0 25px;
    font-size: 14px;
}


/* Rows */

.kaps-footer .footer-row {
    padding: 35px 0;
}


/* Contact */

.kaps-footer .footer-contact p {
    font-size: 15px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.kaps-footer .footer-contact span {
    color: #38bdf8;
    font-weight: 600;
}


/* Social */

.kaps-footer .footer-social-wrap {
    text-align: right;
}

.kaps-footer .footer-social a {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin-left: 12px;
    border-radius: 50%;
    border: 1px solid #ffff01;
    color: #e6f0ff;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kaps-footer .footer-social a:hover {
    background-color: #38bdf8;
    color: #0b1d33;
}


/* Divider */

.kaps-footer .footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ffff01, transparent);
    margin: 30px 0;
}


/* Titles */

.kaps-footer .footer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ffffff;
}

.kaps-footer .footer-subtitle {
    margin-top: 30px;
}

.kaps-footer .footer-list {
    list-style: none;
    padding: 0;
}

.kaps-footer .footer-list li {
    margin-bottom: 12px;
}

.kaps-footer .footer-list li a {
    color: #e6f0ff;
    text-decoration: none;
    padding-left: 16px;
    position: relative;
    transition: color 0.3s ease;
    position: relative;
}

.kaps-footer .footer-list li a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #38bdf8;
    transition: 0.3s ease, left 0.3s ease;
}

.kaps-footer .footer-list li a:hover::before {
    opacity: 1;
    left: -12px;
}

.kaps-footer .footer-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    transition: width 0.35s ease;
}

.kaps-footer .footer-list li a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.kaps-footer .footer-list li a:hover::after {
    width: 100%;
}

.kaps-footer .footer-list li a:hover {
    color: #38bdf8;
}

.kaps-footer .footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #bfd7ff;
}

.inside-banner {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 120px 40px 40px;
    border-radius: 20px;
}


/* Banner Image */

.inside-banner .inside-banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.inside-banner .inside-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Overlay */

.inside-banner .inside-banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    top: 0;
    left: 0;
    z-index: 1;
}


/* Container */

.inside-banner .container {
    position: relative;
    height: 100%;
    z-index: 2;
}


/* Content */

.inside-banner .inside-banner-content {
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
}


/* Title */

.inside-banner .inside-banner-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}


/* Subtitle */

.inside-banner .inside-banner-subtitle {
    color: #eee;
    font-size: 18px;
}


/* Breadcrumb */

.inside-banner .breadcrumb {
    margin: 0;
    background: transparent;
}

.inside-banner .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.inside-banner .breadcrumb-item.active {
    color: #ddd;
}

.inside-banner .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.school-about-section {
    /* position: relative; */
    padding: 60px 0 0;
    background: #f8f9fb;
    overflow: hidden;
}


/* background shapes */

.school-about-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #004aad, #00c6ff);
    top: -200px;
    right: -150px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: .08;
}


/* content */

.school-about-content .school-badge {
    background: #f4c430;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
}

.school-about-content .school-title {
    font-size: 35px;
    font-weight: 700;
    margin: 20px 0;
}

.school-about-content .school-title span {
    color: #f4c430;
}

.school-about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}


/* feature boxes */

.school-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.school-feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.school-feature-box i {
    font-size: 28px;
    color: #f4c430;
    margin-bottom: 10px;
}

.after-section {
    position: relative;
    overflow: hidden;
}


/* images */

.school-about-images {
    position: relative;
    text-align: center;
    margin-bottom: 100px;
}

.school-about-images .main-school-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    left: 10%;
}

.school-about-images .overlay-school-img {
    position: absolute;
    width: 60%;
    bottom: -70px;
    left: -20px;
    border-radius: 10px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.school-about-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #003b8e, #1ea3ff);
    bottom: 179px;
    right: -330px;
    border-radius: 50%;
    opacity: .08;
    z-index: 99;
}

.school-values-section {
    position: relative;
    padding: 160px 0 60px;
    overflow: hidden;
}


/* Background image via img */

.school-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


/* Overlay */

.school-values-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    z-index: 2;
}


/* Top semicircle */

.school-values-section::after {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 220px;
    background: #f8f9fb;
    border-bottom-left-radius: 100% 140px;
    border-bottom-right-radius: 100% 140px;
    z-index: 3;
}

.school-values-section .container {
    position: relative;
    z-index: 4;
}


/* Cards */

.school-value-card {
    text-align: center;
    padding: 40px 20px;
    color: #fff;
}


/* Icon */

.school-value-card i {
    font-size: 38px;
    margin-bottom: 18px;
    color: #f4c430;
}


/* Title */

.school-value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
}


/* Text */

.school-value-card p {
    font-size: 15px;
    line-height: 1.8;
    opacity: .95;
}


/* vertical divider */

.school-values-section .col-lg-4 {
    position: relative;
}

.school-values-section .col-lg-4:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    /* background: rgba(255, 255, 255, 0.4); */
    border-right: 1px dashed #f4c430;
}

.school-history-section {
    position: relative;
    /* min-height: 600px; */
    padding: 60px 0;
    overflow: hidden;
    background-image: url(../Images/About/school.webp);
}

.history-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 1;
    transform: translateZ(0);
}

.history-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 55%), rgb(0 0 0));
    z-index: 2;
}

.school-history-section .container,
.school-history-section .container-fluid {
    position: relative;
    z-index: 3;
}

.history-text {
    color: #fff;
    /* padding: 40px; */
}

.history-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.history-text p {
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 15px;
}

.founder-section {
    /* background: #f9f9f9; */
    position: relative;
}

.founder-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 298px;
    background: #e0ca61;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
    border-radius: 0px 0px 50% 50%;
}


/* Top Strap */

.founder-section .founder-header {
    /* background: linear-gradient(135deg, #e0ca61, #aa9c6b); */
    padding: 70px 0;
}

.founder-section .founder-header h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* Body */

.founder-section .founder-body {
    padding: 40px 40px 0 0px;
    background: #fff;
    position: relative;
    top: -50px;
    border-radius: 14px;
}


/* Image */

.founder-section .founder-image {
    text-align: center;
}

.founder-section .founder-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* Content */

.founder-section .founder-content {
    padding-left: 20px;
}

.founder-section .founder-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}


/* Vision Box */

.founder-section .founder-vision {
    background: #f5f1f1;
    border-left: 5px solid #cbb865;
    padding: 18px 20px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.founder-section .founder-vision h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.founder-section .founder-vision blockquote {
    margin: 0;
    font-style: italic;
    color: #333;
}

.leader-section {
    position: relative;
    padding: 60px 0;
    background: #fbf8f8;
}

.leader-section .founder-header h2 {
    color: #f4c430;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    padding-left: 10px;
    border-left: 2px solid #f4c430;
    margin-left: 30px;
}


/* dotted svg */

.leader-section .leader-dot {
    position: absolute;
    bottom: -75px;
    width: 400px;
    opacity: .6;
}

.leader-section .leader-dot.leader-dot-right {
    right: -100px;
}

.leader-section .leader-dot.leader-dot-left {
    left: -50px;
}


/* card */

.leader-section .leader-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


/* image area */

.leader-section .leader-card .leader-image {
    background: #efefef;
    text-align: center;
}


/* content */

.leader-section .leader-card .leader-content {
    padding: 20px 35px;
}

.leader-section .leader-card .leader-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.leader-section .leader-card .leader-content h6 {
    font-weight: 500;
    margin-bottom: 10px;
    color: #444;
}

.leader-section .leader-card .leader-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.leader-section .leader-card .leader-content .leader-readmore {
    display: inline-block;
    margin-top: 15px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.leader-section .leader-card .leader-content .leader-readmore::before {
    content: "➜";
    margin-right: 8px;
}

.kaps-preprimary-section {
    padding: 30px 0 60px;
    background: #f9fbff;
    position: relative;
}

.kaps-preprimary-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.kaps-preprimary-subtitle {
    color: #d9aa18;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 28px;
}

.kaps-preprimary-image {
    position: relative;
}

.kaps-preprimary-image img {
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.kaps-preprimary-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    background: #e9f4ff;
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: -1;
}

.kaps-preprimary-gallery {
    margin-top: 70px;
}

.kaps-gallery-item img {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.kaps-gallery-item img:hover {
    transform: scale(1.03);
}

.kaps-preprimary-why {
    margin-top: 60px;
    overflow: hidden;
}

.kaps-why-header {
    margin-bottom: 50px;
}

.kaps-why-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.kaps-why-desc {
    max-width: 800px;
    margin: auto;
    color: #666;
}

.kaps-why-timeline {
    position: relative;
    /* padding-left: 50px; */
}

.kaps-why-timeline:before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #0461a9;
}

.kaps-why-step {
    position: relative;
    display: flex;
    margin-bottom: 25px;
    align-items: center;
}

.kaps-why-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: -10px;
}

.kaps-why-icon img {
    /* width: 30px; */
    border-radius: 50%;
}

.kaps-why-text {
    margin-left: 20px;
}

.kaps-why-text h6 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 19px;
    text-transform: uppercase;
    color: #f4c430;
}

.kaps-why-text p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.kaps-why-image {
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.kaps-primary-advantage-row {
    margin: 50px 0px;
    row-gap: 20px;
}

.kaps-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.kaps-img-grid .kaps-grid-large {
    grid-column: 1 / 3;
}

.kaps-img-grid .kaps-grid-large img {
    height: 200px !important;
}

.kaps-img-grid .kaps-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}


/* Responsive */

@media (max-width:991px) {
    .kaps-img-grid {
        grid-template-columns: 1fr;
    }
    .kaps-img-grid .kaps-grid-large {
        grid-column: auto;
    }
}

.kaps-primary-adv-title {
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.kaps-primary-adv-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    /* height: 100%; */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    margin-bottom: 5px;
}

.kaps-primary-adv-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.kaps-primary-adv-icon {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f4f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4c430;
    font-size: 20px;
}

.kaps-primary-adv-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

.school-facilities .facility-section {
    position: relative;
    overflow: hidden;
}

.school-facilities .facility-bg-1 {
    padding: 80px 0 100px;
}

.school-facilities .facility-bg-2 {
    padding: 120px 0 80px;
}


/* Remove gap between sections */

.school-facilities .facility-section.facility-bg-2 {
    margin-top: -60px;
}


/* Polygon backgrounds */

.school-facilities .facility-bg-1 {
    background: #ffd966;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.school-facilities .facility-bg-2 {
    /* background: #eef7f1; */
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}


/* Content */

.school-facilities .facility-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.school-facilities .facility-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}


/* Highlights */

.school-facilities .facility-highlights {
    padding: 0;
    list-style: none;
}

.school-facilities .facility-highlights li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-weight: 500;
}

.school-facilities .facility-highlights li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2a7be4;
    font-weight: bold;
}


/* Image grids */

.school-facilities .facility-images {
    display: grid;
    gap: 15px;
}

.school-facilities .facility-images.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.school-facilities .facility-images.grid-3 {
    grid-template-columns: 1fr 1fr;
}

.school-facilities .facility-images.grid-3 img:first-child {
    grid-column: span 2;
}


/* Image styling */

.school-facilities .facility-images img {
    border-radius: 12px;
    object-fit: cover;
    height: 200px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    /* object-position: bottom; */
}

.school-facilities .facility-images.grid-2 img {
    height: 300px;
}


/* .library-bg {
    background-image: url(../Images/Facilities/library-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
} */

.admission-process-banner {
    position: relative;
    padding: 60px 0 0;
    background: #f8f9fb;
    overflow: hidden;
}

.admission-section {
    padding: 80px 0;
    background: #f6f8fb;
    font-family: Arial, sans-serif;
}


/* TABS */

.admission-tabs {
    justify-content: center;
    border-bottom: none;
}

.admission-tabs .nav-link {
    border: none;
    background: #eef2f7;
    padding: 12px 26px;
    margin: 5px;
    border-radius: 30px;
    font-weight: 600;
    color: #444;
    transition: .3s;
}

.admission-tabs .nav-link i {
    margin-right: 6px;
}

.admission-tabs .nav-link.active {
    background: #0d6efd;
    color: #fff;
}


/* CONTENT BOX */

.admission-content {
    margin-top: 30px;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* INTRO */

.admission-intro {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}


/* SIMPLE LIST */

.admission-list {
    list-style: none;
    padding: 0;
}

.admission-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
}


/* ICON BADGE */

.admission-list li i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef4ff;
    color: #f4c430;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: .3s;
}

.admission-list li:hover i {
    background: #f4c430;
    color: #fff;
}


/* ---------- DOCUMENT TAB ---------- */

.documents-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}


/* DOCUMENT LIST */

.documents-list {
    flex: 1;
}

.doc-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 15px;
}

.doc-item i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eef4ff;
    color: #f4c430;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}


/* APPLICATION PAD */

.application-pad {
    flex: 1;
    background: #f9fbff;
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px dotted #f4c430;
}


/* CLIPBOARD TOP */

.application-pad:before {
    content: "";
    width: 70px;
    height: 12px;
    background: #cfd6df;
    border-radius: 6px;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}


/* PAD ICON */

.application-pad i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc61d, #ebc041);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(13, 110, 253, .35);
}


/* BUTTON */

.download-btn {
    display: inline-flex;
    margin-top: 15px;
    padding: 12px 26px;
    background: #f4c430;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    align-items: center;
    gap: 20px;
}

.download-btn:hover {
    background: #084298;
}

.alumni-section {
    padding: 90px 0;
    background: #f4f7fb;
}


/* CONTAINER */

.alumni-wrapper {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


/* IMAGE SIDE */

.alumni-image {
    position: relative;
    height: 100%;
}

.alumni-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* IMAGE OVERLAY */

.alumni-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.alumni-overlay h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.alumni-overlay h5 {
    margin-bottom: 20px;
}

.alumni-overlay p {
    line-height: 1.7;
    font-size: 15px;
}


/* FORM SIDE */

.alumni-form-area {
    padding: 40px;
}

.alumni-form-area h4 {
    margin-bottom: 25px;
    font-weight: 600;
}


/* FORM */

.alumni-form .form-group {
    margin-bottom: 18px;
}

.alumni-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.alumni-form .input-group {
    position: relative;
}

.alumni-form .input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d6efd;
}

.alumni-form input {
    width: 100%;
    padding: 10px 12px 10px 38px;
    border: 1px solid #d9dee6;
    border-radius: 6px;
}


/* BUTTON */

.alumni-btn {
    background: #0d6efd;
    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
}

.alumni-btn:hover {
    background: #084298;
}

.student-life-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
}


/* ---------- 1. CURRICULAR (GRADIENT BG) ---------- */

.curricular {
    background: linear-gradient(135deg, #eef5ff, #ffffff);
}

.curricular .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.curricular img {
    height: 200px;
    object-fit: cover;
}

.curricular .card-body {
    padding: 20px;
}


/* ---------- 2. CO-CURRICULAR (IMAGE LEFT RIGHT) ---------- */

.co-curricular .row {
    margin-bottom: 40px;
}

.co-curricular img {
    width: 100%;
    border-radius: 12px;
}

.co-curricular .content {
    padding: 20px;
}


/* ---------- 3. SPORTS (DARK SECTION) ---------- */

.sports {
    background: #0d1b2a;
    color: #fff;
}

.sports .sport-item {
    text-align: center;
    padding: 20px;
}

.sports img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}


/* ---------- 4. CULTURAL (GLASS EFFECT) ---------- */

.cultural {
    background: url('images/bg-pattern.jpg') center/cover no-repeat;
}

.cultural .glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cultural img {
    border-radius: 10px;
    margin-bottom: 10px;
}


/* ---------- 5. EDUCATIONAL EXPOSURE (TIMELINE STYLE) ---------- */

.education {
    background: #f8fafc;
}

.education .edu-item {
    /* display: flex; */
    margin-bottom: 30px;
}

.education .edu-item img {
    /* width: 120px; */
    border-radius: 10px;
    margin-right: 20px;
}

.education .edu-item h5 {
    margin-bottom: 5px;
}

.kaps-contact {
    padding: 60px 0;
    background: #f5f9ff;
}

.kaps-contact .contact-title {
    text-align: center;
    margin-bottom: 40px;
}

.kaps-contact .contact-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0d3b66;
}


/* Badge Card */

.kaps-contact .contact-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 20px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}


/* Background badge effect */

.kaps-contact .contact-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(13, 59, 102, 0.08);
    border-radius: 50%;
    top: -40px;
    left: -40px;
}


/* Icon top-left */

.kaps-contact .contact-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background: #0d3b66;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


/* Text center */

.kaps-contact .contact-details h5 {
    margin-top: 20px;
    font-weight: 600;
    color: #0d3b66;
}

.kaps-contact .contact-details p {
    margin: 0;
    color: #555;
}


/* Hover effect */

.kaps-contact .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.kaps-contact .map-section {
    margin-top: 50px;
}

.kaps-contact .map-section iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 10px;
}


/* Responsive */

@media (max-width: 991px) {
    html {
        scroll-padding-top: 0px !important;
    }
}

.result-section {
    padding: 60px 0;
}

.custom-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.custom-table thead {
    background: linear-gradient(45deg, #0d6efd, #3a86ff);
    color: #fff;
}

.custom-table th,
.custom-table td {
    text-align: center;
    padding: 10px;
    vertical-align: middle;
}

.custom-table tbody tr:hover {
    background: #f1f5ff;
    transition: 0.3s;
}

.title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #163a63;
    text-align: center;
}

.result-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/*Results Pop-up*/
.image-popup-modal{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.image-popup-modal.active{
    opacity: 1;
    visibility: visible;
}

.image-popup-modal .image-popup-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(5px);
}

.image-popup-modal .image-popup-box{
    position: relative;
    width: 90%;
    max-width: 700px;
    z-index: 2;
    animation: popupScale 0.4s ease;
}

.image-popup-modal .image-popup-img{
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.image-popup-modal .image-popup-close{
    position: absolute;
    top: -15px;
    right: -15px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.image-popup-modal .image-popup-close:hover{
    transform: rotate(90deg);
    background: #000;
    color: #fff;
}

@keyframes popupScale{
    from{
        transform: scale(0.7);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}