 /* CSS Variables mapped to WhatsApp Image 2026-06-14 at 11.43.07 AM (1).jpeg */
  /* =========================================================================
   ZENVORA REVERSED HEADER SYSTEM STYLES
   ========================================================================= */

/* --- 1. Top Header Utility Bar (White Background / Blue Text) --- */
.zenvora-top-header {
    background-color: #ffffff !important;
    font-size: 0.82rem;
    border-bottom: 1px solid #eef2f6;
}

.top-header-contact-info a {
    color: #373737 !important; /* Premium Blue Color */
    font-weight: 400;
    transition: opacity 0.2s ease;
    font-size: 1.2em;
}

.top-header-contact-info a i {
    color: #0051bd !important;
}

.top-header-contact-info a:hover {
    opacity: 0.8;
}

/* Top Header Social Circles */
.top-header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 1.2em;
    border-radius: 50%;
    background-color: rgba(0, 81, 189, 0.05);
    color: #0051bd !important;
    transition: all 0.2s ease;
}

.top-header-socials a:hover {
    background-color: #0051bd;
    color: #ffffff !important;
    transform: translateY(-1px);
}


/* --- 2. Main Navigation Bar (Blue Background / White Links) --- */
.zenvora-main-navigation {
    background-color: #0051bd !important; /* Custom Blue Background */
}

/* Nav links basic styling state */
.zenvora-main-navigation .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important; /* Clean soft white text base */
    transition: color 0.2s ease-in-out;
    text-decoration: none !important; /* Ensures no underline shows up */
}

/* Hover link color state */
.zenvora-main-navigation .navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

/* Active link color state (Striking Gold/Yellow - No Underline) */
.zenvora-main-navigation .navbar-nav .nav-link.active {
    color: #eda701 !important; /* Custom Accent color token */
    text-decoration: none !important;
    border: none !important; /* Safety layout clearing */
}


/* --- 3. Header Action Buttons & Cleaners --- */
.btn-zv-yellow {
    background-color: #eda701;
    border: 1px solid #eda701;
    color: #ffffff;
    transition: all 0.2s ease;
}

.btn-zv-yellow:hover {
    background-color: #d49500;
    border-color: #d49500;
    color: #ffffff;
}

.tracking-wider {
    letter-spacing: 0.5px;
}

/* =========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================= */

@media (max-width: 991px) {
    /* Updates mobile responsive menu slide-out links formatting */
    .zenvora-main-navigation .navbar-nav .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 767px) {
    .zenvora-top-header {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    
    .top-header-contact-info {
        gap: 12px !important;
    }

    .top-header-socials {
        margin-top: 2px;
    }
}     
 html, 
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}
 
 
 :root {
            --zv-blue: #0B428C;
            --zv-green: #1F8A00;
            --zv-orange: #F2A104;
            --zv-dark: #051D3B;
            --zv-light: #F8F9FA;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--zv-dark);
            overflow-x: hidden;
        }

        /* Generic Utility Modifications */
        .text-primary-zv { color: var(--zv-blue) !important; }
        .text-success-zv { color: var(--zv-green) !important; }
        .bg-primary-zv { background-color: var(--zv-blue) !important; }
        .bg-success-zv { background-color: var(--zv-green) !important; }
        .bg-accent-zv { background-color: var(--zv-orange) !important; }

        /* Buttons */
        .btn-zv-blue {
            background-color: var(--zv-blue);
            color: #ffffff !important;
            border-radius: 8px;
            padding: 10px 24px;
            transition: all 0.3s ease;
        }
        .btn-zv-blue:hover {
            background-color: #08336e;
            color: #ffffff;
        }
        .btn-zv-green {
            background-color: var(--zv-green);
            color: #ffffff;
            border-radius: 8px;
            padding: 10px 24px;
            transition: all 0.3s ease;
        }
        .btn-zv-green:hover {
            background-color: #176800;
            color: #ffffff;
        }

/* =========================================================================
   ZENVORA RESPONSIVE NAVBAR LOGO TUNING
   ========================================================================= */

