/* Overlay */
.eis-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.48);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

    .eis-popup.show {
        opacity: 1;
        pointer-events: auto;
    }

/* Popup box */
.eis-popup-box {
    width: min(934px, 96%);
    border-radius: 0px;
    overflow: visible;
    background: #fff;
    position: relative;
    box-shadow: 0 28px 70px rgba(0,0,0,0.36);
    transform: translateY(14px) scale(.995);
    transition: transform .36s cubic-bezier(.2,.9,.2,1);
}

.eis-popup.show .eis-popup-box {
    transform: translateY(0) scale(1);
}

/* Close */
.eis-popup-close {
    position: absolute;
    right: 14px;
    top: 12px;
    background: transparent;
    border: 0;
    font-size: 28px;
    color: #2e8b57;
    cursor: pointer;
}

    .eis-popup-close:hover {
        color: #fcc01f;
    }

/* Top strip (covers full popup width) */
.eis-top-strip {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #b71c1c 0%, #d32f2f 50%, #e53935 100%);
    background: linear-gradient(90deg, #8b0000 0%, #b71c1c 40%, #d32f2f 100%);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    box-shadow: 0 6px 20px rgba(46,139,87,0.12);
    box-shadow: 0 4px 12px rgba(183, 28, 28, 0.25);
    z-index: 5;
    overflow: hidden;
}

    /* Inner moving text: subtle, smooth */
    .eis-top-strip .strip-inner {
        width: 100%;
        max-width: 920px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

.strip-moving {
    display: inline-block;
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #fff;
    transform: translateX(0);
    will-change: transform;
    animation: stripMove 9s linear infinite;
    font-size: 14px;
    opacity: 0.98;
}

@keyframes stripMove {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(-33%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Popup inner layout */
.eis-popup-inner {
    display: flex;
    min-height: 320px;
    margin-top: 46px;
}
/* margin-top to account for strip */
.eis-left {
    flex: 0 0 44%;
    background: #f6faf6;
}

    .eis-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Right content */
.eis-right {
    flex: 1;
    padding: 38px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

    .eis-right h2 {
        margin: 0;
        color: #2e8b57;
        font-size: 26px;
        font-weight: 800;
        line-height: 1.05;
    }

    .eis-right strong {
        color: #013b74;
    }

/* Highlighted announcement */
.eis-highlight {
    display: inline-block;
    background: linear-gradient(90deg,#fff8ea, #fff1c9);
    color: #2e8b57;
    background: linear-gradient(90deg, #fff, #fff);
    color: #2e8b57;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(252,192,31,0.12);
    font-size: 16px;
    margin: 6px auto;
}

/* Lead text */
.eis-lead {
    color: white;
    max-width: 540px;
    margin: 0 auto 8px;
    font-size: 15px;
    line-height: 1.6;
}

/* CTA button: yellow?green gradient, subtle pulse */
.eis-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    color: #062d1a;
    background: linear-gradient(90deg,#fcc01f 0%, #2e8b57 100%);
    box-shadow: 0 10px 26px rgba(46,139,87,0.14);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    align-self: center;
}

.eis-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    color: #198754;
    background: white;
    box-shadow: 0 10px 26px rgba(46,139,87,0.14);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    align-self: center;
    /*     color: white;
   background: #198754;*/
}

    .eis-cta:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(46,139,87,0.22);
    }

    a.eis-cta:hover {
     color:green;
    }

    /* small pulse to attract subtle attention (keeps it tasteful) */
    .eis-cta::after {
    }

@keyframes pulseBar {
    0% {
        transform: scaleX(.98);
        opacity: .08;
    }

    50% {
        transform: scaleX(1.06);
        opacity: .16;
    }

    100% {
        transform: scaleX(.98);
        opacity: .08;
    }
}

/* Responsive */
@media (max-width:880px) {
    .eis-popup-box {
        width: min(760px,96%);
    }

    .eis-popup-inner {
        flex-direction: column;
        margin-top: 42px;
    }

    .eis-left {
        display: none;
    }

    .eis-right {
        padding: 26px 20px;
    }

    .eis-top-strip {
        height: 30px;
    }

    .strip-moving {
        font-size: 13px;
        animation-duration: 7s;
    }

    .eis-right h2 {
        font-size: 22px;
    }

    .eis-highlight {
        font-size: 15px;
        padding: 8px 12px;
    }

    .eis-cta {
        padding: 10px 22px;
    }
}

/* small screens */
@media (max-width:420px) {
    .eis-top-strip {
        height: 36px;
    }

    .strip-moving {
        font-size: 12px;
        animation-duration: 6s;
    }

    .eis-right h2 {
        font-size: 20px;
    }
}



/*new css*/
/* Ensure popup box allows the strip to be visible across full width */
.eis-popup-box {
    position: relative; /* required so absolute top-strip positions to box width */
    overflow: visible !important; /* allow strip to sit on top (not clipped) */
    background: #6621ba;
    background: #6621baed;
    background: rgb(0 67 22 / 95%);
}

.eis-popup-close {
    z-index: 99999;
}

.eis-right h2 {
    color: white;
}
/* Top strip: span full popup width and sit above everything */
.eis-top-strip {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 30px;
    z-index: 9999; /* higher than left image/content */
    pointer-events: none;
    /* refined red-only gradient — keep what you like */
    background: linear-gradient(90deg, #b71c1c 0%, #d32f2f 50%, #e53935 100%);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background: #fcc01f;
}

    /* make inner wrapper full width (no max-width clipping) and center content */
    .eis-top-strip .strip-inner {
        width: 100%;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden; /* keep moving text masked at edges */
    }

/* moving text: wider and slower (no clipping) */
.strip-moving {
    display: inline-block;
    white-space: nowrap;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.4px;
    font-size: 14px;
    will-change: transform;
    animation: stripMove 12s linear infinite; /* slower, smoother */
    transform: translateX(0);
    opacity: 0.97;
}

/* animation slides left slightly and back so it's never cut short */
@keyframes stripMove {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(-30%);
    }

    100% {
        transform: translateX(0%);
    }
}
@keyframes stripMove {
    0% {
        transform: translateX(0%);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(0%);
    }

    75% {
        transform: translateX(25%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* ensure left image doesn't cover the strip (z-index) */
.eis-left, .eis-left img {
    z-index: 2;
    position: relative;
}

/* but strip must be above that */
.eis-top-strip {
    z-index: 9999;
}

/* Push content down so it doesn't sit under the strip */
.eis-popup-inner {
    margin-top: 30px; /* equals strip height + a small gap */
}

/* RIGHT SIDE: make highlight block centered and limited to right column */
.eis-right .eis-highlight {
    display: block;
    margin: 8px auto 16px;
    max-width: 560px; /* control width so it doesn't align over left image */
    box-sizing: border-box;
    text-align: center;
    /* keep your previous styles (background/padding) */
}

/* Ensure right column contents are above strip area for accessibility */
.eis-right {
    position: relative;
    z-index: 3;
}

a.eis-cta:focus-visible {
    outline: none;
}
/* Small screens: strip height & adjustments */
@media (max-width:880px) {
    .eis-top-strip {
        height: 40px;
    }

    .eis-popup-inner {
        margin-top: 44px;
    }

    .strip-moving {
        font-size: 13px;
        animation-duration: 9s;
    }

    .eis-left {
        display: none;
    }
    /* left image hidden on mobile as before */
    .eis-right {
        padding: 26px 18px;
    }
}

.popup-arrow {
    margin-left: 5px;
}

.eis-cta.a:hover {
    color: green;
}

.eis-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 42px; /* larger clickable area */
    height: 42px;
    line-height: 42px; /* centers the × vertically */
    border-radius: 50%; /* circular button */
    border: none;
    cursor: pointer;
    background: rgba(0,0,0,0.08); /* subtle background */
    background: white;
    background: rgb(255 255 255 / 86%);
    color: #fff; /* visible on red strip or purple bg */
    font-size: 26px; /* balanced size for the circle */
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 99999;
}

    /* Hover/active effects */
    .eis-popup-close:hover {
        background: #e53935; /* matches red strip */
        color: #fff;
        transform: scale(1);
    }

/* Optional: when strip is dark (red), make button background lighter for contrast */
.eis-top-strip .eis-popup-close {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

    .eis-top-strip .eis-popup-close:hover {
        background: #fff;
        color: #b71c1c;
    }

@media (max-width:767px) {
    .strip-moving {
        font-weight: 700;
        font-size: 10px;
        animation: none;
    }
}
/*youtube popup*/ /* === Base setup === */
/* === Base setup === */
/* --- Base styles --- */
.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .video-box img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

/* Play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform .25s ease;
}

    .play-btn:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }

/* --- Pulsing ripple glow around play button --- */
.play-btn {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
}

    /* Ripple effect layers */
    .play-btn::before,
    .play-btn::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(1);
        pointer-events: none;
        opacity: 0.85;
    }

    /* Outer soft glow */
    .play-btn::before {
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 60%, transparent 80%);
        animation: pulseGlow 2.8s ease-in-out infinite;
    }

    /* Expanding ring */
    .play-btn::after {
        width: 44px;
        height: 44px;
        border: 2px solid rgba(255,255,255,0.25);
        animation: rippleExpand 2.8s ease-in-out infinite;
    }

/* Keyframes */
@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.96);
        opacity: 0.9;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.75;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.96);
        opacity: 0.9;
    }
}

@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* Slightly faster + brighter on hover */
.video-box:hover .play-btn::before,
.video-box:hover .play-btn::after {
    animation-duration: 2s;
    opacity: 1;
}

@media(max-width:768px) {
    .play-btn {
        width: 60px;
        height: 60px;
    }

        .play-btn::before {
            width: 60px;
            height: 60px;
        }

        .play-btn::after {
            width: 36px;
            height: 36px;
        }
}


/* --- Popup Overlay --- */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

    .video-popup.show {
        opacity: 1;
        pointer-events: auto;
    }

/* Popup content */
.video-popup-inner {
    position: relative;
    max-width: 900px;
    width: 90%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* Close button */
.close-video {
    position: absolute;
    top: -35px;
    right: -10px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    border: none;
    font-size: 40px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .25s ease;
    z-index: 999;
    align-items: center;
    justify-content: center;display:flex;
}

    .close-video:hover {
        background: #fff;
        color: #e53935;
        transform: rotate(90deg);
    }

/* Disable scrolling when popup open */
body.video-popup-open {
    overflow: hidden;
    touch-action: none;
}


@media(max-width:768px) {
    .close-video {
        top: -28px;
        display: flex;
        font-size: 38px;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
    }


    .play-btn svg {
        width: 40px;
        height: 40px;
    }
}
/* clickable overlay that covers entire image */
.video-overlay {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background: rgba(0,0,0,0); /* default transparent */
    transition: background .28s ease;
    border-radius: 10px;
    z-index: 1;
}

/* hover tint when user moves mouse over thumbnail */
.video-box:hover .video-overlay {
    background: rgba(0,0,0,0.22);
}

/* make play icon decorative so overlay gets clicks */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    pointer-events: none; /* IMPORTANT: allows overlay to capture clicks */
}

/* slightly scale play icon on hover (visual only) */
.video-box:hover .play-btn {
    transform: translate(-50%,-50%) scale(1.06);
}

/* small mobile tweak */
@media (max-width: 768px) {
    .play-btn svg {
        width: 40px;
        height: 40px;
    }

    .video-overlay {
        border-radius: 8px;
    }
}



/* Make overlay ALWAYS visible (not hover-only) */
.video-overlay {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background: rgba(0, 0, 0, 0.32); /* <-- always-on tint; change alpha to suit (0.15 - 0.30) */
    border-radius: 10px;
    z-index: 1;
    transition: background .28s ease; /* still allows subtle change on hover if you want */
}

/* Optional: keep a slightly stronger tint on hover for a little feedback */
.video-box:hover .video-overlay {
    background: rgba(0, 0, 0, 0.30);
}

/* ensure whole box is seen as clickable */
.video-box {
    cursor: pointer;
}

/* play button remains decorative and above the overlay */
.play-btn {
    pointer-events: none;
    z-index: 2;
}


/*events css*/

/* small spacing + nicer card look for carousel */
.events-carousel .single-blog {
/*    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding-bottom: 18px;*/
}

.events-carousel .blog-img img {
/*    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(0,0,0,0.06);*/
}

.events-carousel .blog-content {
/*    padding: 18px;
    text-align: left;
    color: #222;*/
}

.events-carousel .owl-nav button {
/*    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
    padding: 6px 10px;*/
}

.events-carousel .owl-dots {
/*    margin-top: 18px;*/
}

.events-carousel.owl-theme .owl-nav {
    margin-top: 0 !important;
}

    .events-carousel.owl-theme .owl-nav .owl-prev,
    .events-carousel.owl-theme .owl-nav .owl-next {
        /*position: absolute;*/
/*        top: 50%;*/
        /*transform: translateY(-50%);
        opacity: 1;
        transition: all 0.3s ease;*/
    }
    .events-carousel.owl-theme .owl-nav .owl-prev, .events-carousel.owl-theme .owl-nav .owl-next {
        position: absolute;
        /* top: 50%; */
        transform: translateY(-50%);
        opacity: 1;
        transition: all 0.3s ease;
        position: initial;
        transform: none;
        margin: 0 5px;
        margin-top: 20px;
    }

        .events-carousel.owl-theme .owl-nav .owl-prev i,
        .events-carousel.owl-theme .owl-nav .owl-next i {
            font-size: 20px;
            color: #fff;
            border: 1px solid #fff;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            display: inline-block;
            transition: var(--transition);
        }

        .events-carousel.owl-theme .owl-nav .owl-prev:hover i,
        .events-carousel.owl-theme .owl-nav .owl-next:hover i {
            background-color: var(--main-color);
            color: var(--white-color);
        }

    .events-carousel.owl-theme .owl-nav .owl-prev {
/*        left: 5px;*/
    }

    .events-carousel.owl-theme .owl-nav .owl-next {
/*        right: 5px;*/
    }

    .events-carousel.owl-theme .owl-nav [class*=owl-]:hover {
        background-color: transparent;
    }

.events-carousel:hover.owl-theme .owl-nav .owl-prev,
.events-carousel:hover.owl-theme .owl-nav .owl-next {
    opacity: 1;
}


.events-carousel .single-blog .blog-content p {

}
.events-carousel .single-blog .blog-content ul li i {
   
    top: 0px !important;

}

/*MANAGEMNT SECTION CSS*/
.management-section {
    background: url('assets/images/p3.jpg') center center / cover no-repeat;
}

    .management-section .our-team {
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        text-align: center;
    }

        .management-section .our-team:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
        }

        .management-section .our-team .pic img {
            width: 100%;
            height: auto;
            border-bottom: 3px solid var(--main-color);
        }

    .management-section .team-content {
        padding: 20px;
        color: #fff;
    }

        .management-section .team-content .title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .management-section .team-content .post {
            color: var(--main-color);
            font-weight: 500;
            display: block;
            margin-bottom: 10px;
        }

        .management-section .team-content p {
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            color: #00812b;
        }


        /*new managemmt css*/

    /* === Management Section Polishing === */
    .management-section .our-team {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* soft shadow */
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

        .management-section .our-team:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* slight lift on hover */
        }

        /* Image */
        .management-section .our-team .pic img {
            width: 100%;
            height: auto;
            border-bottom:3px solid #00812b;
            object-fit: cover;
        }

        /* Content Area */
        .management-section .our-team .team-content {
            flex-grow: 1;
            padding: 20px 18px 25px;
            background: #fff;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 100%;
        }

        /* Title & Role */
        .management-section .our-team .title {
            font-size: 20px;
            font-weight: 600;
            color: #000;
            color: #00812b;
            margin-bottom: 6px;
        }

        .management-section .our-team .post {
            color: #fcc01f !important; 
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 10px;
        }

        /* Description text */
        .management-section .our-team p {
            color: #00812b; /* your green accent */
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 0;
            padding-bottom: 10px;
            font-weight:400;
            display:none;
        }

/* Section background */
.management-section {
    /*background: #fffae9;*/ /* soft beige tone (same as testimonials bg) */
    /*background-image: linear-gradient(to bottom, #fffaf0, #fdfdfd);*/
    padding-bottom:60px;
}

    /* Spacing between columns */
    .management-section .col-lg-3 {
        display: flex;
    }

    .management-section .our-team {
        width: 100%;
    }

       
        .management-section .our-team::after {
            content: "";
            display: block;
            width: 40%;
            height: 3px;
            margin: 16px auto 0;
            background: var(--main-color);
            opacity: 0.15;
            border-radius: 2px;
            display:none;
        }

/*flowchart for admision process*/

.flow-steps-zigzag-3x3 {
    padding: 60px 0;
    /*  font-family: system-ui, Arial;*/
    background: #fff;
    background: #f8fafb;
    margin-top:30px;
}

    .flow-steps-zigzag-3x3 .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }

    .flow-steps-zigzag-3x3 h2 {
        margin-bottom: 32px;
        font-size: 32px;
        font-weight: 700;
    }

    .flow-steps-zigzag-3x3 .accent {
        color: #e4000f;
    }

