:root {
    --theme-color: #6da5dd;
    --theme-color-2: #351e8f;
    --theme-color-3: #333333;
    --theme-color-4: #8ebb4f;
    --theme-color-5: #EB981C;
    --theme-color-6: #c82c3a;
    --theme-text: var(--theme-text);
}

* {
    font-family: "Poppins", sans-serif;
    transition: all 0.5s;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

body,
p {
    line-height: 26px;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
}

section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
    animation: fadeInOut 10s ease forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
        display: none;
    }

    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        display: none;
    }
}

.animate-item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.active .animate-item {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll activated */
.slide-left {
    transform: translateX(-100px);
    transition: transform 1s ease;
}

.slide-right {
    transform: translateX(100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-left,
.scroll-animate.active .slide-right {
    transform: translateX(0);
}

.slide-up {
    transform: translateY(100px);
    transition: transform 1s ease;
}

.slide-down {
    transform: translateY(-100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-up,
.scroll-animate.active .slide-down {
    transform: translateY(0);
}

a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}


/* ================= TOP BAR ================= */
.top-bar {
    background-color: var(--theme-color-2);
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-item i {
    font-size: 15px;
    opacity: 0.9;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-icon {
    color: #ffffff;
    font-size: 16px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.top-icon:hover {
    background-color: #ffffff;
    color: var(--theme-color-2);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .top-bar-left {
        gap: 8px;
        font-size: 13px;
    }

    .top-item.ms-3 {
        margin-left: 0 !important;
    }
}

/* ================= TOP INFO BAR ================= */
.edu-top-info {
    background-color: #ffffff;
    border-bottom: 1px solid #e6e9f0;
    padding: 16px 0;
    font-family: 'Open Sans', sans-serif;
}


.edu-logo {
    height: 70px;
    max-width: 100%;
}


.edu-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    justify-content: end;
}


.edu-info-item i {
    font-size: 20px;
    color: var(--theme-color);
    line-height: 1;
    margin-top: 2px;
}


.edu-info-title {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--theme-color-3);
}

.edu-info-text {
    display: block;
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}


/* ================= MENU BAR ================= */
.edu-menu-bar {
    background: #ffffff;
    border-bottom: 1px solid #eef1f6;
    font-family: 'Poppins', sans-serif;
}

.edu-menu {
    list-style: none;
    display: flex;
    gap: 14px;
    padding: 16px 0;
    margin: 0;
}

.edu-menu a {
    color: var(--theme-color-3);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.edu-menu a:hover,
.edu-menu a.active {
    color: var(--theme-color);
}

/* Underline like Shelly */
.edu-menu a.active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 22px;
    height: 3px;
    background: var(--theme-color-5);
    border-radius: 2px;
}

/* Social icons */
.edu-social {
    display: flex;
    gap: 12px;
}

.edu-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.edu-social a:hover {
    background: var(--theme-color);
    color: #ffffff;
}

/* ================= STICKY ================= */
#eduMenuWrapper.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ================= BUTTOn ================= */
.btn-button {
    position: relative;
    background-color: var(--theme-color);
    color: #fff;
    display: inline-block;
    font-size: 15px;
    border-radius: 30px;
    padding: 13px 26px;
    text-transform: capitalize;
    font-weight: 400;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    z-index: 1;
    border: none;
}

.btn-button::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 100%;
    top: 0;
    left: -130%;
    background-color: var(--theme-color-2);
    transform: skewX(-25deg);
    transition: left .4s ease;
    z-index: -1;
}

.btn-button:hover::after {
    left: -10%;
}

.btn-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(53, 30, 143, 0.25);
}

.btn-sec.btn-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-sec.btn-flex.justify-space-around {
    justify-content: space-around;
}

/* ================= HERO ================= */

/* Banner */
section.hero-section {
    padding: 0;
}

.hero-section img {
    height: 760px;
    object-fit: cover;
}

.hero-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 40%;
    z-index: 1;
}

.hero-section .carousel-caption h2.banner-title {
    font-size: 65px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 20px;
    display: block;
}

.highlight {
    font-weight: inherit;
    color: transparent;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color));
    background-clip: text;
}

.hero-section .carousel-caption p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    color: #4e4e4e;
    width: 80%;
}

h5.banner-sub-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--theme-color-5);
}

section.hero-section .carousel-control-next-icon,
section.hero-section .carousel-control-prev-icon {
    background-color: var(--theme-color-5);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background-size: 30px;
    position: absolute;
}


/* Banner Animation */
.hero-anim-item {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.8s cubic-bezier(.2, .9, .2, 1), opacity 0.8s cubic-bezier(.2, .9, .2, 1);
    will-change: transform, opacity;
}