.navbar-logo-custom {
    height: 100px;         /* Locked premium height specification on desktop screens */
width: 105px;
    object-fit: contain;   /* Keeps the logo clean and crisp inside its boundaries */
    transition: height 0.3s ease-in-out; /* Smooth transition scaling on window resizing */
}

/* =========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================= */

@media (max-width: 991px) {
    .navbar-logo-custom {
        height: 70px;      /* Mid-tier scale down for tablet viewports */
    }
}

@media (max-width: 575px) {
    .navbar-logo-custom {
        height: 80px;      /* Compact profile layout size optimized for mobile screens */
    }
}

/* =========================================================================
   RESPONSIVE STYLES FOR ZENVORA BUTTONS
   ========================================================================= */

/* --- Small Devices / Mobile Portrait (Max-width: 575px) --- */
@media (max-width: 575px) {
    .btn-zv-blue, 
    .btn-zv-green {
        display: block;      /* Force buttons to take up the full width of their container */
             /* Ensure it spans 100% on small mobile viewports */
        text-align: center;  /* Center the button text perfectly */
        padding: 8px 20px;   /* Slightly tighten padding for better vertical rhythm on small screens */
        font-size: 0.95rem;  /* Optimize font size for standard mobile readability */
    }

    /* Add a subtle gap between buttons if they are stacked right next to each other */
    .btn-zv-blue + .btn-zv-green,
    .btn-zv-green + .btn-zv-blue,
    .btn-zv-blue + .btn-zv-blue,
    .btn-zv-green + .btn-zv-green {
        margin-top: 12px;    /* Prevents stacked buttons from touching on mobile */
    }
}


.nav-item a{
    color: #000;
    font-weight:600;
    padding-right:30px !important;
}






        /* 1. HEADER SECTION */
        .navbar {
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 0;
        }
       
        @media (max-width: 991px) {
    .nav-link {
        margin: 5px 0; /* Stack links vertically with comfortable spacing in mobile menus */
        padding-left: 0;
    }
    
  

    .carousel-caption {
        top: 10%; /* Recenter box boundaries */
        left: 5%;
        right: 5%;
    }

    .carousel-caption h1 {
        font-size: 2.3rem; /* Scaled down typography */
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
        max-width: 100%; /* Allow description to fill width naturally */
    }
}
.hero-slider .carousel-item {
    height: 600px; /* Fallback to guarantee it never collapses to 0px */
    background-size: cover;
    background-repeat: no-repeat;
    background: rgba(5, 29, 59, 0.75); 
    text-align: left;
}
    