.flow-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    position: relative;
}

.admission-chart .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
}

.admission-chart .row.bottom {
    flex-direction: row-reverse;
}

/* Step Box */
.step-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    width: 28%;
    min-width: 230px;
    padding: 20px;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    position: relative;
    background: #fdf8f8;
    border: 1px solid lightgrey;
}

    .step-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    }

    .step-box .num {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: #e4000f;
        color: #fff;
        font-weight: 700;
        display: grid;
        place-items: center;
        margin: 0 auto 8px;
        background: #fcc01f;
        background: #00812b;
    }

    .step-box h3 {
        font-size: 18px;
        margin: 4px 0;
        font-weight: 700;
        color: #00812b;
    }

    .step-box p {
        font-size: 14px;
        color: black;
        line-height: 1.6;
        margin: 0;
    }

/* Arrows between boxes */
.admission-chart .arrow {
    font-size: 26px;
    color: #999;
    color: #00812b;
    user-select: none;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Down connector between rows */
.admission-chart .arrow-down {
    position: absolute;
    right: 50%;
    bottom: -60px;
    width: 2px;
    height: 60px;
    background: #ccc;
    background: #00812b;
    transform: translateX(50%);
}

    .admission-chart .arrow-down::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
/*        border-left: 7px solid transparent;
        border-right: 7px solid transparent;*/
        border-top: 8px solid #ccc;
        border-top: 8px solid #00812b;
    }

