:root {
    --primary: #2f7ec6;
    --accent: #5ac9ed;
    --dark: #1a1a1a;
}

body {
    overflow-x: hidden;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.04em;
}

/* --- Separate Navbar Container --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    /* Changed from Black to light translucent */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    z-index: 9999;
    border-bottom: 1px solid rgba(47, 126, 198, 0.1);
}

header.scrolled {
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 30px rgba(47, 126, 198, 0.1);
}

.navbar {
    width: 100%;
    padding: 0;
}

.nav-link {
    position: relative;
    /* Dark text for visibility on light background */
    color: #444444 !important;
    font-weight: 500;
    margin: 0 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    /* Brand Green */
    background: #25A757;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    /* Brand Blue */
    color: #2F7EC6 !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    /* Brand Blue */
    color: #2F7EC6 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-dot {
    width: 8px;
    height: 8px;
    /* Brand Gradient: Yellow -> Green -> Blue */
    background: linear-gradient(135deg, #F4E623 0%, #25A757 50%, #2F7EC6 100%);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 15px rgba(37, 167, 87, 0.4);
}

.btn-futuristic {
    /* Brand Gradient: Yellow -> Green -> Blue */
    background: linear-gradient(135deg, #F4E623 0%, #25A757 50%, #2F7EC6 100%);
    color: #ffffff !important;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.4s;
    text-decoration: none;
    display: inline-block;
}

.btn-futuristic:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(37, 167, 87, 0.3);
}

/* Mobile Adjustments */
.navbar-toggler i {
    color: #2F7EC6 !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 15px;
        margin-top: 120px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

/* ─── FOOTER SECTION ─── */
.footer-section {
    background: linear-gradient(135deg, #ffffff 0%, #fcfdf2 50%, #f4f9ff 100%);
    color: #1a1a1a;
    border-top: 1px solid #eeeeee;
    line-height: 1.6;
    box-sizing: border-box;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-section *,
.footer-section *::before,
.footer-section *::after {
    box-sizing: inherit;
}

/* Ticker Banner */
.ft-ticker {
    position: relative;
    border-bottom: 1px solid #eeeeee;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(248, 251, 255, 0.8);
    display: flex;
    backdrop-filter: blur(5px);
}

.ft-plane-path {
    position: absolute;
    top: 0;
    left: -50px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 5;
    color: #2F7EC6;
    pointer-events: none;
    animation: fly-across 15s linear infinite;
    opacity: 0.8;
}

@keyframes fly-across {
    0% {
        transform: translateX(0) translateY(2px) rotate(0deg);
        left: -50px;
    }

    25% {
        transform: translateX(25vw) translateY(-2px) rotate(5deg);
    }

    50% {
        transform: translateX(50vw) translateY(2px) rotate(0deg);
    }

    75% {
        transform: translateX(75vw) translateY(-2px) rotate(-5deg);
    }

    100% {
        transform: translateX(120vw) translateY(2px) rotate(0deg);
        left: -50px;
    }
}

.ft-ticker-inner {
    display: flex;
    flex-shrink: 0;
    animation: ft-ticker-kf 30s linear infinite;
}

.ft-ticker-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2F7EC6;
}

.ft-ticker-dot {
    width: 8px;
    height: 8px;
    background: #F4E623;
    border-radius: 50%;
    margin-left: 40px;
}

@keyframes ft-ticker-kf {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Main Grid Layout */
.ft-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
}

.ft-col {
    padding: 80px 40px;
    border-right: 1px solid #eeeeee;
    position: relative;
}

.ft-col:last-child {
    border-right: none;
}

/* Brand Column Styling */
.ft-brand-container {
    position: relative;
    padding-left: 25px;
}

.ft-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom,
            #F4E623 0%,
            #25A757 33%,
            #2F7EC6 66%,
            #75307B 100%);
    border-radius: 10px;
}

.ft-eyebrow {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2F7EC6;
    margin-bottom: 10px;
    display: block;
}

.ft-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0 0 25px 0;
    color: #333;
}

.ft-main-title span {
    color: #25A757;
    font-style: italic;
}

.ft-desc {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Typography & Lists */
.ft-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2F7EC6;
    margin-bottom: 35px;
    display: block;
    opacity: 0.7;
}

.ft-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-list li {
    margin-bottom: 15px;
}

.ft-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.ft-list a:hover {
    color: #2F7EC6;
    transform: translateX(8px);
}

/* Contact Blocks */
.ft-contact-block {
    margin-bottom: 30px;
}

.ft-label {
    font-size: 0.7rem;
    color: #75307B;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 800;
}

.ft-value {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 500;
}

.ft-value a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ft-value a:hover {
    color: #2F7EC6;
}

/* Social Icons */
.ft-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.ft-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F7EC6;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ft-social a:hover {
    background: #2F7EC6;
    border-color: #2F7EC6;
    color: #fff;
    transform: scale(1.15) rotate(5deg);
}

/* Bottom Bar */
.ft-meta {
    border-top: 1px solid #eeeeee;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #666666;
    letter-spacing: 1px;
}

.ft-meta a {
    color: #2F7EC6;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1100px) {
    .ft-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ft-col:nth-child(2) {
        border-right: none;
    }

    .ft-col:nth-child(3),
    .ft-col:nth-child(4) {
        border-top: 1px solid #eeeeee;
    }
}

@media (max-width: 768px) {
    .ft-grid {
        grid-template-columns: 1fr;
    }

    .ft-col {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
        padding: 50px 30px;
    }

    .ft-meta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .ft-main-title {
        font-size: 2rem;
    }
}

/* banner */
/* --- Separate Banner Section --- */
.banner-section {
    height: calc(100vh - 100px);
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.video-viewport {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Update: HTML5 Local Video Styling */
.video-viewport video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5, 5, 5, 0) 10%, rgba(5, 5, 5, 0.9) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-headline {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #ffffff 60%, rgba(255, 255, 255, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk';
}

.mute-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #5AC9ED;
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 5;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.4;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.scroll-hint::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #ffffff;
}

@media (max-width: 991px) {
    header {
        height: auto;
        padding: 1rem 0;
    }

    .banner-section {
        height: 70vh;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 2rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
    }
}

/* intro section */
.artistic-intro {
    position: relative;
    padding: 50px 0;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* Abstract Flowing Lines Background */
.bg-curves {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    opacity: 0.06;
    pointer-events: none;
}



/* Content Styling */
.content-container {
    position: relative;
    z-index: 5;
}

.welcome-tag {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #5AC9ED;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.super-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #050505;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.tagline-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2f7ec6;
    font-style: italic;
}

.tagline-item {
    position: relative;
    display: flex;
    align-items: center;
}

.tagline-item:not(:last-child)::after {
    content: '•';
    margin-left: 20px;
    font-style: normal;
    color: #5AC9ED;
    font-size: 1rem;
}

.highlight-italic {
    font-style: italic;
    color: #2f7ec6;
}

/* Text Block Design */
.text-narrative {
    max-width: 700px;
    position: relative;
}

.text-narrative p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
    text-align: left;
}

.keyword-focus {
    color: #050505;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.keyword-focus::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #5AC9ED;
    z-index: -1;
    opacity: 0.2;
    border-radius: 2px;
}

/* Visual Composition */
.visual-journey {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organic-image-wrap {
    width: 100%;
    height: 100%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(47, 126, 198, 0.12);
    animation: morph 15s linear infinite alternate;
}

.organic-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Pulsing Location Elements */
.location-signature {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 35px;
}

.city-marker {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2f7ec6;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #5AC9ED;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #5AC9ED;
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

/* Decorative Rotating Text */
.rotating-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.04;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .artistic-intro {
        padding: 80px 0;
    }

    .super-title {
        font-size: 2.5rem;
    }

    .visual-journey {
        height: 400px;
        margin-top: 40px;
    }

    .tagline-row {
        font-size: 1.2rem;
        flex-wrap: wrap;
    }
}

/* archive */
/* Container and Section Styling */
.achievements-integrated-section {
    position: relative;
    padding: 100px 0;
    background-color: #fcfcff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.main-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Optional Background Accents (Brand Colors) --- */
.light-accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.08;
    pointer-events: none;
}

.accent-1 {
    width: 400px;
    height: 400px;
    background: #F4E623;
    top: -10%;
    left: -5%;
}

.accent-2 {
    width: 300px;
    height: 300px;
    background: #25A757;
    bottom: 10%;
    right: 10%;
}

/* --- Section Top Styling --- */
.section-top {
    text-align: center;
    margin-bottom: 70px;
}

.section-top h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #1e1e1e;
    margin-top: 10px;
}

.impact-badge {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #2F7EC6;
    display: inline-block;
    margin-bottom: 10px;
}

/* --- Grid Layout --- */
.achievements-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.achievement-column {
    flex: 1;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(47, 126, 198, 0.1);
    text-align: left;
}

.achievement-column:first-child {
    border-left: none;
    padding-left: 0;
}

/* --- Visual Design --- */
.column-visual {
    margin-bottom: 25px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(47, 126, 198, 0.08);
    position: relative;
}

.column-visual::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, #F4E623, #25A757, #2F7EC6);
    z-index: -1;
    opacity: 0.3;
}