/* --- Small Devices / Mobile Portrait (Max-width: 575px) --- */
@media (max-width: 575px) {
    .hero-slider .carousel-item {
        height: 620px; /* Force compact block height on small smartphone displays */
    }

    .hero-slider .carousel-item {
        /* Change gradient to a central darker overlay so centered mobile text stays readable */
        background: rgba(5, 29, 59, 0.75); 
    }

    .carousel-caption {
        top: 0%;
        left: 0%;
        right: 0%;
        text-align: center; /* Center-align the presentation content text dynamically for tiny screens */
    }

    .carousel-caption h1 {
        font-size: 1.65rem; /* Prevents overflow issues or word-breaking */
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Make buttons inside caption scale smoothly if any are present */
    .carousel-caption .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

        /* 3. TOP CATEGORIES */
        .category-card {
            border: 1px solid #eef0f4;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            background: #fff;
        }
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(11, 66, 140, 0.1);
            border-color: var(--zv-blue);
        }
        .category-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            background: rgba(11, 66, 140, 0.08);
            color: var(--zv-blue);
            border-radius: 50%;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        .category-card:hover .category-icon {
            background: var(--zv-green);
            color: #fff;
        }

        /* 4. OUR COURSES (Educrat layout-3 variant styled) */
        .course-card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 6px 30px rgba(0,0,0,0.04);
            overflow: hidden;
            transition: all 0.3s ease;
            background: #fff;
        }
        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(5, 29, 59, 0.12);
        }
        .course-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 4px;
        }
        .course-meta {
            font-size: 0.85rem;
            color: #6c757d;
        }
        .course-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--zv-blue);
        }

        /* 5. WHY CHOOSE US */
        .why-choose-section {
            background-color: var(--zv-light);
        }
        .feature-item {
            display: flex;
            margin-bottom: 25px;
        }
        .feature-icon-box {
            min-width: 55px;
            height: 55px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--zv-green);
            font-size: 1.4rem;
            margin-right: 20px;
        }

        /* 6. COUNTER SECTION */
        .counter-section {
            background: linear-gradient(135deg, var(--zv-blue) 0%, var(--zv-dark) 100%);
            color: #fff;
            position: relative;
        }
        .counter-box h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--zv-orange);
        }

        /* 7. GET IN TOUCH ENQUIRY FORM */
        .enquiry-form-container {
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
            border-radius: 20px;
            overflow: hidden;
        }
        .form-control, .form-select {
            padding: 12px 18px;
            border-color: #e2e8f0;
            border-radius: 8px;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--zv-blue);
            box-shadow: 0 0 0 3px rgba(11, 66, 140, 0.15);
        }

        /* 8. FOOTER */
        footer {
            background-color: #051D3B; color: #a0aec0; font-size: 0.95rem;
        }
        footer h5 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 25px;
        }
        footer a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        footer a:hover {
            color: var(--zv-orange);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }






        /* CORE SHOPPING CART WORKSPACE (Educrat list-3 variation layout standard) */
        .cart-workspace-section {
            padding: 60px 0;
            min-height: 60vh;
        }
        .cart-table-container {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 25px rgba(0,0,0,0.04);
            padding: 24px;
        }
        .cart-table th {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            padding: 16px;
            color: #718096;
            border-bottom: 2px solid #edf2f7;
        }
        .cart-table td {
            padding: 20px 16px;
            border-bottom: 1px solid #edf2f7;
        }
        .cart-product-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--zv-dark);
            text-decoration: none;
            transition: color 0.2s;
        }
        .cart-product-title:hover {
            color: var(--zv-green);
        }
        .summary-card {
            background-color: #ffffff;
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 25px rgba(0,0,0,0.04);
            padding: 30px;
        }
        .coupon-input {
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 8px 0 0 8px;
            font-size: 0.9rem;
        }
        .coupon-btn {
            border-radius: 0 8px 8px 0;
            background-color: var(--zv-dark);
            color: #fff;
            padding: 0 20px;
            font-weight: 600;
            border: none;
            transition: background 0.2s;
        }
        .coupon-btn:hover {
            background-color: #1a202c;
        }

        .team{
            background-color: #F3F5F9; min-height: 240px;
        }
        .design-input-field {
    border-radius: 2px !important;
    border: 1px solid #cbd5e1 !important;
    padding: 8px 12px !important;
    font-size: 0.85rem !important;
}
.design-input-field:focus {
    border-color: #1e3a8a !important;
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1) !important;
    outline: none !important;
}

/* =========================================================================
   VERTICAL INFINITE AUTO-PLAYING TRACK STYLES
   ========================================================================= */

.vertical-categories-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.vertical-categories-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vertical-categories-subtitle {
    font-weight: 700;
    text-transform: uppercase;
    color: #1F8A00;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.vertical-categories-title {
    font-weight: 700;
    color: #212529;
    letter-spacing: -0.5px;
}

/* Fixed-Height Box to Display Elements Vertically */
.vertical-categories-viewport {
    width: 100%;
    max-width: 400px; /* Constrains column width nicely */
    height: 450px;    /* Shows about 2-3 cards at a time */
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    /* Clean gradient transparency blend over top/bottom edges */
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

/* Stacks items into a single true column configuration */
.vertical-categories-track {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: max-content;
    padding: 10px;
    animation: autoSlideVerticalUp 15s linear infinite;
}

/* Pauses movement smoothly when hover interactions fire */
.vertical-categories-viewport:hover .vertical-categories-track {
    animation-play-state: paused;
}

.vertical-categories-item {
    width: 100%;
    flex-shrink: 0;
}

/* Custom Card Presentation Parameters */
.category-card {
    padding: 1.75rem 1.5rem;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    border-color: #1e3a8a;
}

.category-icon {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #1e3a8a;
}

.category-card-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
    color: #0f172a;
}