/* Responsive */
@media (max-width: 993px) {
    .step-box {
        width: 32%;
    }

    .admission-chart .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

        .admission-chart .row.bottom {
            flex-direction: row-reverse;
        }

    .admission-chart .arrow, .arrow-down {
        display: none;
    }

    .step-box {
        width: 100%;
        max-width: 500px;
    }
}

.step-box p {
    margin-top: 10px;
}

}

@media (max-width: 768px) {
    .admission-chart .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

        .admission-chart .row.bottom {
            flex-direction: row-reverse;
        }

    .admission-chart .arrow, .arrow-down {
        display: none;
    }

    .step-box {
        width: 100%;
        max-width: 500px;
    }
}
.step-box p {
  
    margin-top: 10px;
}

.single-blog .blog-content p {

    min-height: 123px;
}

.banner-content span {
    font-size: 16px;
    display: block;
    color: #02b890;
    margin-bottom: 10px;
}
.abt-school-vid video{
    max-width:-webkit-fill-available;
}

.about-school .note {
    color: #00812b;
}
.new-ul li::before {
 
    color: #00812b !important;
   
}
.step-box h3 {
     color: white;
}
.step-odd p {
    color: white;
}
.step-odd .num {
    background: white;
    color: #00812b;
}
.step-box.step-odd {
    background: #00812b;
    /* color: white; */
}
.step-box.step-even {
    background: white;
}
    .step-box.step-even h3 {
        color: #fcc01f;
    }
    .step-box.step-even .num {
       
     
        color: #fff;
        font-weight: 700;
      
        background: #fcc01f;
    }

