/* 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;
    }

    .single-contact-card .top-part .icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
        border-radius: 50%;
        background-color: #fff;
        text-align: center;
        float: left;
        color: var(--theme);
        overflow: hidden;
        margin-right: 20px;
        transition: all 0.4s ease-in-out;
    }

    .custom-slider-section {
        padding: 10px;
        background: #fff;
    }

    .header-1 .container-fluid {
        background: #0d6efd;
    }
}

/* 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: var(--theme);
    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 #0d6efd;
    transition: all 0.3s ease;
}

.catagories-icon-items .icon:hover {

    border: 2px solid #d2d8e0;

}

/* 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: var(--theme);
    ;
}

.catagories-icon-items:hover .icon i {
    color: var(--theme);
    ;
}

.catagories-icon-items:hover .icon {
    border-color: var(--theme);
    background: #ecfdf5;
}

.catagories-icon-items .content .arrow-icon {
    background: var(--theme);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-top: 15px;
}

.catagories-card1-items .content .arrow-icon {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--theme);
    ;
    color: var(--theme);
    ;
    margin-top: 20px;
    transition: all 0.3s ease;
}

/* hover effect */
.catagories-card1-items:hover .content .arrow-icon {
    border-color: var(--theme);
    color: var(--theme);
}

.catagories-card1-items:hover .content .arrow-icon {
    border-color: var(--theme);
    color: #fff;
    background: var(--theme);
}

.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: 320px;
    /* 👈 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: rgb(255 255 255);
    backdrop-filter: blur(10px);

    border-radius: 16px;
    padding: 12px 14px;


    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: 26px;
        text-align: center;
        line-height: 30px;
    }
}

.preloader .logo {
    padding: 14px 25px;
}



.faq-card {
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}


.faq-wrapper .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-left: 32px;
    padding-top: 15px;
    padding-right: 40px;
    color: var(--text);
    background-color: var(--white);
    padding-bottom: 28px;
}

.faq-wrapper .faq-image-2 .faq-img {
    max-width: 100%;
    position: relative;
}

.faq-section {
    position: relative;
    background: #f6f9ff;
    overflow: hidden;
}

/* wave background */

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('https://svgshare.com/i/15pT.svg');
    background-size: cover;
    opacity: .25;
}

/* play button */

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ff6b35;
    color: #fff;
    border: none;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: .4s;
}

.video-btn:hover {
    background: #00b67a;
    transform: translate(-50%, -50%) scale(1.1);
}

/* popup video */

#videoPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#videoPopup video {
    width: 70%;
    border-radius: 10px;
}

.close-video {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

#videoPopup video {
    width: 70%;
    max-width: 900px;
    border-radius: 10px;
}

/* mobile fix */

@media (max-width:768px) {

    #videoPopup video {
        width: 95%;
    }

    .close-video {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }

}



.gradian-css {
    background: linear-gradient(90deg, #106eeb 0%, #106eebab 50%, var(--bs-blue) 100%);
}

.txt-white {
    color: #fff;
}

.faq-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    padding: 8px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.faq-img img {
    width: 100%;
    border-radius: 14px;
    transition: 0.6s;
}

/* hover zoom */

.faq-img:hover img {
    transform: scale(1.05);
}

/* gradient border glow */

.faq-img::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(45deg, #6a5cff, #00c6ff, #6a5cff);
    z-index: -1;
    opacity: .6;
}

/* play button improve */

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    color: #3b5cff;
    border: none;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: .4s;
}

.video-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #3b5cff;
    color: #fff;
}

.faq-section {

    background: linear-gradient(135deg, #2b6edc, #4f9cff);
    position: relative;
    overflow: hidden;
    padding: 120px 0;

}

/* floating glow circles */

.faq-section::before {

    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ffffff30, transparent);
    top: -150px;
    left: -150px;
    border-radius: 50%;

}

.faq-section::after {

    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ffffff30, transparent);
    bottom: -120px;
    right: -120px;
    border-radius: 50%;

}


/* image box */

.faq-img {

    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 8px;
    background: linear-gradient(45deg, #ffffff30, #ffffff10);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);

}

.faq-img img {

    width: 100%;
    border-radius: 15px;
    transition: 0.6s;

}

.faq-img:hover img {

    transform: scale(1.07);

}


/* play button */

.video-btn {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ffffff;
    color: #2b6edc;
    border: none;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);

}

/* .video-btn::before{
content:"";
position:absolute;
top:50%;
left:50%;
width:130px;
height:130px;
border-radius:50%;
border:2px solid #fff;
transform:translate(-50%,-50%);
animation:ripple 2s infinite;
} */

@keyframes ripple {

    0% {
        transform: scale(.8);
        opacity: 1
    }

    100% {
        transform: scale(1.4);
        opacity: 0
    }

}


/* title */

.faq-title {

    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 35px;

}


/* glass accordion */

.faq-card {

    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: .4s;

}

.faq-question {

    padding: 18px 22px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    cursor: pointer;

}

.faq-answer {

    padding: 0 22px 20px 22px;
    color: #f1f1f1;
    display: none;

}

.faq-card.active .faq-answer {

    display: block;

}

