/* container spacing */

.header-top-section .container-fluid {
    padding: 0 100px;
}

.header-top-section {
    background: var(--theme);
}


@media (max-width:1199px) {
    .header-top-section .container-fluid {
        padding: 0 20px;
    }
}

/* hero section */

.hero-section {
    background: #f8fafc;
    padding: 50px 0;
}

.hero-text {
    max-width: 620px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #f0d527;
    line-height: 1.2;
}

.hero-title span {
    color: #026939;
}

.hero-desc {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

/* hero responsive */

@media (max-width:768px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 18px;
    }

}

/* button */

.theme-btn {
    background: var(--bs-green);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-block;
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* image circle */

.student-circle {
    position: relative;
    width: min(480px, 90vw);
    height: min(480px, 90vw);
    border-radius: 50%;
    margin: auto;
}

/* rotating dotted border */

.student-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px dashed #2b6ee9;
    animation: rotateCircle 12s linear infinite;
}

/* image */

.student-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border-radius: 50%;
    object-fit: cover;
}

/* animation */

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* mobile circle */

@media (max-width:576px) {

    .student-circle {
        width: 260px;
        height: 260px;
    }

}

/* heading */

.tab-heading {
    color: #7000fe;
    padding: 5px 0;
    font-weight: 600;
}

/* header */

@media (max-width:1199px) {
    .header-main {
        padding: 0;
    }
}

/* header container */

.header-1 .container-fluid {
    background: #fff;
}

@media (max-width:1199px) {
    .header-1 .container-fluid {
        padding: 0 20px;
    }

    .hero-section-3 {
        margin-top: 90px;
    }
}

/* spacing utilities */

.mrg5 {
    margin-right: 5px;
}

.mrgtbg10 {
    margin: 10px 0 10px;
}

/* sidebar icon */

.header-1.style-3 .sidebar__toggle {
    color: #000;
}

/* background section */

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 170px;
}

@media (max-width:1199px) {

    .main-logo {
        max-width: 227px;
    }

    .bg-cover {
        margin-top: 117px;
    }

}

/* logo */

.logo-color {
    border-radius: 10px;
    padding: 5px 10px;

}

/* login button */

.theme-btn-login {
    background: var(--bs-green);
    color: var(--white);
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 0;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 1;
    line-height: 1;
}

@media (max-width:480px) {

    .theme-btn-login {
        display: none;
    }

}

/* icons */

.icon-home {
    font-size: 50px;
    color: var(--theme);
}

/* about section */

.about-us-school {
    background: #fff;
    padding: 50px 0;
}

/* service card */

.service-card-items {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

/* text */

.f-4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #000;
}

.lh-lg {
    line-height: 4 !important;
}

/* social icons */

.contact-us-info .social-share {
    padding-top: 12px;
}