/* Section styling */
/*.quick-links-section {
    background-color: #00812b;*/ /* Green background */
    /*padding: 40px 20px 60px;
    text-align: center;
}*/
.quick-links-section {
    background-color: #f9f9f9;
    padding: 40px 20px 60px;
    text-align: center;
    margin-bottom: 0;
    background-color: #f9f5f1;
}


   
    .quick-links-section h2 {
        color: #00812b;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }

/* Flexbox layout for all 5 boxes */

.quick-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

    max-width: 1024px;
    margin: 0 auto;
}



.link-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* width: 260px; */
    /* height: 80px; */
    border: 2px dashed #fcc01f;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    width: calc(33.33% - 20px);
}

    .link-box:hover {
        background-color: #fcc01f;
        color: #00812b;
        transform: scale(1.05);
    }

a.link-box {
    background-color: white;
    color: #00812b;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .link-box {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .quick-links {
        justify-content: center;
    }

    .link-box {
        width: 45%; /* 2 per row */
    }
}

@media (max-width: 500px) {
    .link-box {
        width: 100%; /* full width on mobile */
    }
}

/* ===== Activity Section ===== */
.activity-section {
    background: #ffffff;
    padding: 70px 20px 90px;
    text-align: center;
    background: #f8fafb;
}

/* Section title */
.activity-section .section-title {
    color: #00812b; /* brand green */
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Cards container */
.activity-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap; /* allows responsive wrap */
}