.principal-section {

    background: linear-gradient(135deg, #f8faff, #eef4ff);
    position: relative;
    overflow: hidden;

}

/* floating shapes */

.principal-section::before {

    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #7eaaff40, transparent);
    top: -120px;
    left: -120px;
    border-radius: 50%;

}

.principal-section::after {

    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #9be1ff40, transparent);
    bottom: -120px;
    right: -120px;
    border-radius: 50%;

}


/* image */

.principal-img {

    border-radius: 18px;
    padding: 8px;
    /* background:linear-gradient(45deg,#6a7cff,#7de2ff); */
    box-shadow: 0 25px 70px rgba(0, 0, 0, .25);

}

.principal-img img {

    width: 100%;
    border-radius: 14px;
    display: block;
    transition: .6s;

}

.principal-img:hover img {

    transform: scale(1.06);

}




/* glass card */

.principal-card {

    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    position: relative;

}


/* title */

.principal-title {

    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;

}


/* quote icon */

.quote-icon {

    font-size: 30px;
    color: #6a7cff;
    margin-bottom: 10px;

}


/* text */

.principal-card p {

    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;

}


/* signature */

.principal-sign {

    margin-top: 20px;
    margin-bottom: 20px;

}

.sign-line {

    width: 60px;
    height: 3px;
    background: #6a7cff;
    margin-bottom: 10px;

}

.principal-sign h4 {

    font-weight: 700;
    margin-bottom: 5px;

}

/* .principal-sign span{

color:#666;

} */


/* button */

.principal-btn {

    display: inline-block;
    background: linear-gradient(45deg, #1d7a4d, #2eb872);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
    text-decoration: none;

}

.principal-btn:hover {

    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);

}



.principal-name {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: "Corinthia", cursive;
    font-weight: 600;
    font-style: normal;

    font-size: 36px;
    color: var(--theme);


}

.catagories-section {

    background: linear-gradient(135deg, #f7f9ff, #eef4ff);
    position: relative;

}

.catagories-section::before {

    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #6a7cff30, transparent);
    top: -120px;
    left: -120px;
    border-radius: 50%;

}

.catagories-section::after {

    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7de2ff40, transparent);
    bottom: -120px;
    right: -120px;
    border-radius: 50%;

}

.catagories-card-items-f {
    margin-top: 30px;
    padding: 0 30px 50px;
    gap: 20px;
    position: relative;
    text-align: center;
    z-index: 9;
    background: #fff;
    border-radius: 25px;
}

.gradian-css::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent);
    top: -150px;
    left: -150px;
    border-radius: 50%;
}

.gradian-css::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    bottom: -150px;
    right: -150px;
    border-radius: 50%;
}

.color-yellow {
    color: #f0d527
}

@media (max-width:768px) {


    .header-1 .container-fluid {
        background: #0d6efd;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        margin-top: 57px;
    }

    .faq-section {

        padding: 10px 0;
    }

    .section-padding {
        padding: 40px 0;
    }

    .custom-slider-section {
        padding: 5px;
        background: #fff;
    }
}

.mobile-footer {
    display: none;
}

@media (max-width: 768px) {

    .mobile-footer {
        display: flex;
        position: fixed;

        bottom: 0;
        left: 0;
        width: 100%;

        background: linear-gradient(135deg, #2b6ee9, #4e8cff);

        border-top-left-radius: 18px;
        border-top-right-radius: 18px;

        justify-content: space-around;
        align-items: center;

        padding: 12px 0;

        box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.25);

        z-index: 9999;
    }

    /* links */

    .mobile-footer a {
        text-align: center;
        text-decoration: none;

        color: #ffffff;

        font-size: 13px;
        font-weight: 600;

        display: flex;
        flex-direction: column;
        align-items: center;

        transition: .3s;
    }

    /* icons */

    .mobile-footer i {
        font-size: 22px;

        margin-bottom: 4px;

        background: rgba(255, 255, 255, 0.15);

        width: 42px;
        height: 42px;

        border-radius: 12px;

        display: flex;
        align-items: center;
        justify-content: center;

        backdrop-filter: blur(6px);

        transition: .3s;
    }

    /* hover */

    .mobile-footer a:hover i {
        transform: translateY(-3px);
        background: #ffffff;
        color: #2b6ee9;
    }

    /* active effect */

    .mobile-footer a:active i {
        transform: scale(.95);
    }

}

@media (max-width:768px) {

    .mobile-footer {
        display: flex;
        position: fixed;

        bottom: 0;
        left: 0;
        width: 100%;

        background: #ffffff;
        /* solid color */

        border-top: 1px solid #e5e5e5;

        justify-content: space-around;
        align-items: center;

        padding: 10px 0;

        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);

        z-index: 9999;
    }

    .mobile-footer a {
        color: #222;
        font-weight: 600;
    }

    .mobile-footer i {
        color: #2b6ee9;
    }

    .mobile-footer {
        background: #ffffff;
        border-top: 2px solid #2b6ee9;
    }

}

.footer-bottom {
    background-color: rgba(44, 63, 70, 0.0509803922);
    padding: 10px 0;
    color: #fff;
}






/* text white */