.category-card-text {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Smooth continuous upward movement loop animation */
@keyframes autoSlideVerticalUp {
    0% {
        transform: translateY(0);
    }
    100% {
        /* Loops after the 4 custom entries run across view thresholds */
        transform: translateY(calc(-580px - 5rem));
    }
}      

/* =========================================================================
   BOX-TYPE COMPACT TEAM CARD DESIGNS WITH BRAND COMBINATION
   ========================================================================= */

/* =========================================================================
   ZENVORA BRAND DOCUMENT-DRIVEN FRAMEWORK STYLES
   ========================================================================= */

.zenvora-content-body {
    background-color: #f8fafc;
    color: #334155;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Global Token Overrides for Brand Accent Interaction */
.text-success-zv {
    color: #1F8A00 !important;
}

.zenvora-badge-tag {
    font-size: 0.8rem;
    color: #1F8A00;
    letter-spacing: 1.5px;
    display: inline-block;
}

.zenvora-lead-paragraph {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #1e293b;
}

.zenvora-text-muted {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

/* Section 1 Visual Structural Block */
.zenvora-feature-highlight {
    background-color: #ffffff;
    border-color: #e2e8f0 !important;
    border-left: 4px solid #1F8A00 !important;
}

.highlight-icon-frame {
    width: 45px;
    height: 45px;
    background-color: rgba(31, 138, 0, 0.1);
    color: #1F8A00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.25rem;
}

/* Section 2 Objective Standardized Boxes */
.zenvora-objective-box {
    background-color: #ffffff;
    border-radius: 8px;
    border-color: #e2e8f0 !important;
    transition: border-color 0.2s ease;
}

.zenvora-objective-box:hover {
    border-color: #1F8A00 !important;
}

.objective-icon-header {
    font-size: 1.75rem;
}

/* Section 3 Core Value Cards */
.zenvora-value-card {
    border-radius: 6px;
    border-color: #e2e8f0 !important;
}

/* Section 4 Benefits Matrix Components */
.zenvora-benefit-box {
    padding: 1rem;
}

.benefit-icon-wrapper {
    font-size: 1.5rem;
}

/* Section 5 Domain Lists and Rate Blocks */
.zenvora-category-group .list-group-item {
    border-color: #e2e8f0;
    color: #0f172a;
    font-weight: 500;
}

.course-price-box {
    border-color: #e2e8f0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-tag {
    color: #1F8A00;
    font-weight: 700;
    font-size: 1.15rem;
}

.fw-mono {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}


.social-media  a{
    width: 40px; height: 40px; line-height: 40px; 
    text-align: center; background-color: rgba(255,255,255,0.05); 
    color: #fff; border-radius: 50%; display: inline-block; 
    transition: all 0.3s ease;

}

  /* Update this block in your live CSS file */
.zenvora-marquee-track {
    display: flex;
    width: max-content;
    -webkit-animation: zenvoraMarqueeLoop 25s linear infinite;
    -moz-animation: zenvoraMarqueeLoop 25s linear infinite;
    -o-animation: zenvoraMarqueeLoop 25s linear infinite;
    animation: zenvoraMarqueeLoop 25s linear infinite;
}

@keyframes zenvoraMarqueeLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@-webkit-keyframes zenvoraMarqueeLoop {
    0% { -webkit-transform: translateX(0); }
    100% { -webkit-transform: translateX(-50%); }
}


.max-width-600 {
    max-width: 600px;
}

/* Custom Base Utility Theme Token */
.text-success-zv {
    color: #1F8A00 !important;
}

/* Sliding Window Frame Base */
.zenvora-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
    padding: 1.5rem 0;
}

/* Subtle masking gradients on the edges to mirror screen depth blending */
.zenvora-marquee-wrapper::before,
.zenvora-marquee-wrapper::after {
    content: "";
    height: 100%;
    width: 150px;
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.zenvora-marquee-wrapper::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.zenvora-marquee-wrapper::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* The element block doing the actual translation mechanics */
.zenvora-marquee-track {
    display: flex;
    width: max-content;
    animation: zenvoraMarqueeLoop 25s linear infinite;
}

/* Pauses layout motion dynamically when users hover with a mouse pointer */
.zenvora-marquee-wrapper:hover .zenvora-marquee-track {
    animation-play-state: paused;
}

/* Individual Flex Slider Dynamic Cells */
.category-card-slide {
    width: 300px; /* Explicit structural locked boundary width */
    padding: 0 12px; /* Gutter column spatial allowance separation */
    flex-shrink: 0;
}

/* Core Box-Type Structure Mirroring reference assets */
.category-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #1F8A00;
    box-shadow: 0 10px 30px rgba(31, 138, 0, 0.08);
}

/* Centralized Circular Icons Controllers */
.category-icon {
    width: 60px;
    height: 60px;
    background-color: #f1f5f9;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem auto;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.category-card:hover .category-icon {
    background-color: rgba(31, 138, 0, 0.1);
    color: #1F8A00;
}


tors .active {
    background-color: #1F8A00 !important; /* Signature Zenvora Green[cite: 2] */
    opacity: 1;
}

/* Custom Action Buttons */


.btn-zv-blue-premium {
    background-color: #0051bd;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid #0051bd;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-zv-green-premium {
    background-color: #1F8A00;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid #1F8A00;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-zv-green-premium:hover {
    background-color: #176800;
    border-color: #176800;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-zv-outline-premium {
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid #fff;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.btn-zv-outline-premium:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================================================
   RESPONSIVE DESIGN BREAKPOINTS FOR THE 3-SLIDE CAROUSEL
   ========================================================================= */

@media (max-width: 1199px) {
    .zenvora-premium-slider, .zenvora-slide-item {
        height: 600px;
    }
    .hero-main-headline {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .zenvora-premium-slider, .zenvora-slide-item {
        height: 550px;
    }
    .slide-overlay-shroud {
        background: rgba(5, 29, 59, 0.85); /* Solid box overlay to maintain focus legibility */
    }
    .zenvora-caption {
        text-align: center; /* Balanced symmetry text layout configuration on smaller displays */
        max-width: 100%;
    }
    .hero-badge-pill, .hero


/* =========================================================================
   ZENVORA PREMIUM CAROUSEL SLIDER MAIN STYLES
   ========================================================================= */

.zenvora-premium-slider {
    position: relative;
    width: 100%;
    background-color: #051d3b;
    overflow: hidden;
}

.zenvora-slide-item {
    height: 700px;
    position: relative;
}

/* Image Underlay Engine with Scale Animation Setup */
.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 6s ease-in-out;
}

/* Adds elegant ken burns motion properties to active slider slides */
.carousel-item.active .slide-bg-image {
    transform: scale(1.08);
}

/* Dark Angular Shroud Mask Layer for Text Contrast Protection */
.slide-overlay-shroud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 29, 59, 0.95) 0%, rgba(5, 29, 59, 0.6) 50%, rgba(5, 29, 59, 0.3) 100%);
    z-index: 2;
}

/* Caption Container Override Positioning Grid */
.zenvora-caption {
    position: static;
    text-align: left;
    max-width: 650px;
    z-index: 10;
    padding: 0;
    margin: 0;
}

/* Premium Floating Pill Layout Components */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
}