/* Card */
.activity-card {
    width: 300px; /* card width (adjust if needed) */
    height:325px;
    border-radius: 5px;
    background: transparent;
    box-shadow: 0 6px 18px rgba(14, 21, 30, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative;
}

/* image wrapper (rounded top corners) */
.card-image {
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px; /* keep a bit for smooth edge under caption */
    border-bottom-right-radius: 5px;
    background: #f5f5f5;
}

    /* actual image */
    .card-image img {
        display: block;
        width: 100%;
        height: 325px; /* fixed height for uniform look */
        object-fit: cover;
        transition: transform 0.5s ease;
    }

/* caption box that overlaps image */
.card-caption {
    position: relative;
    margin-top: -40px; /* pulls caption up to overlap image */
    padding: 18px 16px;
    background: #ffffff;
    background: #fcc01f;
    border-radius: 5px;
    box-shadow: 0 10px 22px rgba(14,21,30,0.10);
    z-index: 2;
    width: calc(100% - 28px); /* keep a small inset from card sides */
    margin-left: 14px;
    margin-right: 14px;
}

    /* title inside caption */
    .card-caption h3 {
        margin: 0;
        color: #0b2b1b; /* dark green / near-black for clear reading */
        font-size: 16px;
        font-weight: 700;
        line-height: 1.15;
        text-align: center;
        letter-spacing: 0.2px;
        min-height:32px;
        color:white;
    }

/* hover lift and image zoom like ThemeForest */
.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14,21,30,0.14);
}

    .activity-card:hover .card-image img {
        transform: scale(1.06);
    }

