﻿*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
}
:root {
    --brand-green: #0b4226; /* Deep Forest Green */
    --brand-gold: #c59d3f; /* Premium Ayurveda Gold */
    --brand-gold-hover: #a8822e;
    --sidebar-dark: #072b19; /* Deep Elegant Sidebar Background */
    --overlay-color: rgba(11, 56, 38, 0.82); /* Greenish Blue Tint with Overlay */
    --light-bg: #faf9f5;
    --white: #ffffff;
    --card-shadow: 0 15px 35px rgba(7, 43, 25, 0.06);
}
#myModalLabel2 {
    display: flex;
    color: white;
}
.dropdown-toggle .fa-shopping-cart{
    display:none;
}
.dropdown-toggle .badge {
    display: none;
}
#cartdetailspopup .modal-header{
    background:var(--brand-green)!important;
}
    #cartdetailspopup .modal-header button {
        background: white !important;
        margin-top: 0;
        position: absolute;
        right: 30px;
        top: 15px;
    }
#paymnt_btn .btn {
    background: var(--brand-green) !important;
    color: white;
}
.product-thumbnail img{
    width:100%!important;
    height:100%!important;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 75vh; /* Aap iski height ko apne hisab se kam ya zyada kar sakte hain */
    min-height: 400px;
    overflow: hidden;
    background-color: #072b19; /* VedaLife Dark Green fallback */
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease-in-out, visibility var(--transition-speed) ease-in-out;
}

    .slide.active {
        opacity: 1;
        visibility: visible;
    }

/* Slide Background Image with Smooth Zoom Effect */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 5s ease-out;
}

/* Active slide image zoom-out animation */
.slide.active .slide-bg {
    transform: scale(1);
}

/* Subtle Dark Overlay to give it a premium look */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  /*  background: rgba(7, 43, 25, 0.15);*/ /* Light dark-green tint */
    pointer-events: none;
}

/* Navigation Arrows - Properly Set on Left and Right Vertically Centered */
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1.1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    /* Left Arrow Placement */
    .arrow-btn.prev {
        left: 30px;
    }

    /* Right Arrow Placement */
    .arrow-btn.next {
        right: 30px;
    }

    /* Hover Effect matched with VedaLife Theme */
    .arrow-btn:hover {
        background-color: var(--brand-gold);
        border-color: var(--brand-gold);
        color: var(--white);
        box-shadow: 0 8px 20px rgba(197, 157, 63, 0.4);
    }

    .arrow-btn.prev:hover {
        transform: translateY(-50%) translateX(-3px); /* Dynamic slight nudge to left */
    }

    .arrow-btn.next:hover {
        transform: translateY(-50%) translateX(3px); /* Dynamic slight nudge to right */
    }

/* Bottom Indicators/Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background-color: var(--brand-gold);
        width: 28px; /* Smooth expansion width */
        border-radius: 10px;
    }

/* Responsive Fixes for Mobile Screens */
@media (max-width: 768px) {
    .slider-container {
        height: 26vh !important;
        min-height: 100%; /* Reduces height on smaller devices */
    }
    .custom-breadcrumb {
        padding: 30px 20px!important;
    }
    .custom-breadcrumb-title {
        font-size: 34px!important;
    }
    .myNewclass .v-ecosystem-flow {
        gap: 10px!important;
    }
    .myNewclass {
        padding: 60px 20px!important;
    }

    .arrow-btn {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }

        .arrow-btn.prev {
            left: 15px;
        }

        .arrow-btn.next {
            right: 15px;
        }

    .slider-dots {
        bottom: 20px;
    }
}