.column-visual img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* --- Typography --- */
.column-header {
    margin-bottom: 15px;
    min-height: 60px;
}

.column-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.column-header h3 span {
    color: #25A757;
}

.column-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555577;
    font-weight: 400;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .achievements-row {
        flex-direction: column;
        gap: 50px;
    }

    .achievement-column {
        border-left: none;
        border-bottom: 1px solid rgba(47, 126, 198, 0.1);
        padding: 0 0 30px 0;
    }

    .achievement-column:last-child {
        border-bottom: none;
    }

    .column-header {
        min-height: auto;
    }
}

/* our approach */
/* Section Specific Container */
.edufun-approach-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Plane Animation Layer */
.edufun-animation-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.edufun-flight-path {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 110%;
    height: auto;
    opacity: 0.2;
}

.edufun-plane {
    position: absolute;
    width: 35px;
    height: 35px;
    color: #2f7ec6;
    offset-path: path('M 0,150 Q 350,0 700,150 T 1400,50');
    animation: edufunFly 10s infinite linear;
}

@keyframes edufunFly {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

/* Text Styling */
.edufun-label {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 800;
    font-size: 0.75rem;
    color: #2f7ec6;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(90deg, #2f7ec6, #5ac9ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.edufun-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.edufun-heading em {
    font-style: italic;
    font-weight: 400;
    color: #2f7ec6;
}

.edufun-intro {
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 300;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid #5ac9ed;
}

.edufun-details {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

.edufun-nep-highlight {
    color: #2f7ec6;
    font-weight: 700;
    background: rgba(90, 201, 232, 0.1);
    padding: 2px 10px;
    border-radius: 50px;
    border: 1px solid rgba(90, 201, 232, 0.3);
}

/* Creative Image Cluster */
.edufun-image-cluster {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.edufun-main-img-box {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 100px 100px 20px 100px;
    overflow: hidden;
    box-shadow: 25px 25px 50px rgba(47, 126, 198, 0.15);
    transform: rotate(-2deg);
    background: #fff;
}

.edufun-main-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.edufun-main-img-box:hover img {
    transform: scale(1.08) rotate(2deg);
}

.edufun-accent-shape {
    position: absolute;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, rgba(47, 126, 198, 0.05) 0%, rgba(90, 201, 237, 0.15) 100%);
    z-index: 1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    animation: edufunMorph 15s ease-in-out infinite;
}

@keyframes edufunMorph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    }

    50% {
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    }
}

.edufun-floating-badge {
    position: absolute;
    bottom: 10%;
    right: 0;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 4px solid #5ac9ed;
}

.edufun-badge-icon {
    width: 40px;
    height: 40px;
    background: #2f7ec6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .edufun-approach-wrapper {
        padding: 60px 0;
    }

    .edufun-image-cluster {
        margin-top: 60px;
    }

    .edufun-heading {
        font-size: 2.5rem;
    }
}


/*  why edufun */
/* --- Core Layout & Light Background --- */
.edufun-light-redesign {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #fcfdff 0%, #f7f9fc 100%);
    color: #333;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.main-wrapper {
    position: relative;
    z-index: 10;
}

/* --- Custom Multi-Color Blobs --- */
.light-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #F4E623;
    /* Yellow */
    top: -10%;
    right: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #25A757;
    /* Green */
    bottom: -5%;
    left: -10%;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #75307B;
    /* Purple */
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

/* --- Typography Styling --- */
.eyebrow-styled {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #75307B;
    /* Purple accent */
    margin-bottom: 20px;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 70px);
    line-height: 1.1;
    font-weight: 900;
    margin: 0;
}