.hero-anim-show {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-anim-up {
    transform: translateY(100px);
}

.hero-anim-down {
    transform: translateY(-100px);
}

.hero-anim-left {
    transform: translateX(-100px);
}

.hero-anim-right {
    transform: translateX(100px);
}

.hero-anim-show.hero-anim-up,
.hero-anim-show.hero-anim-down,
.hero-anim-show.hero-anim-left,
.hero-anim-show.hero-anim-right {
    transform: translate(0, 0);
}

.carousel-item::after {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(255 255 255 / 92%) 31.2%, rgba(0, 9, 41, 0) 65.89%);
}

.carousel-item {
    position: relative;
    z-index: 1;
}


/* ================= FORM CARD ================= */
.enquiry-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.enquiry-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--theme-color-2);
}

.enquiry-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.form-control,
.form-select {
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.form-control:focus,
.form-control:focus-visible,
.form-control:active,
.form-select:focus,
.form-select:focus-visible,
.form-select:active {
    box-shadow: none;
}

/* Submit Button */
.edu-submit-btn {
    width: 100%;
    background: var(--theme-color);
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.edu-submit-btn:hover {
    background: var(--theme-color-2);
}

/* ================= FOOTER ================= */
.edu-footer {
    background: var(--theme-color-2);
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.footer-text.abt-ft-text {
    opacity: 0.9;
    font-size: 14px;
    text-align: justify;
}

.footer-actions {
    gap: 12px;
}

.footer-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #ffffff;
}

.footer-icon.whatsapp:hover {
    background: var(--theme-color-4);
    border-color: var(--theme-color-4);
}

.footer-bubble {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: #000;
    margin-top: 20px;
    padding: 20px;
    border-radius: 150px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {
    .edu-footer {
        text-align: center;
    }
}


/* About section */
.abt-left-img img {
    width: 325px;
    height: 213px;
    object-fit: cover;
    border-radius: 150px;
}

.abt-text-collage {
    background-color: var(--theme-color-5);
    position: relative;
    border-radius: 50px;
    border: 5px solid #fff;
    display: inline-flex;
    padding: 25px;
    z-index: 1;
    transform: translate(20%, 10%);
}

.abt-text-collage::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../image/shapes/circle-dotted.png);
    top: 0;
    left: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.abt-box {
    padding: 20px;
    text-align: center;
    color: #fff;
}

.abt-box-con {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 8px;
}

.abt-box-title {
    font-size: 12px;
    opacity: 0.7;
}

.abt-border-left {
    border-left: 1px solid rgb(255 255 255 / 30%);
}

.abt-border-bottom {
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.abt-right-img img {
    background: var(--theme-color-4);
    width: 280px;
    height: 470px;
    border-radius: 150px;
}

.abt-collage-img-section {
    display: flex;
    gap: 10px;
    justify-content: center;
}

h6.sub-title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--theme-color);
}

h2.title {
    font-size: 40px;
    margin-bottom: 10px;
}

.section-head {
    margin-bottom: 20px;
}

ul.list li.list-item {
    font-weight: 400;
    position: relative;
    list-style: none;
    padding-bottom: 15px;
    text-transform: capitalize;
}

ul.list li.list-item::before {
    content: '\F633';
    font-family: bootstrap-icons !important;
    font-weight: 900;
    position: absolute;
    left: -30px;
    top: 3px;
    color: #fff;
    background: var(--theme-color);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
    font-size: 12px;
}

ul.list li.list-item.ic-bg-1::before {
    background-color: var(--theme-color-2);
}

ul.list li.list-item.ic-bg-2::before {
    background-color: var(--theme-color-4);
}

ul.list li.list-item.ic-bg-3::before {
    background-color: var(--theme-color-5);
}

ul.list li.list-item.ic-bg-4::before {
    background-color: var(--theme-color-6);
}

ul.list.inline-list li {
    display: inline-block;
    margin-right: 40px;
}

.call-icon {
    background: var(--theme-color-2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    margin-right: 10px;
}

.call-box {
    display: flex;
}

.call-contact {
    flex: 1;
}

.call-title {
    font-size: 14px;
    color: var(--theme-text);
}

.call-number {
    color: var(--theme-color-2);
    font-size: 20px;
    font-weight: 600;
}

p.text {
    color: var(--theme-text);
}

.why-choose-icon {
    width: 100px;
    height: 100px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 44px;
    color: #fff;
}

.why-choose-icon {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 25%;
}

.why-choose-icon span {
    color: inherit;
    font-size: inherit;
}

.why-choose-content {
    flex: 1;
    background-image: url(../image/juju-img.jpg);
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid var(--theme-color);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-left: 60px;
    margin-left: 50px;
    height: 100%;
    cursor: pointer;
    box-shadow: 0px 0 10px rgb(0 0 0 / 10%);
}

.why-choose-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f3f7fb;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.5s;
}

.why-choose-card {
    position: relative;
    height: 100%;
}

h5.title {
    margin-bottom: 10px;
}

.why-choose-content p {
    padding-left: 15px;
    font-size: 14px;
    line-height: normal;
}

.why-choose-content ul.list li.list-item {
    font-size: 13px;
    padding-bottom: 5px;
}

.why-choose-content ul.list li.list-item::before {
    width: 16px;
    height: 17px;
    left: -20px;
}

.why-choose-card:hover .why-choose-content {
    color: #fff;
}

.why-choose-card:hover .why-choose-content::before {
    background-color: #f3f7fbd1;
}

.why-choose-card.clo-1 .why-choose-icon {
    background-color: var(--theme-color-2);
}

.why-choose-card.clo-1 .why-choose-content {
    border-color: var(--theme-color-2);
}

.why-choose-card.clo-1:hover .why-choose-content::before {
    background-color: var(--theme-color-2);
    opacity: 0.8;
}

.why-choose-card.clo-2 .why-choose-icon {
    background-color: var(--theme-color-4);
}

.why-choose-card.clo-2 .why-choose-content {
    border-color: var(--theme-color-4);
}

.why-choose-card.clo-2:hover .why-choose-content::before {
    background-color: var(--theme-color-4);
    opacity: 0.8;
}

.why-choose-card.clo-3 .why-choose-icon {
    background-color: var(--theme-color-5);
}

.why-choose-card.clo-3 .why-choose-content {
    border-color: var(--theme-color-5);
}

.why-choose-card.clo-3:hover .why-choose-content::before {
    background-color: var(--theme-color-5);
    opacity: 0.8;
}

.why-choose-card.clo-4 .why-choose-icon {
    background-color: var(--theme-color-6);
}

.why-choose-card.clo-4 .why-choose-content {
    border-color: var(--theme-color-6);
}

.why-choose-card.clo-4:hover .why-choose-content::before {
    background-color: var(--theme-color-6);
    opacity: 0.8;
}

.why-choose-card.clo-5 .why-choose-icon {
    background-color: var(--theme-color);
}

.why-choose-card.clo-5 .why-choose-content {
    border-color: var(--theme-color);
}

.why-choose-card.clo-5:hover .why-choose-content::before {
    background-color: var(--theme-color);
    opacity: 0.8;
}

.why-choose-card.clo-6 .why-choose-icon {
    background-color: var(--theme-color-4);
}

.why-choose-card.clo-6 .why-choose-content {
    border-color: var(--theme-color-4);
}

.why-choose-card.clo-6:hover .why-choose-content::before {
    background-color: var(--theme-color-4);
    opacity: 0.8;
}

.why-choose-card.clo-6 li.list-item::before {
    background-color: var(--theme-color-4);
}


section.why-choose-section {
    background-image: url(../image/bg/shape-02.png);
}

section.why-choose-section {
    background-image: url(../image/bg/shape-02.png);
    background-size: contain;
    background-color: #f9f9f9;
}

/* Programs */
section.our-programs-section {
    background-color: #8962F5;
}

section.our-programs-section::before {
    content: '';
    position: absolute;
    background-image: url(../image/bg/bg-pattern.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: contain;
}

.program-card {
    background-color: #fff;
    position: relative;
    padding: 60px 30px 30px;
    border-radius: 150px;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    transition: all 0.5s;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-card::before {
    content: '';
    position: absolute;
    background-image: url(../image/shapes/circle-dot.png);
    background-position: center;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    left: 5%;
    bottom: 10%;
    opacity: 0.4;
}

.program-card::after {
    content: '';
    position: absolute;
    background-image: url(../image/shapes/sqaure-dotted.png);
    background-position: center;
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    right: 10%;
    top: 4%;
    opacity: 0.4;
}

.program-icon {
    background: #8962F5;
    width: 180px;
    height: 180px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 20px;
}

.program-icon span {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

h4.program-title {
    font-size: 18px;
}

h4.program-title span.highlight {
    display: block;
}

.pro-sub-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--theme-color-5);
}

p.program-text {
    font-size: 14px;
    line-height: 1.4;
    text-wrap-style: pretty;
    margin-top: 10px;
    color: var(--theme-text) !important;
}

.program-icon.bg-l1 {
    background-color: var(--theme-color);
}

.program-icon.bg-l2 {
    background-color: var(--theme-color-4);
}

.program-icon.bg-l3 {
    background-color: var(--theme-color-5);
}

.program-icon.bg-l5 {
    background-color: var(--theme-color-6);
}

section.section-text-white h6.sub-title,
section.section-text-white .section-head .highlight {
    color: #ffb936;
}

section.section-text-white h2.title,
section.section-text-white p {
    color: #fff;
}

.row.custom-row {
    justify-content: space-around;
}

.row.custom-row .col-md-3 {
    width: 20%;
}

.program-card.top-down {
    margin-top: 50px;
}


section.curriculum-section,
.bg-color {
    background-image: url(../image/bg/bg-gradient-image.jpg);
    background-position: center;
    background-size: cover;
}

/* section.curriculum-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: transparent;
    background-image: linear-gradient(180deg, #8962F5 0%, #A7A7A714 35%);
} */

.curriculum-card {
    position: relative;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease;
    padding: 20px;
    height: 100%;
}

.curriculum-card:hover,
.curriculum-card.active {
    background: rgba(255, 255, 255, 0.15);
}

.curriculum-card.active:hover {
    background: rgba(255, 255, 255);
}

.curriculum-icon img {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    object-fit: contain;
}

h4.curriculum-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.curriculum-icon span {
    font-size: 80px;
    margin-bottom: 20px;
}

.color-1 {
    color: var(--theme-color);
}

.color-2 {
    color: var(--theme-color-2);
}

.color-3 {
    color: var(--theme-color-3);
}

.color-4 {
    color: var(--theme-color-4);
}

.color-5 {
    color: var(--theme-color-5);
}

.color-6 {
    color: var(--theme-color-6);
}

/* Gallery */

.learning-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    grid-auto-flow: dense;
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f3f3f3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .6s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .12);
    opacity: 0;
    transition: opacity .4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item.big {
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 3;
}

.gallery-item.wide {
    grid-column: span 2;
}

@media (max-width: 991px) {
    .learning-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 20px;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 575px) {
    .learning-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }

    .gallery-item,
    .gallery-item.big,
    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item img {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

img.gallery-shape-img {
    position: absolute;
    top: 5%;
    right: 10px;
    width: 150px;
    z-index: -1;
}

/* Testimonial */
.testimonial-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 100%;
    margin-bottom: 10px;
}

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

.testimonial-card {
    background: transparent;
    padding: 60px;
    margin: 15px;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 10px;
    border-radius: 150px;
    height: 100%;
}

.testimonial-user-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-color-2);
}