.badge-accent-line {
    width: 6px;
    height: 6px;
    background-color: #1F8A00; /* Signature Zenvora Green[cite: 2] */
    border-radius: 50%;
}

.badge-text-premium {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Typography Core Rules */
.hero-main-headline {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.highlight-brand-green {
    color: #1F8A00; /* Signature Zenvora Green[cite: 2] */
}

.hero-supporting-paragraph {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Premium Navigation Controller Buttons Overrides */
.zenvora-control-btn {
    width: 5%;
    z-index: 15;
    opacity: 0.2;
    transition: opacity 0.2s ease;
}

.zenvora-control-btn:hover {
    opacity: 0.8;
}

.zenvora-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 6px;
    margin-right: 6px;
    background-color: #ffffff;
    opacity: 0.4;
    border: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.zenvora-indica-action-button-group {
        justify-content: center;
    }
    .hero-main-headline {
        font-size: 2.5rem;
    }
    .zenvora-control-btn {
        display: none; /* Hide side arrow structures to prevent clutter on mobile */
    }
}

@media (max-width: 575px) {
    .zenvora-premium-slider, .zenvora-slide-item {
        height: 480px;
    }
    .hero-main-headline {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
    }
    .hero-supporting-paragraph {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .btn-zv-green-premium, .btn-zv-outline-premium {
        text-align: center;
    }
}
/* =========================================================================
   ZENVORA PREMIUM CAROUSEL SLIDER STYLES
   ========================================================================= */

.zenvora-premium-slider {
    position: relative;
    width: 100%;
    height: 700px; /* Locked standard presentation box height */
    background-color: #0c3300; /* Deep fallback matching the new green palette */
    overflow: hidden;
}

.zenvora-slide-item {
    height: 700px;
    position: relative;
}

/* Image Underlay Engine with Scale Animation Setup */
.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right; /* Shifts slightly right to preserve rig visibility under the green wash */
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 6s ease-in-out;
}

/* Adds elegant ken burns motion properties to active slider slides */
.carousel-item.active .slide-bg-image {
    transform: scale(1.08);
}

/* 
   THE CHOSEN GRADIENT OVERLAY LAYER:
   Replicates the exact left-heavy green color wash from WhatsApp Image 2026-06-18 at 7.58.46 PM.jpeg
*/
.slide-overlay-shroud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Multi-stop linear system: Bold brand green on the left, fading to expose the crisp rig photo on the right */
    background: linear-gradient(
        90deg, 
        rgba(27, 143, 0, 0.98) 0%,    /* Vibrant solid brand green (#1b8f00) over text area */
        rgba(27, 143, 0, 0.85) 30%,   /* High density color zone to guard text readability */
        rgba(27, 143, 0, 0.45) 60%,   /* Soft, clean transition falloff gradient */
        rgba(10, 45, 0, 0.2) 85%,     /* Subtle dark forest tone blending into the sky shadow */
        rgba(10, 45, 0, 0.5) 100%     /* Gentle right edge vignette for polished structural depth */
    );
    z-index: 2;
}

/* Caption Container Override Positioning Grid */
.zenvora-caption {
    position: static;
    text-align: left;
    max-width: 650px;
    z-index: 10;
    padding: 0;
    margin: 0;
}

/* Premium Floating Pill Layout Components */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.12); /* Slightly boosted contrast against green backdrops */
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 30px;
}