.health {
    position: relative;
    padding: 80px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);
    background-color: #f5f5f5;
}

    /* JavaScript triggers this class on scroll */
    .health.reveal-active {
        opacity: 1;
        transform: translateY(0);
    }

    /* ==========================================================================
   PREMIUM TYPOGRAPHY & HEADERS
   ========================================================================== */
    .health .section-tagline {
        color: var(--brand-gold);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.9rem;
        margin-bottom: 10px;
        text-align: center;
    }

    .health .section-title {
        color: var(--brand-green);
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 15px;
        position: relative;
    }

        .health .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--brand-gold);
            margin: 15px auto 0 auto;
            border-radius: 2px;
        }

    .health .section-desc {
        max-width: 600px;
        text-align: center;
        color: #555;
        font-size: 1.1rem;
        margin-bottom: 50px;
    }

    /* ==========================================================================
   RESPONSIVE GRID LAYOUT
   ========================================================================== */
    .health .premium-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1200px;
        width: 100%;
        box-sizing: border-box;
    }

    /* ==========================================================================
   PREMIUM CARD ARTIFACT DESIGN
   ========================================================================== */
    .health .care-card {
        background: var(--white);
        border-radius: 16px;
        padding: 40px 30px;
        text-align: center;
        border: 1px solid rgba(197, 157, 63, 0.15);
        box-shadow: var(--card-shadow);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        box-sizing: border-box;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

        /* Luxurious Top Accent Border */
        .health .care-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-green), var(--brand-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .health .care-card:hover::before {
            transform: scaleX(1);
        }

        .health .care-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(7, 43, 25, 0.15);
            border-color: var(--brand-gold);
        }

    /* Animated Icon Wrapper */
    .health .icon-wrapper {
        width: 80px;
        height: 80px;
        background: rgba(11, 66, 38, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px auto;
        position: relative;
        transition: all 0.4s ease;
    }

        .health .icon-wrapper i {
            font-size: 2rem;
            color: var(--brand-green);
            transition: all 0.4s ease;
        }

    /* Dynamic Hover States */
    .health .care-card:hover .icon-wrapper {
        background: var(--brand-green);
    }

        .health .care-card:hover .icon-wrapper i {
            color: var(--brand-gold);
            transform: rotateY(180deg);
        }

    .health .card-title {
        font-size: 1.4rem;
        color: var(--brand-green);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .health .card-text {

        font-size: 0.95rem;
        color: #555;
        margin-bottom: 20px;
    }

    /* Premium Text Link Button */
    .health .premium-link {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--brand-gold);
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }

        .health .premium-link i {
            font-size: 0.8rem;
        }

    .health .care-card:hover .premium-link {
        gap: 10px;
        color: var(--brand-gold-hover);
    }

/* ==========================================================================
   STRICT RESPONSIVENESS BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .health .premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .health .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 650px) {
    .health .premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .health {
        padding: 50px 15px;
    }

        .health .section-title {
            font-size: 1.8rem;
        }
}
.header-cart-btn{
    color:var(--brand-green);
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Typography variables scoped directly to our wrapper */
.healthcare {
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light-bg);
    padding: 100px 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* INITIAL STATE FOR SCROLL ANIMATION */
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

    /* CLASS TRIGGERED BY JAVASCRIPT ON SCROLL */
    .healthcare.reveal-active {
        opacity: 1;
        transform: translateY(0);
    }

.healthcare-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Header Area */
.healthcare-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.healthcare-tag {
    font-family: var(--font-body);
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.healthcare-title {
    font-family: var(--font-heading);
    color: var(--brand-green);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.healthcare-desc {
    font-family: var(--font-body);
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Grid Layout */
.healthcare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

/* Ayurvedic Luxury Card Artifact */
.healthcare-card {
    background: var(--white);
    border-radius: 24px;
    padding: 45px 35px 35px 35px;
    border: 1px solid rgba(197, 157, 63, 0.12);
    box-shadow: var(--card-shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    /* Luxury Card Top Border Ribbon */
    .healthcare-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--brand-green), var(--brand-gold));
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        transform: scaleX(0.3);
        transition: transform 0.5s ease;
    }

/* Premium Badges */
.healthcare-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(11, 66, 38, 0.06);
    color: var(--brand-green);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Icon Aesthetics */
.healthcare-icon-box {
    width: 70px;
    height: 70px;
    background: #f1ede4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

    .healthcare-icon-box i {
        font-size: 2rem;
        color: var(--brand-green);
        transition: all 0.4s ease;
    }

.healthcare-card-title {
    font-family: var(--font-heading);
    color: var(--brand-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.healthcare-card-text {
    font-family: var(--font-body);
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Card Footer Action Items */
.healthcare-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0ede6;
    padding-top: 20px;
    margin-top: auto;
}

.healthcare-price {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-green);
}

.healthcare-btn {
    font-family: var(--font-body);
    background: var(--brand-green);
    color: var(--white);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--brand-green);
    transition: all 0.3s ease;
}

/* INTERACTIVE CARD HOVER PARADIGMS */
.healthcare-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(7, 43, 25, 0.12);
    border-color: var(--brand-gold);
}

    .healthcare-card:hover::before {
        transform: scaleX(1);
    }

    .healthcare-card:hover .healthcare-icon-box {
        background: var(--brand-green);
    }

        .healthcare-card:hover .healthcare-icon-box i {
            color: var(--brand-gold);
            transform: scale(1.1);
        }

    .healthcare-card:hover .healthcare-btn {
        background: var(--brand-gold);
        border-color: var(--brand-gold);
        color: var(--white);
    }

        .healthcare-card:hover .healthcare-btn:hover {
            background: var(--brand-gold-hover);
            border-color: var(--brand-gold-hover);
        }

/* ==========================================================================
   STRICT RESPONSIVENESS AND DEVICE VIEWPORT HANDLING
   ========================================================================== */
@media (max-width: 1024px) {
    .healthcare-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .healthcare-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .healthcare {
        padding: 60px 15px;
    }

    .healthcare-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .healthcare-title {
        font-size: 2rem;
    }

    .healthcare-card {
        padding: 35px 25px 25px 25px;
    }
}
/* ==========================================================================
           MANDATORY COMPLIANCE: UNIQUE WRAPPER LAYOUT (.personalcare)
           ========================================================================== */
.personalcare {
    padding: 120px 20px;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden; /* Restricts any child elements leaking outside browser bounds */
}

    .personalcare .split-magazine-container {
        max-width: 1300px;
        width: 100%;
        display: grid;
        grid-template-columns: 35% 65%;
        gap: 40px; /* Reduced gap from 60px to secure horizontal space */
        align-items: start;
        box-sizing: border-box;
    }

    /* ==========================================================================
           STATIONARY EDITORIAL LEFT HERO BLOCK
           ========================================================================== */
    .personalcare .editorial-left-panel {
        position: sticky;
        top: 60px;
        opacity: 0;
        transform: translateX(-20px); /* Tighter motion offset */
        transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);
    }

    .personalcare.reveal-active .editorial-left-panel {
        opacity: 1;
        transform: translateX(0);
    }

    .personalcare .brand-badge-line {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 5px;
        color: var(--brand-gold);
        font-weight: 700;
        display: block;
        margin-bottom: 20px;
    }

    .personalcare .editorial-title {
        font-family: var(--font-editorial);
        color: var(--brand-green);
        font-size: 3.2rem;
        line-height: 1.15;
        font-weight: 400;
        margin-bottom: 30px;
    }

        .personalcare .editorial-title span {
            font-weight: 700;
            display: block;
            color: var(--brand-gold);
        }

    .personalcare .editorial-paragraph {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .personalcare .editorial-sigil {
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, var(--brand-gold), transparent);
    }

    /* ==========================================================================
           ASYMMETRIC OFFSET RIGHT GALLERY GRID (Fixed Scaling)
           ========================================================================== */
    .personalcare .asymmetric-gallery-right {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Prevents columns from forcing grid outer expansion */
        gap: 30px;
        padding-top: 40px;
        box-sizing: border-box;
    }

    .personalcare .luxury-tile {
        opacity: 0;
        transform: translateY(60px);
        transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .personalcare.reveal-active .luxury-tile:nth-child(1) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    .personalcare.reveal-active .luxury-tile:nth-child(2) {
        opacity: 1;
        transform: translateY(-30px);
        transition-delay: 0.3s;
    }
    /* Controlled non-breaking offset */
    .personalcare.reveal-active .luxury-tile:nth-child(3) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s;
    }

    .personalcare .luxury-tile-inner {
        background: var(--white);
        border-radius: 0px;
        border-left: 1px solid rgba(197, 157, 63, 0.2);
        padding: 20px;
        box-shadow: var(--card-shadow);
        position: relative;
        transition: all 0.4s ease;
        box-sizing: border-box;
        width: 100%;
    }

    /* Fixed padding-top conflict causing height issues */
    .personalcare .tile-image-frame {
        width: 100%;
        height: 320px;
        overflow: hidden;
        position: relative;
    }

        .personalcare .tile-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

    .personalcare .tile-index {
        position: absolute;
        top: 20px;
        right: 20px;
        font-family: var(--font-editorial);
        color: rgba(11, 66, 38, 0.1);
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1;
        z-index: 2;
        transition: color 0.4s ease;
    }

    .personalcare .tile-details-box {
        padding: 25px 5px 5px 5px;
        text-align: left;
    }

    .personalcare .tile-category-tag {
        font-size: 0.75rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--brand-gold);
        font-weight: 600;
        display: block;
        margin-bottom: 8px;
    }

    .personalcare .tile-heading {
        font-family: var(--font-editorial);
        color: var(--brand-green);
        font-size: 1.35rem;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .personalcare .tile-abstract {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .personalcare .tile-action-link {
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--brand-green);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

        .personalcare .tile-action-link::after {
            content: '';
            width: 30px;
            height: 1px;
            background-color: var(--brand-gold);
            display: inline-block;
            transition: width 0.3s ease;
        }

    /* ==========================================================================
           UNIQUE DYNAMIC INTERACTIONS HOVER RULES
           ========================================================================== */
    .personalcare .luxury-tile-inner:hover {
        transform: scale(1.02);
        box-shadow: 0 40px 80px rgba(7, 43, 25, 0.08);
        border-left-color: var(--brand-green);
    }

        .personalcare .luxury-tile-inner:hover .tile-image-frame img {
            transform: scale(1.06);
        }

        .personalcare .luxury-tile-inner:hover .tile-index {
            color: var(--brand-gold);
        }

        .personalcare .luxury-tile-inner:hover .tile-action-link::after {
            width: 45px;
            background-color: var(--brand-green);
        }

/* ==========================================================================
           STRICT MOBILE & RESPONSIVE VIEWPORTS HANDLERS
           ========================================================================== */
@media (max-width: 1024px) {
    .personalcare .split-magazine-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .personalcare .editorial-left-panel {
        position: relative;
        top: 0;
        transform: none;
    }

    .personalcare .asymmetric-gallery-right {
        padding-top: 0;
    }

    .personalcare.reveal-active .luxury-tile:nth-child(2) {
        transform: translateY(0);
    }
}

@media (max-width: 680px) {
    .personalcare {
        padding: 60px 15px;
    }

        .personalcare .editorial-title {
            font-size: 2.3rem;
        }

        .personalcare .asymmetric-gallery-right {
            grid-template-columns: 1fr;
            gap: 40px;
        }
}
.professional {
    width: 100%;
    padding: 140px 20px;
    box-sizing: border-box;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* Premium Floating Animated Vector Shapes & Glows */
    .professional .animated-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 1;
        pointer-events: none;
        opacity: 0.35;
    }

    .professional .shape-one {
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(197, 157, 63, 0.2) 0%, transparent 70%);
        top: -50px;
        left: -120px;
        animation: professionalFloat 14s infinite alternate ease-in-out;
    }

    .professional .shape-two {
        width: 550px;
        height: 550px;
        background: radial-gradient(circle, rgba(11, 66, 38, 0.1) 0%, transparent 70%);
        bottom: -80px;
        right: -150px;
        animation: professionalFloat 20s infinite alternate-reverse ease-in-out;
    }

    /* Animated Premium Dotted Circle Canvas Accent */
    .professional .dotted-circle-matrix {
        position: absolute;
        width: 280px;
        height: 280px;
        top: 15%;
        right: 5%;
        z-index: 1;
        opacity: 0.18;
        background-image: radial-gradient(var(--brand-gold) 1.5px, transparent 1.5px);
        background-size: 16px 16px;
        border-radius: 50%;
        animation: professionalPulse 8s infinite ease-in-out;
    }

    .professional .dotted-circle-matrix-left {
        position: absolute;
        width: 200px;
        height: 200px;
        bottom: 10%;
        left: 2%;
        z-index: 1;
        opacity: 0.15;
        background-image: radial-gradient(var(--brand-green) 1.5px, transparent 1.5px);
        background-size: 14px 14px;
        border-radius: 50%;
        animation: professionalFloat 10s infinite alternate ease-in-out;
    }

    /* Container Layout */
    .professional .about-max-container {
        max-width: 1200px;
        width: 100%;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 90px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    /* Left Side: Editorial Image Block with Geometric Accents */
    .professional .about-visual-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .professional .main-image-frame {
        width: 85%;
        height: 580px;
        overflow: hidden;
        position: relative;
        z-index: 3;
        box-shadow: var(--card-shadow);
        border-left: 2px solid var(--brand-gold);
    }

        .professional .main-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

    /* Interactive Geometric Backframe Ring */
    .professional .geometric-ring {
        position: absolute;
        width: 360px;
        height: 360px;
        border: 1px dashed var(--brand-gold);
        border-radius: 50%;
        top: -40px;
        left: -30px;
        z-index: 2;
        opacity: 0.35;
        animation: professionalSpin 45s infinite linear;
    }

    .professional .geometric-solid-box {
        position: absolute;
        width: 110px;
        height: 110px;
        background-color: var(--brand-green);
        bottom: -20px;
        right: 20px;
        z-index: 4;
        box-shadow: 0 20px 45px rgba(7, 43, 25, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .professional .geometric-solid-box i {
            color: var(--brand-gold);
            font-size: 1.8rem;
            animation: professionalPulse 3.5s infinite ease-in-out;
        }

    /* Right Side: Narrative Content Block */
    .professional .about-content-wrapper {
        text-align: left;
    }

    .professional .brand-mini-logo {
        width: 110px;
        height: auto;
        margin-bottom: 25px;
        display: block;
    }

        .professional .brand-mini-logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

    .professional .about-tagline {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 6px;
        color: var(--brand-gold);
        font-weight: 700;
        display: block;
        margin-bottom: 15px;
    }

    .professional .about-heading {
        font-family: var(--f-serif);
        color: var(--brand-green);
        font-size: 3.2rem;
        line-height: 1.25;
        font-weight: 400;
        margin: 0 0 25px 0;
    }

        .professional .about-heading span {
            color: var(--brand-gold);
            font-weight: 700;
        }

    .professional .about-desc-primary {
        font-size: 1.1rem;
        color: var(--sidebar-dark);
        line-height: 1.8;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .professional .about-desc-secondary {
        font-size:16px;
        color: #55605a;
        line-height: 1.75;
        margin-bottom: 35px;
    }

    /* Pillars Infographic Grid */
    .professional .pillars-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-bottom: 45px;
    }

    .professional .pillar-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .professional .pillar-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-color: var(--white);
        border: 1px solid rgba(197, 157, 63, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--brand-green);
        font-size: 1.05rem;
        box-shadow: var(--card-shadow);
    }

    .professional .pillar-title {
        font-family: var(--f-serif);
        font-size: 1.1rem;
        color: var(--brand-green);
        margin: 0 0 5px 0;
        font-weight: 600;
    }

    .professional .pillar-text {
        font-size: 16px;
        color: #65706a;
        margin: 0;
        line-height: 1.5;
    }

    /* Premium CTA Button */
    .professional .about-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        background-color: var(--brand-green);
        color: var(--white);
        text-transform: uppercase;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 2px;
        padding: 16px 38px;
        text-decoration: none;
        box-shadow: 0 15px 35px rgba(11, 66, 38, 0.2);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
        z-index: 2;
    }

        .professional .about-cta-btn i {
            color: var(--brand-gold);
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

    /* Hover Dynamics */
    .professional .main-image-frame:hover img {
        transform: scale(1.06);
    }

    .professional .about-cta-btn:hover {
        background-color: var(--brand-gold-hover);
        box-shadow: 0 15px 35px rgba(168, 130, 46, 0.3);
    }

        .professional .about-cta-btn:hover i {
            transform: translateX(6px);
            color: var(--white);
        }

/* ==========================================================================
           KEYFRAME ENGINES (ANIMATIONS)
           ========================================================================== */
@keyframes professionalFloat {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-35px) scale(1.08);
    }
}

@keyframes professionalSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes professionalPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* ==========================================================================
           STRICT RESPONSIVE ENGINE
           ========================================================================== */
@media (max-width: 1024px) {
    .professional .about-max-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .professional {
        padding: 90px 20px;
    }

        .professional .main-image-frame {
            width: 100%;
            height: 480px;
        }

        .professional .geometric-ring {
            width: 300px;
            height: 300px;
            left: -10px;
        }

        .professional .dotted-circle-matrix {
            top: 5%;
            width: 180px;
            height: 180px;
        }
}

@media (max-width: 680px) {
    .professional .about-heading {
        font-size: 2.3rem;
    }

    .professional .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .professional .main-image-frame {
        height: 350px;
    }

    .professional .geometric-solid-box {
        width: 85px;
        height: 85px;
        bottom: -15px;
        right: 5px;
    }
}
.custom-breadcrumb {
    position: relative;
    overflow: hidden;
    padding:90px 20px;
    background: var(--brand-green);
}
    .custom-breadcrumb::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
        top: -350px;
        left: -250px;
    }
.shape1 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, .10);
    top: 20%;
    left: 10%;
    animation: floatShape 6s ease-in-out infinite;
}