.testimonial-area {
    padding: 20px;
    border-radius: 20px;
    background: url(../image/bg/lined_paper.png) repeat top center;
    border: 2px dashed #cecece;
    overflow: hidden;
}

.slick-prev::before,
.slick-next::before {
    color: #fff !important;
    font-size: 28px !important;
}

section.testimonial-section .slick-prev,
section.testimonial-section .slick-next {
    color: #fff;
    z-index: 99;
    transition: all ease-in-out 0.2s;
    padding: 10px !important;
    box-shadow: 6px 6px 0px rgb(103 102 102 / 20%);
    background: var(--theme-color-6);
    width: 48px;
    height: 42px;
}

section.testimonial-section .slick-next {
    border-radius: 50% 0% 0% 50%;
}

section.testimonial-section .slick-prev {
    border-radius: 0% 50% 50% 0%;
}


/* cta section */
.cta-img-section {
    width: 100%;
    position: relative;
}

img.cta-img-main {
    width: 400px;
    height: 468px;
    object-fit: contain;
}

section.cta-banner-section {
    padding-bottom: 0;
}

section.cta-banner-section::before {
    content: '';
    background: var(--theme-color-5);
    width: 100%;
    height: 80%;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

section.cta-banner-section::after {
    content: "";
    width: 400px;
    height: 300px;
    background-image: url(../image/shapes/arrow-img.png);
    bottom: 3px;
    right: 0;
    position: absolute;
    background-repeat: no-repeat;
    z-index: -1;
    background-size: contain;
    opacity: 0.1;
}

.row.justify-between {
    justify-content: space-around;
    align-items: center;
}

section.cta-banner-section h6.sub-title,
section.cta-banner-section span.highlight {
    color: var(--theme-color-2);
}

section.cta-banner-section h2.title {
    color: #fff;
}

.call-wave {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 2em 0;
}

.call-wave-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    position: relative;
    z-index: 2;
    transition: transform .3s ease;
}