.badge-accent-line {
    width: 6px;
    height: 6px;
    background-color: #ffffff; /* Swapped to white so it pops elegantly against the green background */
    border-radius: 50%;
}

.badge-text-premium {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Typography Core Rules */
.hero-main-headline {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #ffffff;
}

/* Updated to yellow (#ffeb3b) to mirror the striking yellow contrast headers in the image */
.highlight-brand-green {
    color: #ffeb3b !important; 
}

.hero-supporting-paragraph {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important; /* Forces premium high-contrast legibility */
}

/* Premium Navigation Controller Buttons Overrides */
.zenvora-control-btn {
    width: 5%;
    z-index: 15;
    opacity: 0.2;
    transition: opacity 0.2s ease;
}

.zenvora-control-btn:hover {
    opacity: 0.8;
}

.zenvora-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 6px;
    margin-right: 6px;
    background-color: #ffffff;
    opacity: 0.4;
    border: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.zenvora-indicators .active {
    background-color: #ffeb3b !important; /* Active dot links directly to accent highlight yellow */
    opacity: 1;
}

/* =========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================= */

@media (max-width: 991px) {
    /* Converts to a responsive top-to-bottom green wash on smaller tablet screens */
    .slide-overlay-shroud {
        background: linear-gradient(
            180deg,
            rgba(27, 143, 0, 0.98) 0%,
            rgba(27, 143, 0, 0.85) 75%,
            rgba(10, 45, 0, 0.9) 100%
        );
    }

    .zenvora-indica-action-button-group {
        justify-content: center;
    }

    .hero-main-headline {
        font-size: 2.5rem;
    }

    .zenvora-control-btn {
        display: none; /* Hide side arrow structures to prevent clutter on mobile viewports */
    }
}

@media (max-width: 575px) {
   
    .hero-main-headline {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
    }
    
    .hero-supporting-paragraph {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .btn-zv-green-premium, .btn-zv-outline-premium {
        text-align: center;
    }
}
/* =========================================================================
   ABOUT PAGE IMAGE FRAME DESIGN
   ========================================================================= */

.about-image-frame-wrapper {
    position: relative;
    padding: 0 20px 20px 0; /* Creates breathing space for the back accent block */
    width: 100%;
    max-width: 480px; /* Prevents oversized bloating on large desktop monitors */
    margin: 0 auto; /* Centers perfectly when dropped into single columns */
}

/* Structural Image Guard */
.about-premium-img {
    width: 100%;
    height: 480px;
    object-fit: cover; /* Crops cleanly without distorting image aspect ratios */
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(5, 29, 59, 0.15); /* Soft blend elevation drop shadow */
}

/* Creative Background Accent Geometric Block */
.about-image-accent-block {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    background-color: var(--zv-green, #1F8A00); /* Zenvora Brand Accent Green Token */
    border-radius: 12px;
    z-index: 1;
}

/* Floating Metrics Micro Card Badge */
.about-experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background-color: #051d3b; /* Premium Corporate Dark Blue Tone */
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--zv-green, #1F8A00);
}

.badge-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--zv-green, #1F8A00);
    margin-bottom: 2px;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    white-space: nowrap;
}

/* =========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================= */

@media (max-width: 1199px) {
    .about-premium-img {
        height: 400px; /* Scale back slightly on laptop displays */
    }
}

@media (max-width: 991px) {
    .about-image-frame-wrapper {
        margin-top: 3rem; /* Adds healthy margin top space once column stack occurs */
        max-width: 420px;
    }
    .about-premium-img {
        height: 380px;
    }
}

@media (max-width: 575px) {
    .about-image-frame-wrapper {
        padding: 0 10px 10px 0; /* Pulls elements closer together on micro screen displays */
    }
    .about-premium-img {
        height: 300px; /* Compact presentation height limits */
    }
    .about-experience-badge {
        bottom: 20px;
        left: 10px; /* Repositions floating badge to avoid spilling off raw edges */
        padding: 10px 16px;
    }
    .badge-number {
        font-size: 1.4rem;
    }
    .badge-label {
        font-size: 0.65rem;
    }
}
/* =========================================================================
   ZENVORA INSTRUCTOR LIGHT THEME STYLES
   ========================================================================= */

.zenvora-team-section-light {
    background-color: #ffffff; /* Clean White Background */
}

.text-zv-green {
    color: var(--zv-green, #1F8A00) !important; /* Signature Brand Green */
}

.text-dark-slate {
    color: #051d3b !important; /* Elegant dark blue/grey for text headings */
}

/* 4-column alignment balancing */
@media (min-width: 1200px) {
    .col-xl-24-percent {
        flex: 0 0 24%;
        max-width: 24%;
    }
}

/* --- Clean Minimalist Card Styling --- */
.zv-instructor-card-light {
    background: #ffffff;
    border: 1px solid #eef2f6; /* Very light subtle border edge */
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    box-shadow: 0 4px 15px rgba(5, 29, 59, 0.03); /* Soft ambient depth shadow */
}

.zv-instructor-card-light:hover {
    transform: translateY(-5px);
    border-color: rgba(31, 138, 0, 0.2);
    box-shadow: 0 15px 35px rgba(5, 29, 59, 0.08); /* Stronger premium lift shadow on hover */
}

/* Rounded Avatar Structure */
.avatar-container {
    position: relative;
    width: 120px;
    height: 160px;
    margin: 0 auto;
}

.instructor-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f8fafc;
    padding: 3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Small Indicator Badge Elements */
.status-badge-icon {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #ffffff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.badge-blue { background-color: #0d6efd; }
.badge-green { background-color: var(--zv-green, #1F8A00); }
.badge-orange { background-color: #fd7e14; }

.instructor-name {
    font-size: 1.15rem;
    font-weight: 700;
}

.instructor-role {
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}

.instructor-exp {
    font-size: 0.85rem;
}

/* Light Card Button Elements */
.btn-zv-view-profile-light {
    display: inline-block;
    color: #051d3b;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    padding: 6px 18px;
    border-radius: 30px;
    transition: all 0.2s ease;
    background-color: #f8fafc;
}

.zv-instructor-card-light:hover .btn-zv-view-profile-light {
    border-color: var(--zv-green, #1F8A00);
    background-color: var(--zv-green, #1F8A00);
    color: #ffffff !important;
}

/* --- Bottom Explore Banner (Light Accent Version) --- */
.zv-explore-banner-light {
    background: #f8fafc; /* Subtle off-white background segment block */
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.banner-icon-frame-light {
    width: 46px;
    height: 46px;
    background: rgba(31, 138, 0, 0.08); /* Faded green background frame tint */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* =========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================= */

@media (max-width: 991px) {
    .zv-explore-banner-light {
        text-align: center;
    }
    .zv-explore-banner-light .target-left-block {
        flex-direction: column;
    }
    .zv-explore-banner-light .banner-icon-frame-light {
        margin-right: 0 !important;
        margin-bottom: 12px;
    }
    .zv-explore-banner-light .btn-zv-blue {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .zv-instructor-card-light {
        padding: 24px 15px;
    }
}



/* =========================================================================
   ZENVORA HERO CAROUSEL: CUSTOM GREEN SHADE OVERLAY ENGINE
   ========================================================================= */

.zenvora-premium-slider {
    position: relative;
    width: 100%;
    /* min-height: 80vh;  */
    background-color: #020b14; /* Deep fallback layer tint */
}

/* Base Wrapper for Slider Items */
.zenvora-slide-item {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

/* Background Image Layer Controls */

/* 
   THE CHOSEN GRADIENT OVERLAY LAYER: 
   Replicates the precise left-to-right green color wash from WhatsApp Image 2026-06-18 at 7.58.46 PM.jpeg
*/
.slide-overlay-shroud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(27, 143, 0, 0.95) 0%,    /* Solid vibrant brand green #1b8f00 on the far left edge */
        rgba(27, 143, 0, 0.85) 25%,   /* High density zone covering text areas safely */
        rgba(27, 143, 0, 0.4) 60%,    /* Smooth transit falloff revealing mid-tones */
        rgba(2, 11, 20, 0.2) 85%,     /* Dark subtle blend meeting the horizon */
        rgba(2, 11, 20, 0.6) 100%     /* Deepening right edge vignette for structural depth */
    );
}

/* Content Container Alignment Lift */
.zenvora-caption {
    position: relative;
    z-index: 3; /* Positions text stacks safely over top of the color shroud */
    text-align: left;
    max-width: 650px;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Color Token Synchronization Helpers */
.highlight-brand-green {
    color: #ffffff !important; /* Forces high legibility on text components */
}

.btn-zv-green-premium {
    background-color: #1b8f00;
    border: 1px solid #1b8f00;
    color: #ffffff;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-zv-green-premium:hover {
    background-color: #146b00;
    border-color: #146b00;
    color: #ffffff;
}

/* =========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================= */

@media (max-width: 991px) {
    /* Converts to a full color block overlay to protect text on smaller compressed mobile viewports */
    .slide-overlay-shroud {
        background: linear-gradient(
            to bottom,
            rgba(27, 143, 0, -38.05) 0%,
            rgba(27, 143, 0, 0.85) 70%,
            rgba(2, 11, 20, 20.9) 100%
        );
    }
    
    .zenvora-caption {
        text-align: center;
        margin: 0 auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero-action-button-group {
        justify-content: center;
    }
}

#courses{
    background-color: #0051bd !important;

}
#courses h2 {
    color:#fff !important;
}
#courses h6 {
    color:#fff !important;
}
#courses .viewall {
    color:#fff !important;
}
.navbar-brand{
    background-color: #fff;
    border-radius: 25px 5px;
    padding: 6px;
    margin: 10px 0px;
}
.footer-logo{
    background-color: #fff;
    border-radius: 25px 5px;
    padding: 6px;
    margin: 10px 0px;
}