.color-1 {
    color: #1a1a1a;
}

.color-2 {
    color: #25A757;
    /* Green accent */
    font-style: italic;
    font-weight: 400;
}

.heading-flex {
    display: flex;
    gap: 25px;
}

.v-line-gradient {
    width: 8px;
    background: linear-gradient(180deg, #F4E623, #25A757, #75307B);
    border-radius: 10px;
}

/* --- Body Text Section --- */
.text-content-box {
    padding-left: 20px;
}

.body-p-top {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #222;
    margin-bottom: 25px;
}

.body-p-bottom {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.divider-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.divider-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e8f0;
}

.divider-line span {
    width: 8px;
    height: 8px;
    background: #F4E623;
    /* Yellow dot */
    border-radius: 50%;
}

/* --- Image Styling --- */
.image-wrapper-styled {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(117, 48, 123, 0.1);
}

.image-wrapper-styled img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.floating-accent {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    border: 12px solid rgba(244, 230, 35, 0.3);
    /* Yellow border */
    border-radius: 20px;
    animation: rotate-accent 10s linear infinite;
}

@keyframes rotate-accent {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Keyword Cards Grid --- */
.keyword-grid-light {
    margin-top: 60px;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #f0f4f8;
}

.kw-card {
    padding: 60px 45px;
    height: 100%;
    border-right: 1px solid #f0f4f8;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.kw-card:last-child {
    border-right: none;
}

.kw-card:hover {
    background: #fafbfc;
    transform: translateY(-8px);
}

.kw-num {
    font-size: 14px;
    font-weight: 800;
    color: #75307B;
    /* Purple */
    display: block;
    margin-bottom: 15px;
}

.kw-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.kw-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.kw-footer-bar {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    transition: 0.4s;
}

/* Color-specific card accents */
.card-yellow .kw-footer-bar {
    background: #F4E623;
}

.card-green .kw-footer-bar {
    background: #25A757;
}

.card-purple .kw-footer-bar {
    background: #75307B;
}

.kw-card:hover .kw-footer-bar {
    width: 100%;
}

@media (max-width: 991px) {
    .image-wrapper-styled img {
        height: 400px;
    }

    .kw-card {
        border-right: none;
        border-bottom: 1px solid #f0f4f8;
    }

    .text-content-box {
        padding-left: 0;
        margin-top: 40px;
    }

    .heading-flex {
        flex-direction: column;
        gap: 15px;
    }

    .v-line-gradient {
        width: 100%;
        height: 6px;
    }
}

/* gallery */
/* Scoped styles only - no body or root CSS used */

.gallery-container {
    padding: 50px 0;
    background: radial-gradient(circle at 0% 0%, rgba(90, 201, 237, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(47, 126, 198, 0.1) 0%, #ffffff 50%);
    position: relative;
    overflow: hidden;
}

/* Unique Background Pattern */
.gallery-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232f7ec6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(47, 126, 198, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gallery-container .main-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    color: var(--dark);
    font-weight: 900;
    line-height: 1.2;
}

.gallery-container .main-heading span {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}

/* Nav Bar Design */
.nav-wrapper {
    display: flex;
    gap: 12px;
}

.custom-nav {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    border: 1px solid rgba(47, 126, 198, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.custom-nav:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* Unique Card Design */
.gallery-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    transform: translateZ(0);
    /* Fix for overflow hidden */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 26, 26, 0.8));
    z-index: 1;
    opacity: 0.6;
}

/* Floating Image Effect */
.swiper-slide-active .gallery-item {
    box-shadow: 0 30px 60px rgba(47, 126, 198, 0.25);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Slide movement out of frame fix */
.gallerySwiper {
    overflow: visible !important;
    /* This allows the slides to bleed off the right */
    padding-bottom: 50px;
}

/* client  */
/* ─── CLIENTS SECTION (PURE CSS MARQUEE) ─── */
.clients-section-light {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: #f8fbff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Unique Geometric Background Pattern */
.clients-section-light .bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%232f7ec6' stroke-width='0.5' stroke-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.clients-section-light .container {
    position: relative;
    z-index: 2;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.sub-tag {
    color: #2f7ec6;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 10px;
}

.title-main {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.title-main span {
    color: #5ac9ed;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.title-underline {
    width: 50px;
    height: 3px;
    background: #2f7ec6;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* ─── CSS MARQUEE LOGIC ─── */
.marquee-wrapper {
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: 20px 0;
}

.marquee-container {
    display: flex;
    gap: 25px;
    user-select: none;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    gap: 25px;
    min-width: 100%;
    animation: scroll-marquee 35s linear infinite;
}

/* Pause on Hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 25px));
    }
}

/* Card Styling */
.client-card-new {
    background: #ffffff;
    width: 240px;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(47, 126, 198, 0.04);
    border: 1px solid rgba(47, 126, 198, 0.08);
    cursor: pointer;
}

.client-card-new img {
    max-width: 100%;
    max-height: 130px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.client-card-new:hover {
    transform: translateY(-8px);
    border-color: #5ac9ed;
    box-shadow: 0 15px 35px rgba(47, 126, 198, 0.1);
}

.client-card-new:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.08);
}

/* video */
.video-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Three color brand gradient background */
    background: linear-gradient(135deg,
            rgba(244, 230, 35, 0.1) 0%,
            rgba(37, 167, 87, 0.1) 50%,
            rgba(47, 126, 198, 0.1) 100%);
    color: #1a1a1a;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.video-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-section .section-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: #2f7ec6;
    font-weight: 700;
    margin-bottom: 15px;
}

.video-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1a1a1a;
    margin-bottom: 50px;
    margin-top: 0;
}

.video-section .section-title span {
    font-style: italic;
    background: linear-gradient(90deg, #2f7ec6, #25A757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.video-section .video-wrapper {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(47, 126, 198, 0.2);
    border: 8px solid #ffffff;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-section .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }

    .video-section .video-wrapper {
        border-width: 4px;
        border-radius: 20px;
    }
}

/* common banner */
.common-page-banner {
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    padding: 80px 0;
    /* Updated Brand Gradient: Yellow -> Green -> Blue with Image Overlay */
    background:
        linear-gradient(135deg, rgb(244 230 35 / 42%) 0%, rgb(37 167 87 / 62%) 50%, rgba(47, 126, 198, 0.85) 100%),
        url('../img/common.png');
    background-size: contain;
    background-position: top;
    background-attachment: fixed;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* The "Angled Bottom" transition */
.common-page-banner::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 1;
}

.common-page-banner .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb styling */
.common-page-banner .breadcrumb {
    margin-bottom: 25px;
    justify-content: center;
    background: transparent;
}

.common-page-banner .breadcrumb-item {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.common-page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.common-page-banner .breadcrumb-item a:hover {
    color: #F4E623;
    /* Hover color matches brand yellow */
}

.common-page-banner .breadcrumb-item.active {
    color: #ffffff;
}

.common-page-banner .breadcrumb-item+.breadcrumb-item::before {
    content: "•";
    /* Using a dot separator for a cleaner look */
    color: rgba(255, 255, 255, 0.5);
    padding: 0 15px;
}

/* Main Heading */
.common-page-banner .page-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.common-page-banner .page-title span {
    font-style: italic;
    display: inline-block;
    color: #ffffff;
    position: relative;
}

/* Optional Divider - Uses brand colors */
.common-page-banner .title-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F4E623, #25A757, #2F7EC6);
    margin: 30px auto 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .common-page-banner {
        padding: 90px 0 50px 0;
        background-repeat: no-repeat;
        background-attachment: local;
        background-position: center;
        background-size: cover;
    }

    .common-page-banner::after {
        height: 40px;
    }

    .common-page-banner .page-title {
        font-size: 3rem;
    }
}

/* common banner */


/* about us */
/* vision mission */
.edu-mission-vision {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: #444;
    padding-bottom: 60px;
    /* Reduced from 100px */
}

.vision-hero {
    padding: 60px 0;
    /* Reduced from 80px */
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
        url('../img/class.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    margin-bottom: 40px;
    /* Reduced from 80px */
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #2F7EC6;
    margin-bottom: 15px;
    /* Reduced from 25px */
}

.vision-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    /* Slightly smaller scale */
    line-height: 1.1;
    margin-bottom: 20px;
    /* Reduced from 30px */
    color: #1a1a1a;
}

.vision-title span {
    font-style: italic;
    background: linear-gradient(90deg, #F4E623, #25A757, #2F7EC6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-text {
    font-size: 1.25rem;
    /* Slightly smaller */
    line-height: 1.6;
    color: #444;
    max-width: 850px;
    margin: 0 auto;
}

.mission-section {
    max-width: 1100px;
    margin: 0 auto;
}

.mission-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* Tightened from 20px */
}

.mission-row:nth-child(even) {
    flex-direction: row-reverse;
}

.mission-img-col {
    flex: 0 0 45%;
    padding: 15px;
    /* Reduced from 20px */
}

.mission-img-wrapper {
    width: 75%;
    /* Slightly smaller images to reduce vertical footprint */
    aspect-ratio: 1/1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(47, 126, 198, 0.15);
    transition: all 0.5s ease;
    border: 5px solid #fff;
    margin: 0 auto;
}

.mission-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-row:hover .mission-img-wrapper {
    border-radius: 50%;
    border-color: #F4E623;
}

.mission-text-col {
    flex: 0 0 55%;
    padding: 0 40px;
    /* Reduced from 60px */
}

.mission-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    /* Reduced from 3rem */
    font-weight: 700;
    color: rgba(37, 167, 87, 0.15);
    line-height: 1;
    margin-bottom: 5px;
}

.mission-content h3 {
    font-size: 1.6rem;
    /* Slightly smaller */
    font-weight: 700;
    margin-bottom: 10px;
    /* Reduced from 15px */
    color: #1a1a1a;
}

.mission-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.highlight-nep {
    color: #2f7ec6;
    font-weight: 600;
}

@media (max-width: 991px) {
    .edu-mission-vision {
        padding-bottom: 40px;
    }

    .vision-hero {
        padding: 40px 0;
        margin-bottom: 30px;
    }

    .mission-row,
    .mission-row:nth-child(even) {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }

    .mission-text-col {
        padding: 20px 0 0 0;
    }

    .mission-img-col {
        flex: 0 0 100%;
        max-width: 300px;
        padding: 0;
    }

    .mission-img-wrapper {
        width: 100%;
    }
}

/* vision mission */


/* tagline design */

.edufun-mission-core {
    padding: 100px 0;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    /* Added Gradient Background */
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

/* Subtle ambient glow as a background element */
.edufun-mission-core::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(41, 182, 246, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* Hero Image Area */
.image-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Overlay Line */
.image-accent {
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 6px;
    background: linear-gradient(to bottom, #d4e157, #66bb6a, #29b6f6, #7e57c2);
    z-index: 2;
    border-radius: 0 10px 10px 0;
}

/* Content Area */
.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #7e57c2;
    margin-bottom: 20px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e293b;
}

.main-title span {
    font-style: italic;
    background: linear-gradient(to right, #d4e157, #66bb6a, #29b6f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pillar Items */
.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pillar-item {
    position: relative;
    padding-left: 25px;
}

/* Marker dot */
.pillar-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.item-travel::before {
    background: #29b6f6;
}

.item-learn::before {
    background: #66bb6a;
}

.item-discover::before {
    background: #fbc02d;
}

.pillar-label {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.item-travel .pillar-label {
    color: #29b6f6;
}

.item-learn .pillar-label {
    color: #66bb6a;
}

.item-discover .pillar-label {
    color: #fbc02d;
}

.pillar-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

@media (max-width: 991px) {
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-container {
        min-height: 350px;
        order: -1;
    }

    .main-title {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }
}

/* tagline design */


/* ABBUT STEP */
/* --- Enhanced Gradient Organic Path --- */
.process-horizontal-section {
    background: radial-gradient(circle at 0% 0%, rgba(47, 126, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(37, 167, 87, 0.05) 0%, transparent 50%),
        #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

/* Ambient Decorative Blurs */
.ambient-blur {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.blur-1 {
    top: -100px;
    right: -100px;
    background: #2f7ec6;
}

.blur-2 {
    bottom: -100px;
    left: -100px;
    background: #f2c94c;
}

/* --- Header --- */
.process-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.process-header .eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #2f7ec6, #25A757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: inline-block;
}

.process-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 55px);
    font-weight: 900;
    color: #111;
    line-height: 1.1;
}

.process-header h2 span {
    background: linear-gradient(120deg, #2f7ec6, #5ac9ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

/* --- Horizontal Container --- */
.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 40px 20px;
    z-index: 1;
}

/* The Connecting Path (SVG Gradient) */
.timeline-svg {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.4s ease;
}

/* Central Node/Icon Hub with Gradient Borders */
.step-node {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Pseudo-element for Gradient Border */
.step-node::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--step-color-start), var(--step-color-end));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: 0.4s;
}

.timeline-step:hover .step-node {
    background: linear-gradient(135deg, var(--step-color-start), var(--step-color-end));
    color: #fff;
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-node svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    color: var(--step-color-start);
    transition: 0.4s;
}

.timeline-step:hover .step-node svg {
    color: #fff;
    transform: scale(1.1);
}

/* Text Content */
.step-meta {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--step-color-start);
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
}

.timeline-step h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.5px;
}

.timeline-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    max-width: 240px;
}

/* Gradient Step Colors */
.step-1 {
    --step-color-start: #2f7ec6;
    --step-color-end: #5ac9ed;
}

.step-2 {
    --step-color-start: #25A757;
    --step-color-end: #a8e063;
}

.step-3 {
    --step-color-start: #75307B;
    --step-color-end: #bd7fc3;
}

.step-4 {
    --step-color-start: #f2c94c;
    --step-color-end: #f2994a;
}

/* Responsive */
@media (max-width: 991px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }

    .timeline-svg {
        display: none;
    }
}

@media (max-width: 576px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .timeline-step p {
        max-width: 100%;
    }
}

/* why learn about us */
.edu-impact-section {
    padding: 120px 0;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Expansive soft background gradient from Methodology reference */
    background: radial-gradient(circle at 10% 20%, rgba(79, 172, 254, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(37, 167, 87, 0.05) 0%, transparent 40%),
        #ffffff;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- Updated Header Styling --- */
.edu-impact-header-container {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 90px auto;
}

.edu-impact-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    background: linear-gradient(to right, #2f7ec6 0%, #25A757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
}

.edu-impact-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

/* The specific lime-to-blue gradient from "Beyond Classrooms" image */
.edu-impact-title-gradient {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(to right, #D4E157 0%, #4CAF50 40%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.edu-impact-description {
    font-size: 19px;
    line-height: 1.8;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Layout Grid --- */
.edu-impact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* --- Benefits Card (Methodology Box Design) --- */
.edu-impact-benefits-card {
    background: #ffffff;
    padding: 55px;
    border-radius: 45px;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
}

/* Multi-color progress line at the top of the box */
.edu-impact-benefits-card::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(to right, #2196F3, #4CAF50, #9C27B0, #FF9800);
    border-radius: 80px 80px 0 0;
    width: 90%;
    margin: 0 auto;
}

.edu-impact-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px dashed rgba(226, 232, 240, 0.7);
    transition: all 0.3s ease;
}

.edu-impact-benefit-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Circular Icons matching Step 01-04 */
.edu-impact-benefit-icon-box {
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(151, 151, 151);
    margin-right: 28px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

/* Specific Step Colors from Methodology image */
.edu-impact-benefit-item:nth-child(1) .edu-impact-benefit-icon-box {
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 100%);
}

.edu-impact-benefit-item:nth-child(2) .edu-impact-benefit-icon-box {
    background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
}

.edu-impact-benefit-item:nth-child(3) .edu-impact-benefit-icon-box {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
}

.edu-impact-benefit-item:nth-child(4) .edu-impact-benefit-icon-box {
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
}

.edu-impact-benefit-text {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #1a1a1a;
}

/* --- Image Composition --- */
.edu-impact-visual-stack {
    position: relative;
}

.edu-impact-main-img-wrap {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(15, 23, 42, 0.08);
    border: 8px solid white;
}

.edu-impact-main-img-wrap img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: transform 1.8s cubic-bezier(0, 0, 0.2, 1);
}

.edu-impact-visual-stack:hover .edu-impact-main-img-wrap img {
    transform: scale(1.1);
}

/* Dash background from methodology reference */
.edu-impact-deco-path {
    position: absolute;
    top: 50%;
    left: -15%;
    width: 130%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='800' height='300' viewBox='0 0 800 300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150C200 150 200 50 400 50C600 50 600 250 800 250' stroke='%23cbd5e1' stroke-width='1.5' stroke-dasharray='12 12'/%3E%3C/svg%3E") no-repeat center;
    z-index: -1;
    opacity: 0.3;
    transform: translateY(-50%);
}

/* Float Badge */
.edu-impact-badge {
    position: absolute;
    top: 500px;
    right: -30px;
    background: #ffffff;
    padding: 25px 40px;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    z-index: 2;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 1);
}

.edu-impact-badge span:first-child {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(to right, #D4E157, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.edu-impact-badge span:last-child {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #94a3b8;
    margin-top: 8px;
    display: block;
}

@media (max-width: 991px) {
    .edu-impact-content-grid {
        grid-template-columns: 1fr;
    }

    .edu-impact-visual-stack {
        order: -1;
        margin-bottom: 60px;
    }

    .edu-impact-main-img-wrap img {
        height: 450px;
    }

    .edu-impact-section {
        padding: 80px 0;
    }

    .edu-impact-badge {
        right: 20px;
        top: 317px;
    }
}

/* our programs 1 */
.edu-nep-container {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
    color: #0f172a;
}

/* --- ASYMMETRICAL LAYOUT --- */
.nep-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
}

/* --- IMAGE COMPOSITION --- */
.nep-image-viewport {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 700px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
}

.nep-image-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.nep-image-viewport:hover img {
    transform: scale(1.05);
}

/* Overlay Gradient for Image readability */
.nep-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.3), transparent);
}

/* --- FLOATING GLASS CARD --- */
.nep-glass-card {
    position: absolute;
    bottom: -2px;
    right: -5%;
    width: 70%;
    background: rgb(255 255 255 / 84%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* --- TYPOGRAPHY --- */
.nep-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.nep-headline {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.nep-headline-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(to right, #D4E157 0%, #4CAF50 50%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nep-body-text {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 35px;
}

/* --- PILLAR LIST --- */
.nep-pillars {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.pillar-tag {
    padding: 10px 20px;
    background: #f1f5f9;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pillar-tag:hover {
    background: #0f172a;
    color: white;
    transform: translateY(-3px);
}

.pillar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* --- DECORATIVE ELEMENTS --- */
.nep-badge-circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: rotate(-10deg);
    border: 1px solid #f1f5f9;
}

.nep-badge-circle span {
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    color: #94a3b8;
    text-transform: uppercase;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1200px) {
    .nep-glass-card {
        right: 0;
        width: 100%;
        position: relative;
        bottom: 0;
        margin-top: -100px;
    }

    .nep-grid {
        grid-template-columns: 1fr;
    }

    .nep-image-viewport {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .edu-nep-container {
        padding: 60px 0;
    }

    .nep-glass-card {
        padding: 35px;
        border-radius: 25px;
        margin-top: -60px;
    }

    .nep-headline {
        font-size: 30px;
    }

    .nep-badge-circle {
        display: none;
    }
}

/* our programs 1 end */

/* our programs 2   */

.edu-swiper-section {
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

/* --- BACKGROUND DECOR --- */
.swiper-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    text-transform: uppercase;
}

.swiper-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.swiper-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
}

.swiper-title span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #D4E157, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
}

/* --- 3D CARD DISPLAY --- */
.swiper-container {
    position: relative;
    height: 500px;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-card {
    position: absolute;
    width: 380px;
    height: 480px;
    background: #fff;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.15);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-img-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.card-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 3;
    color: white;
}

.card-num {
    font-size: 14px;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 12px;
    display: block;
    letter-spacing: 2px;
}

.card-name {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

/* --- POSITIONING STATES --- */
.swiper-card.pos-1 {
    /* Center / Active */
    z-index: 10;
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
}

.swiper-card.pos-2 {
    /* Right / Back */
    z-index: 5;
    transform: translate3d(200px, 0, -200px) scale(0.85);
    opacity: 0.6;
    filter: blur(2px);
}

.swiper-card.pos-3 {
    /* Left / Back */
    z-index: 5;
    transform: translate3d(-200px, 0, -200px) scale(0.85);
    opacity: 0.6;
    filter: blur(2px);
}

.swiper-card.hidden {
    z-index: 1;
    transform: translate3d(0, 50px, -400px) scale(0.7);
    opacity: 0;
    pointer-events: none;
}

/* Hover Interaction on active card */
.swiper-card.pos-1:hover {
    transform: translate3d(0, -15px, 0) scale(1.02);
    box-shadow: 0 60px 120px -20px rgba(15, 23, 42, 0.25);
}

.swiper-card.pos-1:hover img {
    transform: scale(1.1);
}

/* --- CONTROLS --- */
.swiper-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.ctrl-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1e293b;
}

.ctrl-btn:hover {
    background: #1e293b;
    color: white;
    border-color: #1e293b;
    transform: translateY(-5px);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .swiper-card {
        width: 300px;
        height: 420px;
        padding: 30px;
    }

    .swiper-card.pos-2 {
        transform: translate3d(120px, 0, -200px) scale(0.8);
    }

    .swiper-card.pos-3 {
        transform: translate3d(-120px, 0, -200px) scale(0.8);
    }

    .edu-swiper-section {
        padding: 80px 0;
    }
}

/* our programs 2 end */


/* contact */
.discovery-contact-module {
    background-color: #ffffff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    min-height: 100vh;
    /* padding: 80px 0; */
}

/* Reusing Slider Header Styles */
.discovery-tag {
    background-color: #e8f2ff;
    color: #2b78c5;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.discovery-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.discovery-italic {
    font-style: italic;
    font-family: 'Georgia', serif;
    background: linear-gradient(45deg, #2b78c5, #6eb5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Card Styling matching Slider Cards */
.discovery-contact-card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: 40px;
}

.discovery-info-panel {
    background-color: #2b78c5;
    color: white;
    padding: 60px 45px;
    height: 100%;
    position: relative;
}

.discovery-info-panel h3 {
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.discovery-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.discovery-info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 20px;
    color: white;
}

.discovery-form-panel {
    padding: 60px 45px;
}

/* Form Styling */
.discovery-form-label {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}

.form-control {
    border: 2px solid #f0f3f7;
    padding: 14px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: #fcfdfe;
}

.form-control:focus {
    border-color: #6eb5ff;
    box-shadow: 0 0 0 4px rgba(110, 181, 255, 0.1);
    background-color: #fff;
}

.discovery-btn-submit {
    background-color: #2b78c5;
    color: white;
    padding: 16px 30px;
    border-radius: 16px;
    font-weight: 700;
    border: none;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 20px;
}

.discovery-btn-submit:hover {
    background-color: #1e5a96;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 120, 197, 0.25);
}

/* Social Icons */
.discovery-socials {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.discovery-social-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.discovery-social-btn:hover {
    background: white;
    color: #2b78c5;
    transform: scale(1.1);
}

/* FAQ Styling */
.discovery-faq {
    margin-top: 100px;
}

.accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 20px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    border-radius: 20px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #e8f2ff;
    color: #2b78c5;
    box-shadow: none;
}

@media (max-width: 991px) {

    .discovery-info-panel,
    .discovery-form-panel {
        padding: 45px 30px;
    }
}

/* gallery */
* SECTION */ .discovery-module {
    background: #f8fbff;
    padding: 70px 0;
    font-family: Segoe UI, Roboto;
}

.discovery-tag {
    background: #e8f2ff;
    color: #2b78c5;
    font-size: .75rem;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.discovery-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
}

.discovery-italic {
    font-style: italic;
    background: linear-gradient(45deg, #2b78c5, #6eb5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discovery-carousel {
    padding: 20px 0;
}

.discovery-card {
    height: 360px;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.discovery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.discovery-card:hover .discovery-img {
    transform: scale(1.08);
}

.discovery-ctrl {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    cursor: pointer;
    background: #fff;
}

.discovery-ctrl:hover {
    background: #2b78c5;
    color: #fff;
}

/* LIGHTBOX */
.modern-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn .4s ease;
     padding: 20px;
    border-radius: 12px;
}

.modern-lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.lightbox-header {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 100;
}

.lightbox-close {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: .3s;
}

.lightbox-close:hover {
    background: #2b78c5;
}

.main-gallery {
    width: 100%;
    height: 100%;
    margin: auto;
}

.main-gallery img {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    border-radius:12px;
}

.thumb-gallery {
    width: 70%;
    margin: auto;
    margin-top: 20px;
}

.thumb-gallery .swiper-slide {
    opacity: .4;
    cursor: pointer;
}

.thumb-gallery .swiper-slide-thumb-active {
    opacity: 1;
}

.thumb-gallery img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}


/* ligt */

.mg-gallery-section {
    background: #f8fbff;
    padding: 70px 0;
}

.mg-gallery-tag {
    background: #e8f2ff;
    color: #2b78c5;
    font-size: .75rem;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.mg-gallery-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
}

.mg-gallery-accent {
    font-style: italic;
    /* background: linear-gradient(45deg, #2b78c5, #6eb5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #2f7ec6;
}

/* CARD */

.mg-gallery-card {
    height: 320px;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mg-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.mg-gallery-card:hover .mg-gallery-img {
    transform: scale(1.08);
}

/* LIGHTBOX */

.mg-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.mg-lightbox.active {
    display: flex;
}

.mg-lightbox-img {
    max-width: 85%;
    max-height: 80%;
    border-radius: 12px;
}

/* CLOSE BUTTON */

.mg-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

/* NAVIGATION */

.mg-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
}

.mg-lightbox-prev {
    left: 40px;
}

.mg-lightbox-next {
    right: 40px;
}

.mg-lightbox-nav:hover {
    background: #2b78c5;
}

/* pdf */
/* Section Title Style */
.ef-section-header {
    font-weight: 800;
    color: #0d1626;
    margin-bottom: 40px;
    text-align: left;
    padding-left: 12px;
    border-left: 5px solid #4ade80;
}

/* The Main Card Container */
.ef-download-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-bottom: 24px;
    border: none;
}

.ef-download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

/* Background Image */
.ef-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.ef-download-card:hover .ef-card-img {
    transform: scale(1.05);
}

/* The Gradient Overlay */
.ef-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(13, 22, 38, 0) 0%,
            rgba(13, 22, 38, 0.2) 40%,
            rgba(13, 22, 38, 0.95) 100%);
    z-index: 2;
}

/* Content Positioning */
.ef-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 3;
    color: white;
}

.ef-label {
    color: #4ade80;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.ef-title {
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Compact Download Bar */
.ef-download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
}

.ef-download-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-color: #4ade80;
}

.ef-file-info strong {
    display: block;
    font-size: 0.85rem;
}

.ef-file-info span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.ef-icon-wrapper {
    background: #4ade80;
    color: #0d1626;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .ef-title {
        font-size: 1.2rem;
    }
}

/* new design */
/* Program Cards */
.program-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 400px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 30px;
}