/* Responsive sizes */
@media (max-width: 1100px) {
    .activity-card {
        width: 45%;
    }

    .card-image img {
        height: 220px;
    }
}

@media (max-width: 700px) {
    .activity-card {
        width: 100%;
    }

    .card-image img {
        height: 300px;
    }
    /* taller mobile image looks nicer */
    .card-caption {
        margin-top: -48px;
        padding: 20px;
    }

    .section-title {
        font-size: 32px;
    }
}

.container-fluid.testimonail-container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}


/*enquiry form*/

.enquiry-form {
    background-color: #fff;
    padding: 40px 35px;
    border-left: 5px solid #00812b; /* your brand green */
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

    .form-title span {
        color: #00812b; /* green accent */
    }

.enquiry-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
    font-size:14px;
}

.enquiry-form .form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px 12px;
    font-size: 14px;
    transition: 0.3s ease;
}

    .enquiry-form .form-control:focus {
        border-color: #00812b;
       
    }

.submit-btn {
    background-color: #00812b;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

    .submit-btn:hover {
        background-color: #fcc01f; /* yellow hover */
        color: #00812b;
    }
.enquiry-form  .form-control {
    
    color: #00812b !important   ;
   
}

.our-campus-information-area .campus-content p {
   
}
.principal-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

    .principal-img::after {
        content: "";
        position: absolute;
        top: -10px;
        right: -10px;
        width: 100%;
        height: 100%;
        border-top: 6px solid #00812b;
        border-right: 6px solid #fcc01f;
        border-radius: 8px;
        z-index: -1;
    }



    /*new arrows*/

.flow-steps-zigzag-3x3 {
    
    background-color: #f9f5f1;
}
.admission-chart .arrow-down {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%) rotate(90deg);
    width: 120px;
    height: 1.5px;
    background-color: #00812b;
}
/*.admission-chart .arrow-down {
    position: absolute;
    left: 50%;
    bottom: -36px;
    transform: translateX(-50%) rotate(90deg);
    width: 81px;
    height: 1.5px;
    background-color: #00812b;
}*/
.admission-chart .arrow-down::after {
    content: "";
    position: absolute;
    right: -6px;
    width: 10px;
    height: 10px;
    bottom: -4px;
    left: 90%;
    border-top: 2px solid #00812b;
    border-right: 2px solid #00812b;
    transform: rotate(45deg);
    box-sizing: border-box;
}


.single-footer-widget .social-icon li a::before, .single-footer-widget .social-icon li a::after {
    
    background-color: #fcc01f;
  
}

:root {
    /*    --main-color: #fcc01f;*/
    --yellow-color: #fcc01f;
}

/*popup recolors*/
/* === Top Moving Yellow Strip === */
.eis-top-strip {
    background-color: #f9f5f1; /* yellow bar */
    color: GREEN;
    border-bottom: 2px dashed #c8cfca00;
}

.strip-moving {
    color: #00812b;
    font-weight: 600;
}