.social-share {
    margin: -10px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

/* footer icon */

.footericon-home {
    color: var(--theme);
}

/* categories */

.catagories-icon-items .icon {
    width: 108px;
    height: 108px;
    line-height: 125px;
    border-radius: 50%;
    background-color: #F3F6FF;
    margin: 0 auto;
}

/* section title */

.section-title {
    position: relative;
    z-index: 99;
    margin: 30px 0;
}

/* news */

.news-card-items .news-content .client-info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* section padding */

@media (max-width:991px) {

    .section-padding {
        padding: 40px 0;
    }

}


.news-card-items:hover {
    border-color: #22c55e;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.catagories-icon-items .icon {
    width: 108px;
    height: 108px;
    line-height: 125px;
    border-radius: 50%;
    background-color: #F3F6FF;
    margin: 0 auto;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* icon color */
.catagories-icon-items .icon i {
    font-size: 40px;
    color: #555;
    transition: all 0.3s ease;
}

/* hover effect */
.catagories-icon-items:hover .icon {
    border-color: #22c55e;
}

.catagories-icon-items:hover .icon i {
    color: #22c55e;
}

.catagories-icon-items:hover .icon {
    border-color: #22c55e;
    background: #ecfdf5;
}

.catagories-icon-items .content .arrow-icon {
    background: linear-gradient(90deg, #8cc52a 50%, #014d2a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-top: 15px;
}

.catagories-card-items .content .arrow-icon {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #22c55e;
    color: #22c55e;
    margin-top: 20px;
    transition: all 0.3s ease;
}

/* hover effect */
.catagories-card-items:hover .content .arrow-icon {
    border-color: #22c55e;
    color: #22c55e;
}

.catagories-card-items:hover .content .arrow-icon {
    border-color: #22c55e;
    color: #fff;
    background: #22c55e;
}

.section-title {
    position: relative;
    z-index: 99;
    /* margin-top: 20px; */
}

/* ================= LIGHTBOX ================= */
/* SECTION */
.custom-slider-section {
    padding: 50px;
    background: #fff;
}

/* SLIDER */
.custom-slider {
    overflow: hidden;
}

.slide-track {
    display: flex;
    gap: 20px;
}

/* EACH SLIDE */
.slide {
    min-width: calc(100% / 3);
    /* 👈 3 images desktop */
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.slide img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .slide {
        min-width: calc(100% / 2);
    }
}

@media (max-width: 480px) {
    .slide {
        min-width: 100%;
    }
}

/* ================= LIGHTBOX ================= */

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999999;
    justify-content: center;
    align-items: center;
}

#lightbox-img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
}

/* CLOSE */
.close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

/* ARROWS */
.prev,
.next {
    position: fixed;
    top: 50%;
    font-size: 60px;
    color: white;
    cursor: pointer;
    transform: translateY(-50%);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}


.marquee-container {
    width: 100%;
    height: 460px;
    /* 👈 adjust height */
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-track iframe {
    width: 100vw;
    /* 👈 full screen width */
    height: 450px;
    border: none;
    flex-shrink: 0;
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.admission-open-heading {
    font-size: 38px;
    line-height: 110%;
    font-weight: 700;
}

.registration-one_form-outer {
    position: relative;
    padding: 38px 45px;
    border-radius: 8px;
    background-color: #ffffff;
}

.single-contact-card {
    background-color: #f8f8f8;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.footer-widgets-wrapper {
    padding: 60px 0 0px;
    position: relative;
    z-index: 9;
}

.skewedOne {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 200%;
    height: 100%;
    background-color: #fff;
    transform: skewY(-15deg);
    transform-origin: top left;
}

.skewedTwo {
    position: absolute;
    bottom: -100%;
    right: 0;
    width: 200%;
    height: 100%;
    background-color: #fff;
    transform: skewY(15deg);
    transform-origin: top right;
}

.admission-open-heading {
    font-size: 25px;
    line-height: 110%;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 768px) {
    .admission-open-heading {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .admission-open-heading {
        font-size: 20px;
    }
}

/* Small Mobile 375px */
@media (max-width: 375px) {
    .admission-open-heading {
        font-size: 24px;
        line-height: 120%;
    }
}


.registration-one_form-outer {
    position: relative;
    padding: 38px 45px;
    border-radius: 8px;
    background-color: #ffffff;
}

/* Tablet */
@media (max-width: 768px) {
    .registration-one_form-outer {
        padding: 25px 25px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .registration-one_form-outer {
        padding: 20px 18px;
    }
}

/* Small Mobile 375px */
@media (max-width: 375px) {
    .registration-one_form-outer {
        padding: 15px 12px;
    }
}

.modern-hero {
    position: relative;
    height: 95vh;
    width: 100%;
    overflow: hidden;

    /* border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6); */

    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.3);
}

/* VIDEO */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

/* OVERLAY */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(120deg, rgb(0 0 0 / 33%), rgba(0, 0, 0, 0.15)); */
    z-index: 1;
}

/* CONTENT */

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 650px;
}

/* TITLE */

.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-title span {
    color: #ffffff;
}

/* SUBTITLE */

.hero-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-top: 15px;

    display: inline-block;

    padding: 8px 18px;
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);

    letter-spacing: 0.5px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* COMMON BUTTON */

.hero-btn {
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .4px;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

/* PRIMARY */

.hero-btn.primary {
    background: #106EEB;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    background: #2b7ce6;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

/* SECONDARY */

.hero-btn.secondary {
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
    backdrop-filter: blur(6px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, .2);
}

/* SHINE EFFECT */

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
    transform: skewX(-25deg);
}

.hero-btn:hover::before {
    animation: shine 1s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* MOBILE */

@media(max-width:768px) {

    .modern-hero {
        height: 70vh;
    }

    .hero-content {
        left: 5%;
        right: 5%;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

}

@media (max-width:768px) {

    /* ERP Login hide */

    .erp-login,
    .erp-btn,
    a[href*="erp"] {
        display: none !important;
    }

    /* Hero text hide */

    .hero-title,
    .hero-subtitle {
        display: none;
    }

    /* Hero buttons hide */

    .hero-buttons {
        display: none;
    }

}

@media(max-width:768px) {
    .desktop-only {
        display: none !important;
    }
}


.logo-color {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);

    border-radius: 16px;
    padding: 12px 26px;


    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);

    border: 1px solid rgba(255, 255, 255, 0.6);

    transition: all .35s ease;
}

.logo-color:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.22);
}

.logo-color img {
    height: 45px;
    transition: transform .3s ease;
}

.logo-color:hover img {
    transform: scale(1.05);
}

/* .slider-wrapper {
    padding: 20px 40px 40px 40px;


} */

.modern-hero {
    margin-top: 120px;
}

@media(max-width:768px) {

    .modern-hero {
        margin-top: 70px;
    }

    /* .slider-wrapper {
        padding: 10px 10px 10px 10px;


    } */

}