.program-card:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.card-img-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* padding: 40px; */
    border-radius: 40px;
}

.program-name {
    color: white;
    font-weight: 800;
    font-size: 32px;
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

/* Navigation Button */
.nav-btn {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 16px 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    letter-spacing: 0.02em;
}

.nav-btn:hover {
    background: white;
    color: #0a0a0a;
    border-color: white;
}

.nav-btn1 {
    background: rgb(255 255 255 / 4%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(20px);
    /* border: 1px solid rgba(255, 255, 255, 0.25); */
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    width: 169px;
    align-items: center;
    /* justify-content: space-between; */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    letter-spacing: 0.02em;
}

.nav-btn1:hover {
    background: #ffffff26;
    color: #25A757;
    border-color: white;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.12);
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.nav-btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-icon1 {
    background: rgba(255, 255, 255, 0.12);
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.nav-btn1:hover .btn-icon1 {
    transform: translateX(4px);
}

/* Responsive adjustments */

@media (max-width: 768px) {

    .program-card {
        height: 480px;
    }

    .card-img-overlay {
        padding: 30px;
    }

    .program-name {
        font-size: 2rem;
    }
}

/* testimonial */
/* UNIQUE GLOBAL WRAPPER */
#et-feedback-system-root {
    font-family: "Bricolage Grotesk", sans-serif;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-color: #f4f4f4;
    min-height: 100vh;
}

/* RESTORED HEADER SECTION */
.et-hero-title-container {
    text-align: center;
    padding: 100px 0 60px;
    background-color: #f9fbff;
    /* Subtle plus pattern background */
    background-image: radial-gradient(#d1e3ff 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    position: relative;
}

.et-pill-category-badge {
    display: inline-block;
    background: #e1effe;
    color: #2b70c9;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.et-primary-display-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 5rem;
    line-height: 1.1;
    margin: 0;
    /* Gradient for the heading */
    background: linear-gradient(135deg, #1a1a1a 40%, #68bd45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.et-primary-display-heading .et-italic-accent {
    font-style: italic;
    font-weight: 700;
    -webkit-text-fill-color: #2b70c9;
    color: #2b70c9;
}

/* RESTORED TESTIMONIAL CARD STYLES */
.et-main-slider-viewport {
    padding: 20px 20px 80px 20px !important;
    overflow: visible !important;
}

.et-testimonial-card-frame {
    background: #ffffff;
    border-radius: 35px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: grab;
}

.et-testimonial-card-frame:hover {
    border-color: #68bd45;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(104, 189, 69, 0.12);
}

.et-quote-visual-indicator {
    font-size: 2.5rem;
    color: #68bd45;
    opacity: 0.2;
    margin-bottom: 10px;
}

.et-feedback-body-copy {
    font-size: 1.25rem;
    font-weight: 400;
    /* No bold */
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
    color: #444;
}

.et-author-meta-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.et-author-profile-img {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.et-author-display-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #1a1a1a;
}

.et-author-professional-title {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

/* PAGINATION STYLING */
#et-custom-pagination-dots .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 10px;
    background: linear-gradient(90deg, #68bd45 0%, #84d463 100%) !important;
}

@media (max-width: 992px) {
    .et-primary-display-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .et-primary-display-heading {
        font-size: 2.8rem;
    }

    .et-hero-title-container {
        padding: 60px 0 40px;
    }
}


/* new pdf card styles */
.tour-card-ui {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 385px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
    background: #000;
}

/* Image handling in HTML */
.card-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card-ui:hover .card-image-wrapper img {
    transform: scale(1.08);
}

/* Overlays */
.card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

/* Top Status Indicator */
.live-status {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.dot-pulse {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
}

/* Text Content Area */
.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 4;
}

.trip-category {
    font-size: 12px;
    color: #4ade80;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.trip-name {
    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Glass-morphism PDF Action Button */
.pdf-view-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 8px 8px 22px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pdf-view-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.pdf-icon-wrap {
    background: #4ade80;
    color: #064e3b;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

/* Decorative background text */
.shadow-text {
    position: absolute;
    bottom: 40px;
    left: 20px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    z-index: 3;
    white-space: nowrap;
}

/* new styles of pdf */
.edu-hsn-main-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 385px;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Unique Image Viewport Class */
.edu-hsn-visual-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.edu-hsn-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.edu-hsn-main-card:hover .edu-hsn-visual-frame img {
    opacity: 0.6;
    transform: scale(1.1);
}

/* Unique Sidebar Accent Class */
.edu-hsn-neon-vertical-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #4ade80;
    z-index: 5;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

/* Unique Overlay Gradients Class */
.edu-hsn-dark-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

/* Unique Header Meta Class */
.edu-hsn-meta-header {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.edu-hsn-glass-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #4ade80;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Unique Content Body Class */
.edu-hsn-body-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 10;
}

.edu-hsn-route-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

.edu-hsn-headline-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Unique PDF Action Class */
.edu-hsn-action-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 10px 10px 10px 25px;
    border-radius: 100px;
    color: #000;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s ease;
}

.edu-hsn-action-trigger:hover {
    background: #4ade80;
    transform: translateY(-3px);
    color: #000;
}

.edu-hsn-icon-sphere {
    width: 48px;
    height: 48px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.edu-hsn-action-trigger:hover .edu-hsn-icon-sphere {
    transform: rotate(45deg);
}

/* Unique Decorative Background Label */
.edu-hsn-watermark-overlay {
    position: absolute;
    top: 40%;
    left: -10px;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 7rem;
    font-weight: 700;
    color: white;
    opacity: 0.04;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
}

/* testimonial styles page */

/* Grid Layout */
/* DEFAULT (3+ images) */
.et-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(349px, 1fr));
    gap: 40px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1 IMAGE → centered */
.et-gallery-grid:has(.et-frame-wrapper:only-child) {
    grid-template-columns: 350px;
    justify-content: center;
}

/* 2 IMAGES → space between */
.et-gallery-grid:has(.et-frame-wrapper:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 350px);
    /* justify-content: space-between; */
}

/* The Wooden Frame Design */
.et-frame-wrapper {
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
}

.et-frame-wrapper:hover {
    transform: translateY(-8px);
}

.et-wood-frame {
    background: #8b5a2b;
    /* Outer Wood Color */
    padding: 20px;
    /* Frame Thickness */
    border: 4px solid #5d3a1a;
    /* Darker Outer Edge */
    position: relative;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
    /* Inner Frame Shadow */
    aspect-ratio: 4 / 5.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inner Content Area (The "Paper") */
.et-frame-content {
    background: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #ccc;
    box-shadow: inset 2px 2px 8px rgba(0, 0, 0, 0.25);
    position: relative;
}

.et-frame-content img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    display: block;
}

/* Lightbox Overlay */
#et-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

#et-lightbox-overlay.active {
    display: flex;
}

.et-lightbox-container {
    max-width: 95%;
    max-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.et-lightbox-container img {
    max-width: 100%;
    max-height: 80vh;
    border: 8px solid #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    user-select: none;
}

/* Close Button */
.et-close-x {
    position: absolute;
    top: -50px;
    right: 0;
    /*left: 170px;*/
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: opacity 0.2s;
}

.et-close-x:hover {
    opacity: 0.7;
}

/* Navigation Arrows */
.et-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 20px 15px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    transition: background 0.3s;
    border-radius: 4px;
    z-index: 10001;
}

.et-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.et-prev {
    left: -80px;
}

.et-next {
    right: -80px;
}

/* Responsive Arrows */
@media (max-width: 900px) {
    .et-prev {
        left: 10px;
    }

    .et-next {
        right: 10px;
    }

    .et-nav-btn {
        background: rgba(0, 0, 0, 0.5);
        padding: 15px 10px;
    }
}

.edu-hsn-card-wrapper {
    font-family: 'Space Grotesk', sans-serif;
}

.edu-hsn-card-anchor {
    text-decoration: none !important;
    display: block;
    width: 100%;
    max-width: 320px;
    /* Adjusted width for better aspect ratio with 385px height */
}

.edu-hsn-main-box {
    position: relative;
    width: 100%;
    height: 385px;
    /* Specific height requested */
    background: #000;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

/* Visual Media Layer */
.edu-hsn-image-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    margin: 0;
}

.edu-hsn-image-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.4s ease;
}

.edu-hsn-main-box:hover .edu-hsn-image-layer img {
    transform: scale(1.1);
    opacity: 0.5;
}

/* Gradient Scrim */
.edu-hsn-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

/* Header Elements */
.edu-hsn-top-bar {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.edu-hsn-status-badge {
    background: #4ade80;
    color: #000;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Static Content Layer */
.edu-hsn-info-block {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.edu-hsn-main-box:hover .edu-hsn-info-block {
    transform: translateY(-40px);
}

.edu-hsn-sub-label {
    font-size: 10px;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    display: block;
    font-weight: 700;
}

.edu-hsn-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

/* Revealable Bottom Bar */
.edu-hsn-hover-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    z-index: 15;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.edu-hsn-main-box:hover .edu-hsn-hover-bar {
    transform: translateY(0);
}

.edu-hsn-hover-bar i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.edu-hsn-main-box:hover .edu-hsn-hover-bar i {
    animation: moveRight 0.6s infinite alternate;
}

@keyframes moveRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(4px);
    }
}

/* float */
.experience-badge {
    /* Applying your brand gradient */
    --brand-gradient: linear-gradient(90deg, #2f7ec6, #25A757);
    top: 40px;
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-main 3.5s ease-in-out infinite;
    /* Ensuring clean font rendering */
    -webkit-font-smoothing: antialiased;
}

.badge-content {
    background: var(--brand-gradient);
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(47, 126, 198, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.number {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    letter-spacing: -1px;
}

.text {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.dynamic-shadow {
    position: absolute;
    bottom: -40px;
    left: 15%;
    width: 70%;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    filter: blur(10px);
    animation: shadow-pulse 3.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes float-main {

    0%,
    100% {
        transform: translateY(0) rotate(-0.5deg);
    }

    50% {
        transform: translateY(-20px) rotate(1.5deg);
    }
}

@keyframes shadow-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(0.65);
        opacity: 0.05;
    }
}

/* map */
/* Standalone Map Section Styles */
.map-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 100px 0;
    background: #fcfcfc;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.map-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    width: 100%;
}

.map-container {
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    /* Grayscale to color transition */
    filter: grayscale(100%);
    transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eeeeee;
}

.map-container:hover {
    filter: grayscale(0%);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .map-section {
        padding: 60px 0;
    }

    .map-container {
        height: 400px;
    }
}