.custom-breadcrumb-shape {
    position: absolute;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}
.shape2 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .08);
    right: 8%;
    bottom: 15%;
    animation: floatShape 8s ease-in-out infinite;
}
.custom-breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width:100%;
}
.custom-breadcrumb-subtitle {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeUp 1s ease;
}
.custom-breadcrumb-title {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeUp 1.2s ease;
}
.custom-breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    animation: fadeUp 1.4s ease;
}
    .custom-breadcrumb-nav li {
        color: #fff;
        font-size: 17px;
    }
        .custom-breadcrumb-nav li a {
            color: #fff;
            text-decoration: none;
            transition: .3s;
        }
    .custom-breadcrumb-nav .active {
        color: #fff7d1;
        font-weight: 600;
    }
.custom-breadcrumb::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
    right: -250px;
    bottom: -250px;
}

.custom-breadcrumb-shape {
    position: absolute;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}
@keyframes floatShape{
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}
.scroll-hint-space {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f0e7;
    color: var(--brand-green);
    font-family: var(--f-serif);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* ==========================================================================
           STRICT COMPLIANCE WRAPPER: .aboutUsnew (Scope Isolation)
           ========================================================================== */
.aboutUsnew {
    width: 100%;
    padding: 100px 20px;
    box-sizing: border-box;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

    /* Fine Decorative Ayurvedic Geometric Orbs */
    .aboutUsnew .ab-ambient-svg {
        position: absolute;
        width: 300px;
        height: 300px;
        border: 1px dashed rgba(197, 157, 63, 0.15);
        border-radius: 50%;
        top: -50px;
        left: -50px;
        pointer-events: none;
        animation: abRotateLoop 60s infinite linear;
    }

    /* Layout Container Grid */
    .aboutUsnew .ab-grid-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 70px;
        align-items: center;
    }

    /* Left Column: Premium Visual Collage System */
    .aboutUsnew .ab-visual-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .aboutUsnew .ab-main-image-box {
        width: 85%;
        height: 520px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        position: relative;
    }

        .aboutUsnew .ab-main-image-box img {
            width: 100%;
            height: 100%;
/*            object-fit: cover;
*/        }

    /* Float Overlay Logo Card */
    .aboutUsnew .ab-logo-badge-card {
        position: absolute;
        bottom: -30px;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        border-radius: 6px;
        box-shadow: 0 20px 45px rgba(7, 43, 25, 0.12);
        width: 220px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(197, 157, 63, 0.2);
    }

        .aboutUsnew .ab-logo-badge-card img {
            width: 100%;
            height: 100%;
        }

    /* Right Column: Premium Text Stack */
    .aboutUsnew .ab-text-wrapper {
        display: flex;
        flex-direction: column;
    }

    .aboutUsnew .ab-tagline {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--brand-gold);
        font-weight: 700;
        margin-bottom: 12px;
    }

    .aboutUsnew .ab-heading {
        font-family: var(--f-serif);
        color: var(--brand-green);
        font-size: 2.6rem;
        line-height: 1.25;
        margin: 0 0 25px 0;
        font-weight: 400;
    }

        .aboutUsnew .ab-heading strong {
            color: var(--brand-gold);
            font-weight: 700;
        }

    .aboutUsnew .ab-pitch {
        font-size: 1.05rem;
        color: var(--sidebar-dark);
        line-height: 1.8;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .aboutUsnew .ab-description {
        font-size: 0.95rem;
        color: #55605a;
        line-height: 1.75;
        margin-bottom: 35px;
    }

    /* Brand Pillars Row */
    .aboutUsnew .ab-pillars-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .aboutUsnew .ab-pillar-item {
        display: flex;
        align-items: center;
        gap: 12px;
        background-color: var(--white);
        padding: 16px 20px;
        border-radius: 4px;
        box-shadow: var(--card-shadow);
        border-left: 3px solid var(--brand-gold);
    }

        .aboutUsnew .ab-pillar-item i {
            color: var(--brand-green);
            font-size: 1.1rem;
        }

    .aboutUsnew .ab-pillar-title {
        font-size: 0.88rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--sidebar-dark);
    }

    /* ==========================================================================
           SCROLL INTERSECTION ANIMATION ARCHITECTURE (CSS States)
           ========================================================================== */

    /* Initial Hidden States before Scroll Trigger */
    .aboutUsnew .ab-scroll-animate-left {
        opacity: 0;
        transform: translateX(-60px) scale(0.98);
        transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .aboutUsnew .ab-scroll-animate-right {
        opacity: 0;
        transform: translateX(60px);
        transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    }

        /* Active Reveal States (Triggered by JS when visible on Window view) */
        .aboutUsnew .ab-scroll-animate-left.ab-reveal-active,
        .aboutUsnew .ab-scroll-animate-right.ab-reveal-active {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

/* Infinite Structural BG Rotation */
@keyframes abRotateLoop {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
           STRICT RESPONSIVE GRID ENGINE
           ========================================================================== */
@media (max-width: 992px) {
    .aboutUsnew .ab-grid-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .aboutUsnew {
        padding: 80px 40px;
    }

        .aboutUsnew .ab-main-image-box {
            width: 100%;
            height: 420px;
        }
        /* Reset transform sideways vectors for cleaner mobile scroll presentation */
        .aboutUsnew .ab-scroll-animate-left,
        .aboutUsnew .ab-scroll-animate-right {
            transform: translateY(40px);
        }

            .aboutUsnew .ab-scroll-animate-left.ab-reveal-active,
            .aboutUsnew .ab-scroll-animate-right.ab-reveal-active {
                transform: translateY(0);
            }
}

@media (max-width: 576px) {
    .aboutUsnew {
        padding: 60px 20px;
    }

        .aboutUsnew .ab-heading {
            font-size: 2rem;
        }

        .aboutUsnew .ab-pillars-row {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .aboutUsnew .ab-logo-badge-card {
            width: 120px;
            height: 120px;
            bottom: -20px;
        }
}
.myNewclass {
    width: 100%;
    padding: 120px 20px;
    box-sizing: border-box;
    background-color: #f6f6f6;
    position: relative;
}

    .myNewclass .v-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    /* Left-aligned Sleek Header Structure */
    .myNewclass .v-section-intro {
        margin-bottom: 100px;
        border-left: 3px solid var(--brand-gold);
        padding-left: 25px;
    }

    .myNewclass .v-pre-title {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--brand-gold);
        font-weight: 700;
        display: block;
        margin-bottom: 8px;
    }

    .myNewclass .v-main-title {
        font-family: var(--f-serif);
        color: var(--brand-green);
        font-size: 2.6rem;
        margin: 0;
        font-weight: 500;
        line-height: 1.2;
    }

    /* Fluid Alternating Row Engine */
    .myNewclass .v-ecosystem-flow {
        display: flex;
        flex-direction: column;
        gap: 120px;
        position: relative;
    }

        /* Centralized Aesthetic Connecting Line for Desktop */
        .myNewclass .v-ecosystem-flow::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(197, 157, 63, 0.25) 15%, rgba(197, 157, 63, 0.25) 85%, transparent);
            transform: translateX(-50%);
        }

    .myNewclass .v-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
    }

        /* Left-Right Alternate Direction Rule */
        .myNewclass .v-row:nth-child(even) .v-media-side {
            order: 2;
        }

        .myNewclass .v-row:nth-child(even) .v-info-side {
            order: 1;
            text-align: right;
            padding-right: 40px;
            padding-left: 0;
        }

        .myNewclass .v-row:nth-child(odd) .v-info-side {
            padding-left: 40px;
        }

    /* Media Frame: Pure Editorial Minimalist Cut */
    .myNewclass .v-media-side {
        position: relative;
        width: 100%;
        height: 380px;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
    }

        .myNewclass .v-media-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

    /* Elegant Floating Counter Ribbon */
    .myNewclass .v-counter-ribbon {
        position: absolute;
        top: 20px;
        left: 20px;
        background-color: var(--brand-green);
        color: var(--brand-gold);
        font-family: var(--f-serif);
        padding: 8px 14px;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 1px;
        border-radius: 2px;
        z-index: 2;
    }

    .myNewclass .v-row:nth-child(even) .v-counter-ribbon {
        left: auto;
        right: 20px;
    }

    /* Typography Info Blocks */
    .myNewclass .v-info-side {
        display: flex;
        flex-direction: column;
    }

        .myNewclass .v-info-side i {
            font-size: 2rem;
            color: var(--brand-gold);
            margin-bottom: 20px;
        }

    .myNewclass .v-block-title {
        font-family: var(--f-serif);
        font-size: 1.8rem;
        color: var(--brand-green);
        margin: 0 0 15px 0;
        font-weight: 600;
    }

    .myNewclass .v-block-desc {
        font-size: 0.95rem;
        color: #55605a;
        line-height: 1.8;
        margin: 0 0 25px 0;
    }

    /* Custom Underlined Button Link */
    .myNewclass .v-action-btn {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--brand-green);
        text-decoration: none;
        font-weight: 700;
        position: relative;
        align-self: flex-start;
        padding-bottom: 4px;
        transition: color 0.3s ease;
    }

        .myNewclass .v-action-btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 2px;
            background-color: var(--brand-gold);
            transition: width 0.3s ease;
        }

    .myNewclass .v-row:nth-child(even) .v-action-btn {
        align-self: flex-end;
    }

    /* Hover States */
    .myNewclass .v-row:hover .v-media-side img {
        transform: scale(1.05);
    }

    .myNewclass .v-action-btn:hover {
        color: var(--brand-gold);
    }

        .myNewclass .v-action-btn:hover::after {
            width: 100%;
        }

    /* ==========================================================================
           SCROLL REVEAL STRUCTURE (Asymmetric Micro Animations)
           ========================================================================== */
    .myNewclass .v-animate-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .myNewclass .v-animate-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    }

        /* Trigger Triggered Framework Active States */
        .myNewclass .v-animate-left.reveal-active,
        .myNewclass .v-animate-right.reveal-active {
            opacity: 1;
            transform: translateX(0);
        }