/* === Popup Background === */
.eis-popup-box {
    background-color: #ffffff; /* clean white card */
    color: #222; /* dark text */
}

/* === Close Button === */
.eis-popup-close svg {
    stroke: #000000; /* green icon lines */
    transition: 0.3s;
}

.eis-popup-close:hover svg {
    stroke: #fcc01f; /* hover yellow accent */
}

/* === Heading & Highlights === */
.eis-right h2 {
    color: #222;
}

    .eis-right h2 strong {
        color: #00812b; /* green brand accent */
    }

.eis-highlight {
    background: #ffffff; /* green banner */
    color: #00812b;
    /* border: 1px dotted #fcc01f; */
    border-radius: 6px;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
}

/* === Lead Paragraph === */
.eis-lead {
    color: black;
}

/* === Register Button === */
.eis-cta {
    background-color: #00812b;
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 0px;
    padding: 12px 28px;
    text-decoration: none;
    transition: 0.3s ease;
}

    .eis-cta:hover {
        background-color: #fcc01f;
        color: #00812b;
    }

    /* === Optional Green/Yellow Accent on Arrow === */
    .eis-cta .popup-arrow {
        color: #ffffff;
        transition: 0.3s;
    }

    .eis-cta:hover .popup-arrow {
        color: #00812b;
    }


/* target your existing lead box (adjust class if needed) */
.eis-highlight {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* gap: 10px; */
    background-color: #ffffff;
    /* border: 1px dotted #fcc01f; */ /* base yellow dotted border */
    border-radius: 0px;
    color: #00812b;
    font-weight: 600;
    /*  padding: 12px 24px;*/
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

    /* animated moving dotted border overlay */
    .eis-highlight::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 0px;
        border: 2px dotted transparent;
        background: repeating-linear-gradient( 90deg, #fcc01f 0 5px, transparent 5px 10px ), repeating-linear-gradient(180deg, #fcc01f 0 5px, transparent 5px 10px);
        background-size: 20px 20px;
        background-repeat: repeat;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        /* animation: dottedMove 4s linear infinite; */
        pointer-events: none;
        opacity: 0.9;
    }

/* moving animation keyframes */
@keyframes dottedMove {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 20px 0, 0 20px;
    }
}

/* optional glow effect */
.eis-highlight::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 10px;
    background: radial-gradient( rgba(252, 192, 31, 0.15), rgba(255, 255, 255, 0) 70% );
    z-index: -1;
    animation: softGlow 3s ease-in-out infinite alternate;
}

@keyframes softGlow {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 0.9;
    }
}

a.eis-cta:hover {
    color: hover;
}

.eis-popup-close {
    /* background: #f9f5f1; */
    position: absolute;
    top: 0px;
    right: 0px;
    width: 34px;
    height: 30px;
    line-height: 40px;
    border-radius: 0px;
    border: none;
    /* cursor: pointer; */
    /* background: rgba(0,0,0,0.08); */
    /* background: white; */
    /* background: rgb(255 255 255 / 86%); */
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    display: flex;
    align-items: center;
    background: #fcc01f;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 99999;
}
.eis-popup-box {
    background-color: #ffffff;
    color: #222;
}
.eis-popup-close svg {
    stroke: #000000;
    transition: 0.3s;
}
.eis-top-strip {
    background-color: #f9f5f1;
    color: GREEN;
    border-bottom: 2px dashed #c8cfca00;
}

.eis-right h2 {
    color: #222;
}

.eis-highlight {
    /* gap: 10px; */
    background-color: #ffffff;
    /* border: 1px dotted #fcc01f; */
    border-radius: 0px;
    color: #00812b;
    font-weight: 600;
    /* padding: 12px 24px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}


@media(max-width:992px){
    .eis-highlight::before {
        content: none;
    }
    .eis-highlight {
        border: 2px dashed #fcc01f;
    }
}

.eis-cta:hover {
    color: white;
}

.eis-cta:hover .popup-arrow {
    color: white;
}

a.eis-cta:hover {
    color: white;
}
.eis-popup-close:hover {
    background: #fcc01f;
    
    transform: scale(1.1);
}
    .eis-popup-close:hover svg {
        stroke: white;
    }


.link-box:hover {

    color: white !important;

}

.default-btn::before, .default-btn::after {
   
    background-color: var(--yellow-color) !important;
}

.single-footer-widget .social-icon li a {
    
    color: var(--yellow-color);
}
.single-footer-widget .address li i {
 
    color: var(--yellow-color);
}
.go-top {
  
    background-color: var(--yellow-color);
  
}

.study-area {
    /* background-image: url(../images/study-bg.jpg); */
    background: #00812b;
 
}