body {
    padding-top: 20px;
}

.modern-hero {
    height: 80vh;
    min-height: 500px;
}

@media(max-width:768px) {
    .modern-hero {
        height: 60vh;
        min-height: 400px;
    }
}

.hero-subtitle {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 17px;
    margin-bottom: 20px;
}

.hero-subtitle span {
    position: relative;
    padding-right: 18px;
}

.hero-subtitle span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: 0;
    color: #ffd84d;
}

.hero-subtitle {
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.header__hamburger {
    margin-left: 10px;
}

.sidebar__toggle {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 12px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

    cursor: pointer;

    transition: all .3s ease;
}

/* icon */

.sidebar__toggle i {
    font-size: 20px;
    color: #333;
}

/* hover */

.sidebar__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.sidebar__toggle {
    background: rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(8px);

    border-radius: 14px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.6);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);

    transition: all .3s ease;
}


.admission-marquee {
    width: 100%;
    overflow: hidden;

    background: #ffffff;

    border-top: 2px solid #106EEB;
    border-bottom: 2px solid #106EEB;

    padding: 12px 0;

    position: relative;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* gradient fade edges */

.admission-marquee::before,
.admission-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.admission-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.admission-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
    display: flex;
    gap: 80px;

    white-space: nowrap;

    animation: scrollTicker 20s linear infinite;
}

/* pause on hover */

.admission-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    display: flex;
    align-items: center;

    font-size: 26px;
    font-weight: 600;

    color: #0a0a2a;

    gap: 12px;

    transition: transform .3s ease;
}

/* hover animation */

.marquee-track span:hover {
    transform: scale(1.05);
}

/* icon */

.marquee-track i {
    color: #106EEB;
    font-size: 24px;

    animation: iconPulse 2s infinite;
}

/* scroll animation */

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* icon pulse */

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {

    .marquee-track {
        gap: 40px;
    }

    .marquee-track span {
        font-size: 16px;
    }

    .marquee-track i {
        font-size: 16px;
    }

}

.about-section-2{
background:linear-gradient(
135deg,
#f6f8ff,
#ffffff
);

position:relative;
overflow:hidden;
}

.about-section-2::before{
content:"";
position:absolute;

width:500px;
height:500px;

background:#ffc10761;

border-radius:50%;

top:-150px;
left:-150px;
}

.about-section-2::after{
content:"";
position:absolute;

width:400px;
height:400px;

background:#ffc10761;

border-radius:50%;

bottom:-120px;
right:-120px;
}

.about-section-2{
position:relative;
overflow:hidden;
}
.about-section-2::before,
.about-section-2::after{
z-index:0;
}
.hero-text{
position:relative;
z-index:2;
}
.student-circle{
position:relative;
z-index:2;
}

.hero-section{
position:relative;
overflow:hidden;
}

.heading-color{
    color:var(--theme);
}

.preloader{
position:fixed;
top:0;
left:0;

width:100%;
height:100vh;

display:flex;
align-items:center;
justify-content:center;

background:#ffffff;

z-index:9999;
}

/* inner content */

.animation-preloader{
text-align:center;
}

/* logo spacing */

.animation-preloader img{
margin-bottom:20px;
}

/* heading */

.animation-preloader h2{
font-size:32px;
font-weight:700;
}
.logo{
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
}
@media(max-width:768px){

.animation-preloader h2{
font-size:22px;
}

}

.preloader{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;

display:flex;
align-items:center;
justify-content:center;
flex-direction:column;

background:linear-gradient(135deg,#f5f7ff,#eef2ff);

z-index:9999;
}

.preloader .logo{
background:rgba(255,255,255,0.9);
padding:18px 35px;

border-radius:18px;

box-shadow:
0 15px 40px rgba(0,0,0,0.12),
inset 0 1px 0 rgba(255,255,255,0.6);

backdrop-filter:blur(8px);

margin-bottom:30px;

animation:logoFloat 3s ease-in-out infinite;
}
@keyframes logoFloat{

0%{transform:translateY(0px);}
50%{transform:translateY(-8px);}
100%{transform:translateY(0px);}

}
.loading-dots{
margin-top:20px;
display:flex;
gap:10px;
justify-content:center;
}

.loading-dots span{
width:10px;
height:10px;

background:#2b6ee9;

border-radius:50%;

animation:dotBounce 1.2s infinite ease-in-out;
}

.loading-dots span:nth-child(2){
animation-delay:.2s;
}

.loading-dots span:nth-child(3){
animation-delay:.4s;
}

@keyframes dotBounce{

0%,80%,100%{
transform:scale(0);
}

40%{
transform:scale(1);
}

}
@media(max-width:768px){

.heading-color{
font-size:22px;
}

.preloader .logo{
padding:14px 25px;
}

}