/* ==========================================================================
           RESPONSIVE RE-ENGINEERING
           ========================================================================== */
@media (max-width: 992px) {
    .myNewclass .v-row {
        gap: 40px;
    }

    .myNewclass .v-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .myNewclass .v-ecosystem-flow::before {
        left: 20px;
    }

    .myNewclass .v-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 20px;
    }

        .myNewclass .v-row:nth-child(even) .v-media-side {
            order: 1;
        }

        .myNewclass .v-row:nth-child(even) .v-info-side {
            order: 2;
            text-align: left;
            padding-right: 0;
        }

        .myNewclass .v-row:nth-child(odd) .v-info-side {
            padding-left: 0;
        }

    .myNewclass .v-info-side {
        padding-left: 0 !important;
    }

    .myNewclass .v-action-btn {
        align-self: flex-start !important;
    }

    .myNewclass .v-media-side {
        height: 300px;
    }
    /* Mobile view fallback for smoother scrolling translations */
    .myNewclass .v-animate-left, .myNewclass .v-animate-right {
        transform: translateY(40px);
    }

        .myNewclass .v-animate-left.reveal-active, .myNewclass .v-animate-right.reveal-active {
            transform: translateY(0);
        }
}
.ourmisvis {
    width: 100%;
    padding: 120px 20px;
    box-sizing: border-box;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

    .ourmisvis .mv-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    /* Minimalist Modern Header */
    .ourmisvis .mv-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 90px auto;
    }

    .ourmisvis .mv-pre-title {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 5px;
        color: var(--brand-gold);
        font-weight: 700;
        display: block;
        margin-bottom: 12px;
    }

    .ourmisvis .mv-main-title {
        font-family: var(--f-serif);
        color: var(--brand-green);
        font-size: 2.8rem;
        margin: 0;
        font-weight: 500;
        line-height: 1.25;
    }

        .ourmisvis .mv-main-title span {
            color: var(--brand-gold);
            font-weight: 700;
        }

    /* 3-Column Luxury Matrix Grid */
    .ourmisvis .mv-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    /* Core Card Premium Structural Layout */
    .ourmisvis .mv-card {
        background-color: var(--light-bg);
        border-radius: 8px;
        padding: 50px 35px;
        box-sizing: border-box;
        position: relative;
        border: 1px solid rgba(11, 66, 38, 0.03);
        transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        display: flex;
        flex-direction: column;
        box-shadow: var(--card-shadow);
    }

    /* Floating Architectural Top Badge Icon */
    .ourmisvis .mv-icon-wrapper {
        width: 70px;
        height: 70px;
        background-color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-green);
        font-size: 1.8rem;
        margin-bottom: 35px;
        box-shadow: 0 10px 25px rgba(7, 43, 25, 0.05);
        transition: all 0.4s ease;
        position: relative;
    }

        /* Pure Gold Micro Accent Ring */
        .ourmisvis .mv-icon-wrapper::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border: 1px dashed var(--brand-gold);
            border-radius: 50%;
            opacity: 0.3;
            transition: transform 0.6s ease;
        }

    .ourmisvis .mv-title {
        font-family: var(--f-serif);
        font-size: 1.6rem;
        color: var(--brand-green);
        margin: 0 0 20px 0;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .ourmisvis .mv-desc {
        font-size: 0.95rem;
        color: var(--mv-text);
        line-height: 1.75;
        margin: 0;
    }

    /* Interactive Core Values List Style inside Card 3 */
    .ourmisvis .mv-values-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

        .ourmisvis .mv-values-list li {
            font-size: 0.95rem;
            color: var(--mv-text);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }

            .ourmisvis .mv-values-list li i {
                color: var(--brand-gold);
                font-size: 0.9rem;
            }

    /* Decorative Abstract Corner Line */
    .ourmisvis .mv-card::before {
        content: '';
        position: absolute;
        top: 25px;
        right: 25px;
        width: 15px;
        height: 15px;
        border-top: 2px solid transparent;
        border-right: 2px solid transparent;
        transition: all 0.4s ease;
    }

    /* ==========================================================================
           HIGH-END INTERACTIVE HOVER EFFECTS
           ========================================================================== */
    .ourmisvis .mv-card:hover {
        transform: translateY(-12px);
        background-color: var(--white);
        box-shadow: 0 30px 60px rgba(7, 43, 25, 0.08);
        border-color: rgba(197, 157, 63, 0.2);
    }

        .ourmisvis .mv-card:hover .mv-icon-wrapper {
            background-color: var(--brand-green);
            color: var(--white);
            transform: scale(1.05);
        }

            .ourmisvis .mv-card:hover .mv-icon-wrapper::after {
                transform: rotate(180deg) scale(1.1);
                opacity: 0.7;
                border-color: var(--brand-gold-hover);
            }

        .ourmisvis .mv-card:hover::before {
            border-color: var(--brand-gold);
            width: 25px;
            height: 25px;
        }

    /* ==========================================================================
           SCROLL MICRO-ANIMATION ENGINE (Intersection Observer States)
           ========================================================================== */
    .ourmisvis .mv-reveal-node {
        opacity: 0;
        transform: translateY(60px);
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Staggered Chain Delays for Columns */
    .ourmisvis .mv-delay-0 {
        transition-delay: 0s;
    }

    .ourmisvis .mv-delay-1 {
        transition-delay: 0.2s;
    }

    .ourmisvis .mv-delay-2 {
        transition-delay: 0.4s;
    }

    /* Animation Trigger Target State */
    .ourmisvis .mv-reveal-node.reveal-active {
        opacity: 1;
        transform: translateY(0);
    }

/* ==========================================================================
           RESPONSIVE RE-ENGINEERING GRID BREAKPOINTS
           ========================================================================== */
@media (max-width: 1024px) {
    .ourmisvis .mv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .ourmisvis .mv-card:nth-child(3) {
        grid-column: span 2;
    }

    .ourmisvis .mv-main-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .ourmisvis .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ourmisvis .mv-card:nth-child(3) {
        grid-column: span 1;
    }

    .ourmisvis .mv-main-title {
        font-size: 2rem;
    }

    .ourmisvis {
        padding: 80px 16px;
    }

        .ourmisvis .mv-reveal-node {
            transition-delay: 0s !important;
            transform: translateY(40px);
        }
}