.ani-waves {
    position: relative;
}

.call-wave-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(109, 165, 221, 0.35);
    animation: callWave 3s infinite;
    top: 0px;
}

.call-wave-ring:nth-child(1) {
    animation-delay: 0s;
}

.call-wave-ring:nth-child(2) {
    animation-delay: 1s;
}

.call-wave-ring:nth-child(3) {
    animation-delay: 2s;
}

.call-wave:hover .call-wave-icon {
    transform: scale(0.7);
}

.call-wave:hover .call-wave-ring {
    background: rgba(53, 30, 143, 0.4);
}

@keyframes callWave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.call-wave-content {
    display: flex;
    flex-direction: column;
}

.cl-wv-title {
    font-size: 14px;
    color: #ffffff;
}

.cl-wv-number {
    font-size: 30px;
    font-weight: 600;
    color: var(--theme-color-2);
    text-decoration: none;
    margin-top: 10px;
}

img.cta-img-shape-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

img.cta-img-shape-2 {
    position: absolute;
    right: 0;
    top: 20%;
    z-index: -1;
}

section.gallery-section {
    background-image: url(../image/bg/bg-pattern.png);
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: normal;
}

.contact-social a:hover {
    background: var(--theme-color);
    color: #ffffff;
}


footer.main-footer {
    background: var(--theme-color-2);
    padding-top: 60px;
    padding-bottom: 20px;
}

img.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

h4.footer-heading {
    font-size: 20px;
    margin-bottom: 22px;
}

ul.footer-links {
    padding-left: 15px;
    list-style: none;
}