.announcement-content span {
    

    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);

}


.announcement-section {
    background: linear-gradient( 90deg, #00812b 0%, #016d27 25%, #0b2b1b 50%, #00812b 75%, #0b2b1b 100% ) !important;
    background-size: 300% 300%;
    animation: movingGradient 8s ease infinite;
    color: #ffffff;
}

@keyframes movingGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.about-content span {

    color: var(--yellow-color);
   
}
.our-campus-bg.our-campus-bg-style .campus-content span {
    color: var(--yellow-color);
}
.our-campus-bg.our-campus-bg-style .campus-content .read-more {
    color: var(--yellow-color);
}

.our-campus-bg.our-campus-bg-style .campus-content span.ri-arrow-right-line {
    color: var(--yellow-color);
    display: contents;
    margin-bottom: 0px;
}

.single-campus-experience {
    background-color: #00812b;
 
}

#testimonial-sec .slider__caption {

    color: #fcc01f !important;
    opacity:1;
   
}
#testimonial-sec quote {
    
    color: var(--yellow-color) !important;
   
}

#testimonial-sec .container-fluid{
    padding-left:0px;
    padding-right:0px;
}
.single-footer-widget .import-link li:hover a {
    color: var(--yellow-color);
}
.color-yellow {
    color: var(--yellow-color);
}

.campus-experience-slider.owl-theme .owl-nav .owl-prev:hover i, .campus-experience-slider.owl-theme .owl-nav .owl-next:hover i {
    background-color: var(--yellow-color)

}
.go-top:hover {
  
    background-color: var(--yellow-color) !important;
}

.go-top::before {
    background-color: var(--yellow-color) !important;
}

.single-blog:hover .blog-content h3 a {
    color: var(--yellow-color) !important;
}

.follow-card {
    background: white;   
    border: 1px dashed red;
}

.follow-card {
    background: white;
    border: 1px dashed red;
}
.white-card {
    background: white;
    padding: 30px;   
}
.follow-card {
    background: white;
    padding: 30px;
    border: 1px dashed var(--yellow-color);
}

.contact-info h3 {
    font-size: 24px;
    color: #00812b;
    margin-bottom: 15px;
}
.contact-info h3 {

    color: #00812b;

}
.contact-info .social-link li a:hover i {
    color: var(--white-color);
    background-color: #fcc01f;
}
.contact-info .social-link li a i {
   
    background-color: #fcc01f;
    color: #ffffff;
   
}

.white-card {
    background: white !important;
}
.white-card span {
   
    color: #00812b;

}
.contact-info .address li a {
    color: #00812b;
  
}
.contact-info .address .location span {
    color: #00812b;
}
.contact-info p {
    color: green;
}

.white-card {
    background: white !important;
    border: 1px dashed #fcc01f;
}
.contact-info .address li i {
   
    border-radius: 50%;
    color: #fcc01f;
}
.contact-info .address li i {
    
    background: #00812b;
 
}
.contact-info .address .location span {

    font-size: 20px;
  
}
.contact-info .address li a:hover {
    color: #00812b;
}

.eis-right h2 strong {
     font-weight: 700;
}
.contact-info .address li i {
    background: #fcc01f;
    color:white;
}
.events-carousel.owl-theme .owl-nav .owl-prev:hover i, .events-carousel.owl-theme .owl-nav .owl-next:hover i {
    background-color: var(--yellow-color);
    color: var(--white-color);
}
@media (max-width:767px){
    .eis-popup-close {
        /* background: #f9f5f1; */
       
        width: 40px;
        height: 40px;
        
     
   
    }
    .eis-popup-inner {
        margin-top: 0px;
    }
    .eis-top-strip {
       display:none;    
     
    }
    .activity-card .card-caption h3 {
        min-height: auto;
    }
    .activity-section {
      
        padding: 70px 20px 50px;
     
        background: #f8fafb;
    }
    .flow-grid {
  
        gap: 25px;

    }
    .contact-info p {
        color: green;
        font-size: 14px;
    }
    .contact-info .address li {
      
        padding: 20px;
      
    }
}

.eis-popup-close:hover {
    background: #fcc01f;
    transform: scale(1);
}