ul.footer-links li {
    font-size: 16px;
    margin-bottom: 10px;
}

ul.footer-links li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: start;
    gap: 12px;
}


/* breadcrumb */
section.breadcrumb-section {
    padding: 80px 0;
}

h1.breadcrumb-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb-content {
    text-align: center;
}

section.breadcrumb-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../image/bg/bg-gradient-image.jpg);
    top: 0;
    left: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
}

nav.breadcrumb-nav a {
    color: var(--theme-color-2);
}

.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    border: none;
}

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

.dropdown-item.active {
    color: var(--theme-color-2);
    font-weight: 600;
}

.has-dropdown>.nav-link {
    position: relative;
}

.has-dropdown>.nav-link::after {
    content: "\f282";
    font-family: "Bootstrap-icons";
    font-size: 12px;
    margin-left: 6px;
    display: inline-block;
    transition: transform .25s ease;
}

.has-dropdown:hover>.nav-link::after {
    transform: rotate(180deg);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #fff;
}

.has-dropdown .dropdown-menu li {
    margin-bottom: 10px;
}

img.page-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

section.our-programs-section.our-programs-page .program-card {
    display: flex;
    align-items: start;
    text-align: start;
    padding: 40px;
}

section.our-programs-section.our-programs-page .program-icon {
    margin: 0;
    margin-right: 20px;
}

section.our-programs-section.our-programs-page .program-card.top-down {
    margin-top: 0;
}

.program-body {
    flex: 1;
}


.learning-timings .timing-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.learning-timings .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

.learning-timings .bg-theme {
    background: var(--theme-color);
}

.learning-timings .bg-theme-2 {
    background: var(--theme-color-2);
}

.learning-timings .time {
    font-weight: 600;
    color: var(--theme-color-2);
    margin: 10px 0;
}

.learning-timings .desc {
    color: #555;
}

.learning-timings .benefits-box {
    background: #f9fbff;
    padding: 35px;
    border-radius: 16px;
}

.learning-timings .benefits-box i {
    color: var(--theme-color-4);
}

.learning-timings .philosophy-box {
    background: linear-gradient(135deg, #f3f6ff, #ffffff);
    padding: 40px;
    border-radius: 18px;
}

/* ===============================
   CURRICULUM – COMMON
================================ */
.our-curriculum-page .page-img {
    width: 100%;
    border-radius: 20px;
}

/* ===============================
   CURRICULUM PILLARS
================================ */
.curriculum-pillars {
    background: #ffffff;
}

.pillar-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.pillar-card::before {
    content: "";
    position: absolute;
    background-image: url(../image/shapes/circle-dot.png);
    width: 70px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    left: 5%;
    bottom: 10%;
    opacity: 0.2;
    background-position: center center;
}

.pillar-card::after {
    content: "";
    position: absolute;
    background-image: url(../image/shapes/sqaure-dotted.png);
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    right: 10%;
    top: 4%;
    opacity: 0.2;
    background-position: center center;
}

.pillar-card i {
    font-size: 45px;
    color: var(--theme-color);
    margin-bottom: 15px;
    display: block;
}

.pillar-card h5 {
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 15px;
    color: #666;
}

.pillar-card:hover {
    transform: translateY(-8px);
}

/* ===============================
   CORE LEARNING AREAS
================================ */
.core-learning-areas {
    background: #f8f9ff;
}

.learning-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.learning-card h5 {
    color: var(--theme-color-2);
    margin-bottom: 15px;
}

.learning-card ul {
    padding-left: 18px;
}

.learning-card ul li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #555;
}

/* ===============================
   ASSESSMENT APPROACH
================================ */
.assessment-approach {
    background: #ffffff;
}

.assessment-list {
    list-style: none;
    padding: 0;
}

.assessment-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 16px;
}

.assessment-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-color-4);
    font-weight: bold;
}

.assessment-highlight {
    background: #f3f6ff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.assessment-highlight p {
    font-weight: 600;
    color: var(--theme-color-2);
    margin-bottom: 0px;
}

/* ===============================
   TRANSITION SECTION
================================ */
.transition-section {
    background: #f8f9ff;
}

.school-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.school-list span {
    background: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    color: var(--theme-color-2);
}

/* ===============================
   CLOSING SECTION
================================ */

.bg-shapes-icons {
    background-image: url(../image/bg/shape-02.png);
    background-size: contain;
    background-position: center;
    background-color: #d5d5d5;
}

.curriculum-closing .title {
    font-size: 36px;
}

.curriculum-closing p {
    max-width: 800px;
    margin: 15px auto 0;
    font-size: 17px;
    color: #555;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .section-head .title {
        font-size: 28px;
    }

    .pillar-card,
    .learning-card {
        padding: 25px;
    }

    .curriculum-closing .title {
        font-size: 30px;
    }
}


/* ===============================
   CONTACT PAGE
================================ */
.contact-page {
    background: #ffffff;
}

.contact-info-box,
.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.contact-info-box p {
    color: #555;
    margin-bottom: 15px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-details i {
    color: var(--theme-color);
    margin-right: 8px;
}

.contact-form-box h4 {
    color: var(--theme-color-2);
}

.contact-form-box .form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.contact-form-box textarea.form-control {
    height: auto;
}

.contact-btn {
    background: var(--theme-color-2);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
}

.contact-btn:hover {
    background: var(--theme-color);
    color: #fff;
}

/* ===============================
   SUPPORT SECTION
================================ */
.support-box {
    background-color: #eef3ff;
    background-image: url(../image/bg/bg-pattern.png);
    padding: 50px 30px;
    border-radius: 24px;
}

.support-box .assessment-highlight p {
    color: #fff;
}

.support-box .assessment-highlight {
    background: var(--theme-color-5);
}

.support-box h3 {
    color: var(--theme-color-2);
}

.support-box p {
    font-size: 16px;
    color: #555;
}

.brand-line {
    margin-top: 20px;
    font-size: 15px;
    color: #333;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .contact-info-box,
    .contact-form-box {
        padding: 25px;
    }
}

.bg-shapes {
    background-image: url(../image/bg/bg-pattern.png);
}

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

/* ===============================
   NEW GALLERY GRID
================================ */
.gallery-section-new {
    background: #f8f9ff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.15));
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay h5 {
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 14px;
    margin-bottom: 6px;
    opacity: 0.9;
}

.gallery-overlay .views {
    font-size: 13px;
    opacity: 0.85;
}

/* Hover */
.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-card img {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.location-contact-card {
    border-radius: 15px;
    overflow: hidden;
}

section.bg-shape {
    background-image: url(../image/bg/shape-02.png);
    background-size: contain;
    background-color: #f9f9f9;
}

p.text.big-text {
    font-size: 24px;
    line-height: 1.5;
}

.image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image:hover img {
    transform: scale(1.05);
}

.image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.0) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.image:hover::before {
    animation: flashMove 0.8s ease;
}

@keyframes flashMove {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.image:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.chairman-image {
    height: 520px;
}

.chairman-image img {
    object-position: top;
}

.chairman-card {
    width: 200px;
    height: 200px;
    background: var(--theme-color-5);
    border-radius: 15px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    position: relative;
    z-index: 1;
    border: 5px solid #fff;
    text-align: center;
    transform: translate(-50%, -10%);
}

.big-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.title-number {
    font-size: 14px;
}

.chairman-card::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    background: transparent;
    z-index: -1;
    border-radius: 100%;
    border: 18px solid #ffba38;
}

.chairman-focus-area {
    position: relative;
    display: flex;
    align-items: end;
}

img.collaborations-img {
    width: auto;
    height: auto;
}

section.dark-section {
    background-color: #101828;
    color: #fff;
}

section.dark-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../image/bg/dark-section-bg-shape.png);
    z-index: -1;
}

section.collaborations {
    padding-bottom: 0;
}

.cc-icon img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 15px;
    padding: 5px;
    margin-bottom: 2em;
}

.certification-card {
    background-color: var(--theme-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    border-radius: 50px;
    color: #fff;
}

span.next-line {
    display: block;
}

.certification-card.top-down {
    margin-top: 2em;
}

.down-certificate-area {
    background-color: #ECECEC;
    padding: 150px 50px 50px 50px;
    text-align: center;
    border-radius: 50px;
}

.top-certificate-area {
    transform: translateY(25%);
}

.certification-card.cc-1 {
    background: #8962F5;
}

.certification-card.cc-2 {
    background: #21A9B7;
}

.certification-card.cc-3 {
    background: #EB981C;
}

.divider {
    text-align: center;
    padding-block-start: 15px;
    padding-block-end: 15px;
    width: 70%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--theme-color-5);
    left: 0;
    top: 50%;
    z-index: -1;
}

span.divider-text {
    background-color: #ECECEC;
    padding: 0px 10px;
    color: var(--theme-color-5);
    font-weight: 500;
    text-transform: uppercase;
}

.affiliations-logos-area img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.affiliations-logos-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.bg-1 {
    background-color: #afdaff;
}

.bg-2 {
    background-color: #d8ff90;
}

.bg-3 {
    background-color: #ffca67;
}

.bg-4 {
    background-color: #d2bbff;
}

section.about-page-1 {
    background-color: #ECECEC;
}


.vis-mis-card {
    position: relative;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
    border-radius: 20px;
    padding: 50px 30px;
    height: 100%;
}

.vis-mis-card.vm-1 {
    background: url(../image/shapes/box-bg-image.png), linear-gradient(321deg, #edfefc 1.2%, #fef7ec 98.98%);
    background-repeat: no-repeat;
    background-position: top right;
}

.vis-mis-card.vm-2 {
    background-image: url(../image/shapes/item-bg-image.png);
    background-color: var(--theme-color-5);
    color: #fff;
}

.vis-mis-card.vm-3 {
    background-image: url(../image/shapes/item-bg-image.png);
    background-color: #125875;
    color: #fff;
}

ul.sparks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    margin: 50px 0 0;
    padding: 0;
}

ul.sparks-list li {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    border: 1px solid #1018281a;
    border-radius: 100px;
    padding: 6px 15px 6px 36px;
}

ul.sparks-list li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../image/shapes/icon-spark.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 12px;
    height: 12px;
}

.qi-icon {
    width: 80px;
    height: 80px;
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    font-size: 40px;
    margin-right: 15px;
}

.quality-item {
    display: flex;
    background: #85a0d938;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.qi-body {
    flex: 1;
}


.academic-section-2 .academic-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.primary-block {
    border-left: 6px solid var(--theme-color-5);
}

.secondary-block {
    border-left: 6px solid var(--theme-color-2);
}

.senior-block {
    border-left: 6px solid var(--theme-color-4);
}

.academic-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.academic-level {
    font-weight: 600;
    color: #666;
    display: block;
    margin-bottom: 15px;
}

.focus-title {
    margin-top: 25px;
    font-weight: 600;
}

.academic-list {
    list-style: none;
    padding-left: 0;
}

.academic-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.academic-list i {
    color: #ff9800;
    margin-top: 4px;
}

.admission-content-section .admission-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.admission-content-section .admission-card i {
    font-size: 32px;
    color: #ff9800;
    margin-bottom: 12px;
    display: inline-block;
}

.content-title {
    font-weight: 700;
    margin-bottom: 10px;
}

img.girl-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.admission-procedure-section .procedure-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.admission-procedure-section .procedure-card i {
    font-size: 34px;
    color: #ff9800;
    margin-bottom: 12px;
    display: inline-block;
}

.admission-procedure-section h4 {
    font-weight: 700;
}

.faq-section {
    background: #f8fbf5;
    padding: 80px 0;
}

.faq-image-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.faq-cta {
    background: #355c7d;
    padding: 0px 30px 30px;
    color: #fff;
}

.faq-mail-btn {
    display: block;
    background: var(--theme-color-6);
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transform: translateY(-50%);
}

.faq-bottom h4 {
    font-weight: 700;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
}

.accordion-body {
    background: #fff;
    padding: 20px;
}


.facility-card {
    padding: 35px 35px 0px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.light-card {
    background: #fbf8ef;
}

.dark-card {
    background: #355c7d;
}

.facility-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.dark-card .facility-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.facility-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.facility-desc {
    font-size: 15px;
    margin-bottom: 20px;
}

.facility-list {
    padding-left: 18px;
    font-size: 14px;
}

.facility-list li {
    margin-bottom: 8px;
}

.facility-illustration {
    margin-top: 25px;
    text-align: center;
}

.facility-illustration img {
    max-width: 100%;
    height: auto;
}

/* Section Heading */
.career-benefits-section .section-head h2 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Card Base */
.career-benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 22px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Soft gradient hover overlay */
.career-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.08), rgba(13, 110, 253, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Icon */
.career-benefit-card i {
    font-size: 38px;
    color: var(--theme-color-5);
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Title */
.career-benefit-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

/* Text */
.career-benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Hover Effects */
.career-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.career-benefit-card:hover::before {
    opacity: 1;
}

.career-benefit-card:hover i {
    transform: scale(1.15) rotate(5deg);
    color: var(--theme-color);
}

.career-benefit-card:hover h5 {
    color: var(--theme-color);
}

.news-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.news-item i {
    font-size: 32px;
    color: #0d6efd;
    margin-bottom: 12px;
    display: inline-block;
}

.news-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

img.image-frame-main {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

img.image-frame-mini {
    width: 300px;
    height: auto;
    border-radius: 10px;
    border: 10px solid #fff;
    transform: translate(-50%, -10px);
}

.image-frame-sec {
    display: flex;
    align-items: end;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.career-icon {
    width: 60px;
    height: 60px;
    background-color: var(--theme-color-2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 10px;
}

.career-opening-card {
    background: #e9f6fa;
    padding: 10px;
    border-radius: 10px;
}


.apply-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.apply-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--theme-color);
}

.apply-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.step-number.bg-1 {
    color: var(--theme-color);
}

.step-number.bg-2 {
    color: var(--theme-color-4);
}

.step-number.bg-3 {
    color: var(--theme-color-5);
}

.step-number.bg-4 {
    color: var(--theme-color-2);
}

.step-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.step-content h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    margin: 0;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .apply-timeline::before {
        left: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

.bg-color-1 {
    background-color: #ECECEC;
}

.art-card {
    height: 190px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.art-card i {
    font-size: 40px;
    margin-bottom: 14px;
}

.art-card:hover {
    transform: translateY(-10px) scale(1.01);
}

.color-1 {
    background: linear-gradient(135deg, rgba(109, 165, 221, 0.25), rgba(53, 30, 143, 0.25));
}

.color-2 {
    background: linear-gradient(135deg, rgba(142, 187, 79, 0.25), rgba(109, 165, 221, 0.25));
}

.color-3 {
    background: linear-gradient(135deg, rgba(235, 152, 28, 0.25), rgba(53, 30, 143, 0.25));
}

.color-4 {
    background: linear-gradient(135deg, rgba(53, 30, 143, 0.25), rgba(200, 44, 58, 0.25));
}

.color-5 {
    background: linear-gradient(135deg, rgba(200, 44, 58, 0.25), rgba(235, 152, 28, 0.25));
}

.color-6 {
    background: linear-gradient(135deg, rgba(142, 187, 79, 0.25), rgba(51, 51, 51, 0.25));
}


.final-text {
    font-size: 17px;
    color: var(--theme-color-3);
    line-height: 1.8;
}

.lead-card {
    border-radius: 18px;
    padding: 0px 28px 22px;
    height: 100%;
    text-align: center;
    background: #ffffff;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.lead-card i {
    font-size: 38px;
    color: var(--theme-color-2);
    display: flex;
    border: 10px solid #fff;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transform: translate(0%, -25%);
    margin: 0 auto;
}

.lead-card h5 {
    font-weight: 600;
    color: var(--theme-color-3);
    margin-bottom: 10px;
}

.lead-card p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.lead-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.final-text {
    font-size: 17px;
    color: var(--theme-color-3);
    line-height: 1.8;
}


.impact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 26px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.impact-card.wide {
    align-items: center;
}

.impact-card .impact-icon {
    font-size: 43px;
    color: var(--theme-color-2);
    flex-shrink: 0;
}

.impact-content h5 {
    font-weight: 600;
    color: var(--theme-color-3);
    margin-bottom: 6px;
}

.impact-content p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.final-text {
    font-size: 17px;
    color: var(--theme-color-3);
    line-height: 1.8;
}


h6.sub-title span {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 0;
    display: inline;
}

.tour-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    margin-bottom: 2em;
}

.tour-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.tour-icon span {
    font-size: 34px;
}

.tour-body h5 {
    font-weight: 600;
    color: var(--theme-color-3);
    margin-bottom: 6px;
}

.tour-body p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.final-text {
    font-size: 17px;
    color: var(--theme-color-3);
    line-height: 1.8;
}

img.page-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}




.sports-games-section {
    background: #fafaf2;
}

.sports-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    text-align: left;
}

.sports-img {
    height: 190px;
    overflow: hidden;
}

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

.sports-card h5 {
    padding: 16px 18px 20px;
    font-weight: 600;
    color: var(--theme-color-3);
    font-size: 20px;
    line-height: 1.5;
}

.sports-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.sports-day-box {
    margin-top: 30px;
    padding: 36px 34px;
    background: linear-gradient(135deg, rgba(109, 165, 221, 0.08), rgba(142, 187, 79, 0.08));
    border-radius: 26px;
}

.sports-day-box h4 {
    font-weight: 700;
    color: var(--theme-color-2);
    margin-bottom: 14px;
}

.sports-day-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
}


.house-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 26px;
    text-align: center;
    height: 100%;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.house-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

.house-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.house-icon span {
    font-size: 34px;
}

.house-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.house-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
}

.luna {
    background: linear-gradient(135deg, #f7c948, #f4a261);
}

.luna .house-icon {
    color: #f4a261;
}

.aurora {
    background: linear-gradient(135deg, #6fbf73, #4caf50);
}

.aurora .house-icon {
    color: #4caf50;
}

.zephyr {
    background: linear-gradient(135deg, #6da5dd, #3f7fbf);
}

.zephyr .house-icon {
    color: #3f7fbf;
}

.nimbus {
    background: linear-gradient(135deg, #e63946, #c1121f);
}

.nimbus .house-icon {
    color: #c1121f;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.team-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    margin-bottom: 18px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    font-size: 16px;
    color: #444444;
    transition: all 0.35s ease;
}

.team-list li span {
    font-size: 28px;
    color: var(--theme-color-4);
    flex-shrink: 0;
}

.team-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.final-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--theme-color-3);
}

.team-spirit-section {
    background-color: #efffe8;
    margin-top: 3em;
    border-radius: 15px;
    padding: 20px;
}




.career-counselling-section {
    background: linear-gradient(135deg, rgba(109,165,221,0.06), rgba(142,187,79,0.06));
}

.career-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 30px;
    height: 100%;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.career-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color-2));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.career-icon span {
    font-size: 30px;
}

.career-box h4 {
    font-weight: 700;
    color: var(--theme-color-3);
    margin-bottom: 12px;
}

.career-box p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #444444;
}

.career-list {
    padding-left: 18px;
    margin: 12px 0 16px;
}

.career-list li {
    margin-bottom: 8px;
    font-size: 15.5px;
    color: #444444;
}

.career-highlight {
    margin-top: 40px;
    padding: 40px 36px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(235,152,28,0.08), rgba(53,30,143,0.08));
}

.career-highlight h4 {
    font-weight: 700;
    color: var(--theme-color-2);
}

.career-highlight p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #444444;
}
