/* ==========================================
   GLOBAL SETTINGS
   ========================================= */
:root {
    --kosher-orange: #F28C28; /* Logo color */
    --white: #ffffff;
    --black: #000000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #fff; overflow-x: hidden; }

/* ==========================================
   1. MENU BAR (Fixed Navigation)
   ========================================= */
.main-header {
    background: var(--white);
    padding: 16px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 45px; width: auto; object-fit: contain; }
/* Logo Wrapper to align img and text side by side */
.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px; /* Logo aur naam ke beech ka gap */
}

/* Company Name Styling */
.company-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif; /* Ya jo bhi aap use kar rahe hain */
}

/* "Optics" word ko orange color dene ke liye (Logo theme match) */
.company-name .highlight {
    color: #1a1a1a;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .company-name {
        font-size: 1.2rem;
    }
    .logo img {
        height: 35px;
    }
}
.nav-right {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    margin-right: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links li a:hover { color: var(--kosher-orange); }

.contact-btn {
    background: var(--kosher-orange);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
/* ==========================================
   MENU BAR RESPONSIVE (Fixed & Overlap Fix)
   ========================================== */

/* 1. Desktop & Global Navbar Fix */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Mobile menu placement ke liye */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Hamburger aur Button ke beech ka gap */
    justify-content: flex-end;
}

/* Hamburger Icon Style */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 5px; /* Click area badhane ke liye */
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: 0.3s ease-in-out;
}

/* Contact Button Fix (Prevents shrinking or breaking) */
.contact-btn {
    white-space: nowrap; /* Text ko ek line mein rakhega */
    display: inline-block;
    background-color: var(--kosher-orange);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

/* 2. Tablet & Mobile View (Under 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-links {
        display: flex !important; 
        flex-direction: column;
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: #ffffff;
        text-align: center;
        
        /* Transition settings */
        max-height: 0; 
        overflow: hidden; 
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        max-height: 500px;
        opacity: 1;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }

    .nav-links li a {
        font-size: 18px;
        margin-right: 0;
        display: block;
    }

    /* Logo and Button scaling for small screens */
    .logo img { height: 32px; }
    
    .contact-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .nav-right {
        gap: 10px; /* Mobile par thoda kam gap */
    }
}
/* ============================================================
   KOSHER OPTICS TECHNOLOGY PVT LTD - BALANCED MINIMAL HERO 
   ============================================================ */

/* ============================================================
   KOSHER OPTICS TECHNOLOGY PVT LTD - PREMIUM SCALED BANNER 
   ============================================================ */

.hero-container {
    position: relative;
    width: 100%;
    height: 85vh; /* Perfect desktop layout presentation viewport window height */
    background: #000000;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Pushes content down to the lower quadrant exactly like screenshot */
    justify-content: flex-start;
    box-sizing: border-box;
}

/* HIGH-END STABLE COHESIVE VIDEO LAYER */
.video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none !important; /* Kept fully crisp, clear, and bright */
}

/* CLEAN MARGIN CORNER LAYOUT WRAPPER */
.hero-left-align-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 650px;
    margin-left: 2%; /* Aligned cleanly with your navigation logo margin boundary */
    margin-bottom: 30px; /* Pushes text up slightly from bottom edge to match screenshot precisely */
    padding: 0 20px;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

/* TYPOGRAPHY STRUCTURE HEADERS */
.hero-main-heading {
    margin: 0 0 13px 0;
    line-height: 1.20;
}

.hero-main-heading span {
    font-size: clamp(2.5rem, 5vw, 4.2rem); /* Matches the heavy, bold font scaling from image */
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.orange-accent {
    color: #f37321 !important; /* Exact corporate orange accent marker color tint */
}

/* SUBTITLE COPYS DESC WRAPPER */
.hero-sub-descriptor {
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    color: #f4f4f5; /* Bright off-white for perfect legibility over moving backgrounds */
    line-height: 1.5;
    margin: 0 0 35px 0;
    font-weight: 400;
}

/* BRAND SIGNATURE ACTION BUTTON LAYOUTS */
.hero-action-orange-btn {
    display: inline-block;
    padding: 15px 38px;
    background-color: #f37321; /* Rich branded layout fill color */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px; /* Fully rounded oval ends pill design style */
    box-shadow: 0 10px 25px rgba(243, 115, 33, 0.25);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-action-orange-btn:hover {
    background-color: #e06212; /* Smooth darkening hover reaction */
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(243, 115, 33, 0.4);
}

/* ============================================================
   SEQUENTIAL PAPER TAPE HARDWARE-ACCELERATED SLIDE ENGINE 
   ============================================================ */

.tape-anim {
    display: block; /* Sets elements into clean sequential independent rows */
    opacity: 0;
    transform: translateX(-50px); /* Starts off-screen to the left */
    animation: luxuryTapeSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    
    /* Adds strong shadow layer contrast to guarantee crystal clear text over video reflections */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Precise timeline execution staggering markers */
.title-row-1 { animation-delay: 0.15s; }
.title-row-2 { animation-delay: 0.35s; }
.hero-sub-descriptor { animation-delay: 0.6s; }
.button-row-trigger { animation-delay: 0.8s; }

@keyframes luxuryTapeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================================
   RESPONSIVE COMPATIBILITY RESOLUTIONS (All Mobile Screens)
   ============================================================ */

@media (max-width: 992px) {
    .hero-container {
        height: 75vh;
    }
    .hero-left-align-content {
        margin-left: 4%;
        margin-bottom: 55px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        height: 70vh;
    }
    .hero-left-align-content {
        margin-left: 0;
        padding: 0 32px;
        margin-bottom: 50px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-container {
        height: 65vh; /* Perfect box height optimized for hand-held view scrolling */
    }
    .hero-left-align-content {
        padding: 0 24px;
        margin-bottom: 40px;
    }
    .hero-action-orange-btn {
        width: 100%; /* Spreads button to full-width for comfortable mobile thumb taps */
        text-align: center;
        padding: 14px 0;
    }
}

/* ==========================================
   PREMIUM ABOUT SECTION (Bhubaneswar Optimized)
   ========================================== */
/* ==========================================
   OUTSTANDING COMPANY OVERVIEW CSS
   ========================================== */

.overview-premium {
    padding: 100px 8%;
    background: #fbfbfb;
    overflow: hidden;
}

.premium-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Visual Box (Left Side) --- */
.visual-box {
    flex: 1;
    position: relative;
    min-width: 320px;
}

.glass-frame {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border: 8px solid #fff;
    z-index: 2;
    position: relative;
}

.gallery-engine {
    width: 100%;
    height: 100%;
    position: relative;
}

.store-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.1) rotate(2deg); /* Initial state */
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-item.active {
    opacity: 1;
    transform: scale(1) rotate(0deg); /* Active state (Pop-in) */
}

.store-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Accent */
.accent-circle {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: #F28C28;
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
    opacity: 0.3;
}

/* --- Content Box (Right Side) --- */
.content-box {
    flex: 1.2;
}

.badge {
    background: #F28C28;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.content-box h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin: 20px 0;
    color: #1a1a1a;
}

.content-box h2 span { color: #F28C28; }

.content-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.cin-tag {
    display: inline-flex;
    align-items: center;
    background: #eee;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.f-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #F28C28;
}

/* --- RESPONSIVE FIX (EVERY DEVICE) --- */
@media (max-width: 992px) {
    .premium-wrapper { flex-direction: column; text-align: center; }
    .glass-frame { height: 400px; }
    .cin-tag { justify-content: center; }
}

@media (max-width: 768px) {
    .overview-premium { padding: 60px 5%; }
    .premium-wrapper {
        flex-direction: column-reverse; /* Phone par Content upar, Gallery niche */
    }
    .glass-frame {
        height: 300px; /* IMPORTANT: Height fix for phone */
        width: 100%;
    }
    .feature-list { grid-template-columns: 1fr; }
}
/* ==========================================
   PRODUCTS & SERVICES - CLEARVUE STYLE
   ========================================== */

.services-section {
    padding: 80px 8%;
    background: #fff;
    overflow: hidden;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 50px;
    text-align: left;
}

.services-header .badge {
    color: #F28C28;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.services-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
}

.services-header h2 span { color: #F28C28; }

/* --- GRID LAYOUT --- */
.services-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    height: 700px;
}

.service-card {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

.service-card:hover { transform: translateY(-10px); }

/* Box 1 (Left Large) */
.service-card.large {
    grid-row: span 2;
}

.service-card img {
    width: 100%; height: 100%; object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0; left: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    width: 100%;
}

/* Box 2 (Right Top - Gradient Style) */
.card-split {
    display: flex;
    height: 100%;
}

.gradient-content {
    background: linear-gradient(135deg, #F28C28, #a3550c); /* Kosher Orange Gradient */
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Box 3 (Right Bottom - White Style) */
.card-white {
    background: #f9f9f9;
    height: 100%;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}

.white-content h3 { color: #1a1a1a; font-size: 1.8rem; margin-bottom: 10px; }
.white-content p { color: #666666; font-size: 0.95rem; }

.card-white img {
    width: auto; height: 120%; /* Glasses popping out */
    object-fit: contain;
}

/* --- MOTION ANIMATIONS --- */
.reveal { opacity: 0; transform: translateX(-50px); transition: 1s ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: 1s ease; }
.reveal-bottom { opacity: 0; transform: translateY(50px); transition: 1s ease; }

.reveal.active, .reveal-right.active, .reveal-bottom.active {
    opacity: 1;
    transform: translate(0);
}

/* --- MOBILE & TABLET FIX (Android/iPhone) --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr; /* Single column for tablets/phones */
        grid-template-rows: auto;
        height: auto; /* Remove fixed height */
        gap: 30px;
    }

    .service-card.large { 
        height: 450px; 
        grid-row: auto;
    }

    /* Tablet/Phone Layout Adjustment */
    .card-split {
        flex-direction: column-reverse; /* Pehle Image (niche wala code), Phir Text */
        height: auto;
    }

    /* Order Control: Image then Text */
    .card-split .img-side {
        width: 100%;
        height: 250px;
        order: 1; /* Image Top */
    }

    .gradient-content {
        width: 100%;
        padding: 30px 20px;
        order: 2; /* Text Bottom */
    }

    .card-white {
        flex-direction: column-reverse; /* Image then Text */
        height: auto;
        padding: 30px 20px;
    }

    .card-white .lens-img-box {
        width: 70%;
        margin-bottom: 20px;
        order: 1; /* Image Top */
    }

    .white-content {
        width: 100%;
        text-align: center;
        order: 2; /* Text Bottom */
    }
}

@media (max-width: 480px) {
    .services-section { padding: 50px 5%; }
    .card-overlay { padding: 20px; }
    .card-overlay h3 { font-size: 1.4rem; }
}
/* ==========================================
   CORE GLOBAL SETTINGS & CUSTOM VARIABLES after service section start 
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    overflow-x: hidden;
    color: #111111;
}

/* ==========================================
   HERO BANNER - BRANDED ORANGE THEME
   ========================================== */
.hero-banner {
    /* Pure Kosher Gradient Configuration Based on #F28C28 */
    background: linear-gradient(135deg, #F28C28 0%, #d46f14 50%, #ff9d3b 100%);
    border-radius: 32px;
    padding: 60px 50px;
    margin: 30px 25px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    min-height: 440px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(242, 140, 40, 0.15);
}

/* Ambient Visual Circles Background elements */
.hero-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 550px;
    height: 550px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    animation: floatOrb 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-15px) translateX(15px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Prevents overlapping on tablets */
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: slideFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.15);
    padding: 2px 14px;
    border-radius: 12px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 620px;
    animation: slideFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}

.hero-cta {
    display: inline-block;
    margin-top: 30px;
    background: #ffffff;
    color: #F28C28; /* Logo Text Accent color match */
    padding: 16px 45px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.hero-cta:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideFromRight 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image img {
    max-width: 380%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.25));
}

.hero-image-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Animations Mapping */
@keyframes slideFromLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================
   FEATURES CONTAINER GRID CONTROLS
   ========================================== */
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px auto;
    padding: 0 25px;
    max-width: 1400px;
}

.feature-section {
    border-radius: 28px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 35px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
    background: #ffffff;
}

/* Feature 1 Layout Settings */
.feature-text-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.feature-text-side {
    background: rgba(242, 140, 40, 0.04); /* Subdued Brand Soft Background */
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-subtitle {
    font-size: 0.8rem;
    color: #F28C28;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}

.feature-image-side {
    position: relative;
    overflow: hidden;
    background: #fdfdfd;
}

.feature-image-side img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-section:hover .feature-image-side img {
    transform: scale(1.05);
}

/* Feature 2 Layout Settings (Dual Images Grid) */
.feature-dual-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    background: #ffffff;
}

.dual-image-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 440px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.dual-image-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dual-image-item:hover img {
    transform: scale(1.06);
}

.dual-image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(242, 140, 40, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px 20px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dual-image-overlay span {
    font-size: 1.1rem;
    font-weight: 700;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dual-image-item:hover .dual-image-overlay { opacity: 1; }
.dual-image-item:hover .dual-image-overlay span { transform: translateY(0); }

/* --- FALLBACK PLACEHOLDERS STYLING --- */
.hero-image-placeholder img[src=""], 
.feature-image-side img[src=""], 
.dual-image-item img[src=""] {
    display: none !important;
}

.hero-image-placeholder span, .feature-image-placeholder, .dual-image-placeholder {
    padding: 20px; color: #888; font-size: 0.85rem; text-align: center; font-weight: 500;
}

/* ==========================================
   CROSS INTERACTION MEDIA RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-banner { grid-template-columns: 1fr; padding: 50px 40px; }
    .hero-image img { max-height: 300px; margin-top: 20px; }
    .features-container { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 640px) {
    .hero-banner { margin: 15px; padding: 35px 20px; border-radius: 20px; }
    .hero-cta { width: 100%; text-align: center; }
    .feature-text-image { grid-template-columns: 1fr; }
    .feature-text-side { padding: 35px 25px; }
    .feature-dual-image { grid-template-columns: 1fr; gap: 15px; padding: 15px; }
    .dual-image-item { min-height: 320px; }
}
/* ==========================================
   HERO BANNER - UPDATED WITH SIDE PADDING
   ========================================== */
.hero-banner {
    background: linear-gradient(135deg, #F28C28 0%, #d46f14 50%, #ff9d3b 100%);
    border-radius: 32px;
    padding: 60px 50px;
    
    /* Side margins adjusted to act as alignment padding with your site container */
    margin: 30px auto; 
    width: 100%;
    max-width: 1300px; /* Aligns perfectly with standard container limits */
    
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    min-height: 440px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(242, 140, 40, 0.15);
}

/* ==========================================
   FEATURES CONTAINER - ALIGNED WITH MAIN CONTAINER
   ========================================== */
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    
    /* Side margins centered smoothly with site grid rules */
    margin: 40px auto;
    padding: 0; 
    width: 100%;
    max-width: 1300px; /* Same max-width as hero to match the grid line */
}

/* ==========================================
   GLOBAL WRAPPER FOR PERFECT EDGE ALIGNMENT
   ========================================== */
/* Wrap both components inside this container class in your HTML if needed */
.site-main-wrapper {
    width: 100%;
    padding: 0 8%; /* This matches your standard site padding (like your impact/stores sections) */
    box-sizing: border-box;
    margin: 0 auto;
}

/* ==========================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
    .hero-banner { 
        grid-template-columns: 1fr; 
        padding: 50px 40px; 
        margin: 20px auto;
    }
    .hero-image img { max-height: 300px; margin-top: 20px; }
    .features-container { 
        grid-template-columns: 1fr; 
        gap: 25px; 
        margin: 20px auto;
    }
}

@media (max-width: 640px) {
    /* Fluid compression for smaller Android/iOS Viewports */
    .hero-banner { 
        padding: 35px 20px; 
        border-radius: 20px; 
    }
    .feature-text-image { grid-template-columns: 1fr; }
    .feature-text-side { padding: 35px 25px; }
    .feature-dual-image { grid-template-columns: 1fr; gap: 15px; padding: 15px; }
    .dual-image-item { min-height: 320px; }
}
/* ==========================================
   CORE GLOBAL SETTINGS & CUSTOM VARIABLES after service section start  end
   ========================================== */
/* ==========================================
   DYNAMIC GLASS-CARD STYLING WE SERVE SECTION
   ========================================== */

.dynamic-serves {
    padding: 100px 8%;
    background: #fdfdfd;
    overflow: hidden;
}

.serves-container {
    max-width: 1400px;
    margin: 0 auto;
}

.serves-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #313131;
    font-weight: 500;
    margin-top: 10px;
}

/* --- THE GRID --- */
.dynamic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* --- FLOATING CARD DESIGN --- */
.floating-card {
    /* Semi-transparent logo-based tint */
    background: rgba(242, 140, 40, 0.03); 
    backdrop-filter: blur(10px); /* Background blur effect */
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(242, 140, 40, 0.15);
    transition: all 0.5s ease;
    position: relative;
    text-align: center;
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #F28C28;
    box-shadow: 0 30px 80px rgba(3, 2, 2, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    color: #F28C28;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px auto;
    transition: 0.5s;
}

.floating-card:hover .card-icon {
    background: #F28C28;
    color: #fff;
    transform: rotateY(180deg);
}

.floating-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
}

.floating-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Premium Tags */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.card-tags span {
    background: #f8f8f8;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #555;
    border: 1px solid #eee;
}

/* --- MOTION REVEAL ANIMATION --- */
.reveal-3d {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 1s ease-out;
}

.reveal-3d.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- DEVICE ADAPTATION --- */
@media (max-width: 768px) {
    .dynamic-serves { padding: 60px 6%; }
    .dynamic-grid { grid-template-columns: 1fr; }
    .floating-card { padding: 30px 20px; }
}
/* ==========================================
   MISSION & VISION PREMIUM STYLING
   ========================================== */

.core-section {
    padding: 80px 8%;
    background: #fdfdfd;
}

.core-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Mission & Vision Grid --- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-align: center;
    transition: 0.4s ease;
}

.mv-card:hover { transform: translateY(-10px); border-color: #F28C28; }

.lottie-box {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px auto;
}

.mv-card h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.mv-card p {
    line-height: 1.8;
    color: #666;
}

/* --- What We Do Grid Fix --- */
.wwd-header { text-align: center; margin-bottom: 50px; }
.wwd-header h2 { font-size: 3rem; }
.wwd-header h2 span { color: #F28C28; }
.wwd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.wwd-item {
/* Semi-transparent logo-based tint */
    background: rgba(242, 140, 40, 0.03); 
    backdrop-filter: blur(10px); /* Background blur effect */
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(242, 140, 40, 0.15);
    transition: all 0.5s ease;
    position: relative;
    text-align: center;
}

/* Icon Container Styling */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffffff; /* Very light orange tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: #F28C28; /* Kosher Orange, */
    font-size: 2.2rem;
    transition: 0.5s;
    border: 1px solid rgba(242, 140, 40, 0.1);
}

/* Hover Effects */
.wwd-item:hover {
    transform: translateY(-12px);
    border-color: #F28C28;
    box-shadow: 0 20px 40px rgba(242, 140, 40, 0.1);
}

.wwd-item:hover .icon-wrapper {
    background: #F28C28;
    color: #ffffff;
    transform: rotateY(360deg); /* Full rotate on hover */
}

.wwd-item h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.wwd-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- MOBILE & TABLET FIX --- */
@media (max-width: 1024px) {
    .wwd-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .wwd-grid { grid-template-columns: 1fr; }
    .wwd-item { padding: 30px 20px; }
}

/* ==========================================
   RESPONSIVE (Phone & Tablet Fix)
   ========================================== */

@media (max-width: 1024px) {
    .wwd-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .core-section { padding: 60px 6%; }
    
    .mv-grid { grid-template-columns: 1fr; } /* Stack on phone */
    
    .mv-card { padding: 30px 20px; }
    
    .wwd-grid { grid-template-columns: 1fr; } /* Stack on phone */
    
    .wwd-header h2 { font-size: 2.2rem; }
}
/* ============================================
   KOSHER OPTICS – IMPACT SECTION STYLES
   File: ko-impact.css
   Fully responsive: 320px → 1600px+
   ============================================ */

/* ---- CSS CUSTOM PROPERTIES (Brand Tokens) ---- */
:root {
  --ko-orange:        #F38B23;
  --ko-orange-dim:    rgba(243, 139, 35, 0.13);
  --ko-orange-glow:   rgba(243, 139, 35, 0.22);
  --ko-dark:          #111315;
  --ko-dark-2:        #1A1D20;
  --ko-border:        rgba(255, 255, 255, 0.07);
  --ko-text-white:    #FFFFFF;
  --ko-text-muted:    #5A6473;
  --ko-text-dim:      #3A4452;
  --ko-bg:            #FFFFFF;
  --ko-font:          system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ko-radius-card:   20px;
  --ko-radius-panel:  28px;
  --ko-ease:          cubic-bezier(0.25, 1, 0.5, 1);
  --ko-transition:    0.35s var(--ko-ease);
}

/* ============================================
   SECTION WRAPPER
   ============================================ */
.ko-section {
  width: 100%;
  background: var(--ko-bg);
  padding: clamp(48px, 8vw, 100px) clamp(16px, 5vw, 40px);
  font-family: var(--ko-font);
  overflow: hidden;
}

.ko-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}

/* ============================================
   HEADER
   ============================================ */
.ko-header {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ko-header.ko-visible {
  opacity: 1;
  transform: translateY(0);
}

.ko-header h2 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #111315;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.ko-header .ko-orange {
  color: var(--ko-orange);
}

.ko-header p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  color: var(--ko-text-muted);
}

/* ============================================
   MAIN TWO-COLUMN GRID
   ============================================ */
.ko-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}

@media (max-width: 960px) {
  .ko-main-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LEFT — DESKTOP: 3D SPINNING CAROUSEL
   ============================================ */
.ko-carousel-wrap {
  height: clamp(360px, 50vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
  position: relative;
}

.ko-spinner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: koSpin 28s linear infinite;
}

.ko-spinner:hover {
  animation-play-state: paused;
}

.ko-slab {
  position: absolute;
  width: clamp(240px, 30vw, 300px);
  height: 195px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  top: 50%;
  left: 50%;
  margin-left: calc(clamp(240px, 30vw, 300px) / -2);
  margin-top: -97px;
}

.ko-slab:nth-child(1) { transform: rotateY(0deg)   translateZ(clamp(160px, 22vw, 230px)); }
.ko-slab:nth-child(2) { transform: rotateY(90deg)  translateZ(clamp(160px, 22vw, 230px)); }
.ko-slab:nth-child(3) { transform: rotateY(180deg) translateZ(clamp(160px, 22vw, 230px)); }
.ko-slab:nth-child(4) { transform: rotateY(270deg) translateZ(clamp(160px, 22vw, 230px)); }

.ko-slab-inner {
  width: 100%;
  height: 100%;
  background: var(--ko-dark);
  border: 1px solid var(--ko-border);
  border-radius: var(--ko-radius-card);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color var(--ko-transition),
    box-shadow var(--ko-transition),
    transform var(--ko-transition);
  cursor: default;
}

.ko-slab:hover .ko-slab-inner {
  border-color: var(--ko-orange);
  transform: translateZ(18px);
  box-shadow: 0 12px 40px var(--ko-orange-glow);
}

/* Hide carousel on mobile */
@media (max-width: 960px) {
  .ko-carousel-wrap {
    display: none;
  }
}

/* ============================================
   LEFT — MOBILE: FLAT STACKED CARDS
   ============================================ */
.ko-mobile-cards {
  display: none;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 960px) {
  .ko-mobile-cards {
    display: flex;
  }
}

.ko-mobile-card {
  background: var(--ko-dark);
  border: 1px solid var(--ko-border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateX(-18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.3s ease;
}

.ko-mobile-card.ko-visible {
  opacity: 1;
  transform: translateX(0);
}

.ko-mobile-card:hover {
  border-color: var(--ko-orange);
}

.ko-mobile-card-info {
  flex: 1;
}

.ko-mobile-card-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ko-text-white);
  margin-bottom: 2px;
}

.ko-mobile-card-info .ko-count {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ko-orange);
  line-height: 1.2;
}

.ko-mobile-card-info .ko-cap {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--ko-text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ============================================
   SHARED CARD INNER COMPONENTS
   ============================================ */

/* State badge circle (holds logo or abbreviation) */
.ko-badge-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ko-orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ko-badge-circle span {
  font-size: 11px;
  font-weight: 800;
  color: var(--ko-orange);
  letter-spacing: -0.3px;
}

.ko-state-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 3px;
  display: block;
}

/* Title row (icon + state name) */
.ko-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ko-title-row h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ko-text-white);
}

/* Rolling slot counter */
.ko-counter-row {
  height: 44px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.ko-strip {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  font-weight: 800;
  color: var(--ko-orange);
}

.ko-strip div {
  height: 44px;
  font-size: 2rem;
  line-height: 44px;
  white-space: nowrap;
}

.ko-strip.ko-animated {
  animation: koCountUp 3.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.ko-plus {
  position: absolute;
  right: 6px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ko-text-white);
  line-height: 44px;
}

/* Caption row */
.ko-caption {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: var(--ko-text-muted);
  text-transform: uppercase;
}

/* Live pulse dot */
.ko-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
  background: var(--ko-orange);
  animation: koPulse 2s infinite;
}

.ko-dot.dim {
  background: var(--ko-text-muted);
  animation: none;
}

.ko-live {
  color: var(--ko-orange) !important;
}

/* ============================================
   RIGHT — GROWTH PANEL
   ============================================ */
.ko-panel {
  width: 100%;
  opacity: 0;
  transform: rotateY(-10deg) translateY(18px);
  transform-style: preserve-3d;
  transition:
    opacity 0.7s 0.2s ease,
    transform 0.7s 0.2s var(--ko-ease);
}

.ko-panel.ko-visible {
  opacity: 1;
  transform: rotateY(-10deg) translateY(0);
}

.ko-panel:hover {
  transform: rotateY(-2deg) translateZ(24px) !important;
}

/* Disable 3D tilt on smaller screens */
@media (max-width: 960px) {
  .ko-panel,
  .ko-panel.ko-visible,
  .ko-panel:hover {
    transform: none !important;
    opacity: 1;
  }
}

.ko-panel-glass {
  background: var(--ko-dark);
  border-radius: var(--ko-radius-panel);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--ko-border);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Goal tag badge */
.ko-goal-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ko-orange);
  background: var(--ko-orange-dim);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  animation: koBadgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.ko-goal-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ko-orange);
  animation: koPulse 2s infinite;
  flex-shrink: 0;
}

/* Mega rolling counter */
.ko-mega-viewport {
  height: clamp(56px, 8vw, 80px);
  overflow: hidden;
  position: relative;
}

.ko-mega-strip {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  font-weight: 800;
  color: var(--ko-orange);
}

.ko-mega-strip div {
  height: clamp(56px, 8vw, 80px);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: clamp(56px, 8vw, 80px);
  white-space: nowrap;
}

.ko-mega-strip.ko-animated {
  animation: koMegaCount 4s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.ko-goal-sub {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--ko-text-muted);
  line-height: 1.6;
  margin-top: 8px;
  max-width: 340px;
}

.ko-goal-sub strong {
  color: var(--ko-orange);
}

/* Divider line */
.ko-divider {
  height: 1px;
  background: var(--ko-border);
  margin: clamp(18px, 3vw, 28px) 0;
}

/* 3 Mini stat cards */
.ko-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.ko-stat-card {
  background: var(--ko-dark-2);
  border: 1px solid var(--ko-border);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.ko-stat-card:hover {
  border-color: rgba(243, 139, 35, 0.4);
}

.ko-stat-card .ko-stat-num {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--ko-orange);
  line-height: 1.2;
}

.ko-stat-card .ko-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ko-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* SVG chart container */
.ko-chart-box {
  position: relative;
}

.ko-svg-chart {
  width: 100%;
  overflow: visible;
  display: block;
}

.ko-svg-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

.ko-svg-line.ko-animated {
  animation: koLineDraw 3.2s ease-out 1s both;
}

.ko-svg-area {
  opacity: 0;
}

.ko-svg-area.ko-animated {
  animation: koAreaFade 2.2s ease-out 1.6s both;
}

.ko-node-pulse {
  transform-origin: 458px 28px;
}

.ko-node-pulse.ko-animated {
  animation: koNodePulse 2.2s infinite ease-out 3.2s;
}

/* Chart x-axis labels */
.ko-chart-x-labels {
  display: flex;
  justify-content: space-between;
  padding: 10px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 6px;
}

.ko-chart-x-labels span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ko-text-dim);
}

/* Chart legend */
.ko-legend {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.ko-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ko-text-muted);
}

.ko-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ko-orange);
  flex-shrink: 0;
}

.ko-legend-line {
  width: 18px;
  height: 2px;
  background: var(--ko-orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================
   BOTTOM — STATE COVERAGE PILLS
   ============================================ */
.ko-coverage-strip {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s 0.3s ease,
    transform 0.7s 0.3s ease;
}

.ko-coverage-strip.ko-visible {
  opacity: 1;
  transform: translateY(0);
}

.ko-coverage-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ko-text-muted);
  margin-bottom: 14px;
  text-align: center;
}

.ko-state-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ---- CARD KA SIZE BADA KARNE KE LIYE ---- */
.ko-pill {
  display: flex;
  align-items: center;
  gap: 12px;                  /* Gap ko 8px se 12px kiya */
  background: var(--ko-dark);
  border: 1px solid var(--ko-border);
  border-radius: 40px;        /* Radius thoda badhaya takis size ke sath match kare */
  padding: 12px 24px 12px 16px; /* Padding badhaye (Top/Bottom 12px, Right 24px, Left 16px) */
  cursor: default;
  transition: border-color 0.3s ease, transform 0.25s ease;
}
.ko-pill:hover {
  border-color: var(--ko-orange);
  transform: translateY(-2px);
}

/* ---- LEFT WALE ROUND BADGE KA SIZE BADA KARNE KE LIYE ---- */
.ko-pill-badge {
  width: 36px;                /* Width 26px se 36px kiya */
  height: 36px;               /* Height 26px se 36px kiya */
  border-radius: 50%;
  background: var(--ko-orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Badge ke andar ka icon/text text size */
.ko-pill-badge span {
  font-size: 14px;            /* Font size 9px se 14px kiya */
  font-weight: 800;
  color: var(--ko-orange);
}
/* ---- STATE NAME KA FONT BADA KARNE KE LIYE ---- */
.ko-pill-name {
  font-size: 1.05rem;          /* Font size 0.8rem se 1.05rem kiya */
  font-weight: 700;
  color: var(--ko-text-white);
  line-height: 1.2;
}

/* ---- COUNT (GLASSES) KA FONT BADA KARNE KE LIYE ---- */
.ko-pill-count {
  font-size: 0.85rem;         /* Font size 0.68rem se 0.85rem kiya */
  font-weight: 600;
  color: var(--ko-text-muted);
  line-height: 1.4;
}

/* ---- RIGHT SIDE WALE DOT KA SIZE ---- */
.ko-pill-status {
  width: 8px;                 /* Dot size 6px se 8px kiya */
  height: 8px;
  border-radius: 50%;
  background: var(--ko-orange);
  margin-left: 8px;
  animation: koPulse 2s infinite;
  flex-shrink: 0;
}

.ko-pill-status.prev {
  background: var(--ko-text-muted);
  animation: none;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

/* 3D carousel continuous rotation */
@keyframes koSpin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* Slot counter roll (overridden dynamically by JS) */
@keyframes koCountUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-176px); }
}

/* Mega counter roll (overridden dynamically by JS) */
@keyframes koMegaCount {
  from { transform: translateY(0); }
  to   { transform: translateY(-360px); }
}

/* SVG line draw */
@keyframes koLineDraw {
  to { stroke-dashoffset: 0; }
}

/* SVG area fade in */
@keyframes koAreaFade {
  to { opacity: 1; }
}

/* SVG end-node pulsing ring */
@keyframes koNodePulse {
  0%   { r: 7;  opacity: 0.8; }
  100% { r: 20; opacity: 0; }
}

/* Blinking live dot */
@keyframes koPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* Goal badge pop-in */
@keyframes koBadgePop {
  0%   { transform: scale(0.7); opacity: 0; }
  80%  { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================
   REDUCED MOTION — respects user preference
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .ko-spinner,
  .ko-strip,
  .ko-mega-strip,
  .ko-svg-line,
  .ko-svg-area,
  .ko-node-pulse,
  .ko-dot,
  .ko-goal-tag::before {
    animation: none !important;
  }

  /* Show final states immediately */
  .ko-strip       { transform: translateY(-176px); }
  .ko-mega-strip  { transform: translateY(-360px); }
  .ko-svg-line    { stroke-dashoffset: 0; }
  .ko-svg-area    { opacity: 1; }

  /* Reveal elements that normally fade in */
  .ko-header,
  .ko-panel,
  .ko-mobile-card,
  .ko-coverage-strip {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ==========================================
   OUR STORES PRESTIGE LOOK
   ========================================== */

.stores-section {
    padding: 80px 8%;
    background: #fdfdfd;
}

.stores-container {
    max-width: 1400px;
    margin: 0 auto;
}

.center-align {
    text-align: center;
    margin-bottom: 50px;
}
.center-align .orange-accent-capsule {
    margin: 0 auto 15px auto;
}

/* Grid Configuration - Clean 4 Columns */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.store-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(242, 140, 40, 0.12);
    border-color: rgba(242, 140, 40, 0.2);
}

/* Image Header Frame */
.store-img-box {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.store-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.store-card:hover .store-img-box img {
    transform: scale(1.08);
}

/* Active Badge styling matching your image */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2ec4b6; /* Premium Mint Green */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}

/* Card Content Overlay for Identity */
.store-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
    color: #fff;
    z-index: 2;
}

.store-title-overlay h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.store-title-overlay p {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Card Body Details */
.store-details {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes action buttons to alignment loop */
    justify-content: space-between;
}

.info-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.info-row i {
    color: #F28C28; /* Kosher Orange Icon */
    font-size: 1rem;
    margin-top: 3px;
}

.info-row p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.info-row a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

/* ClearVue Style Horizontal CTA Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
}

.btn-call, .btn-directions {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.3s;
}

.btn-call {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e2e8f0;
}

.btn-call:hover {
    background: #edf2f7;
}

.btn-directions {
    background: #ffffff;
    color: #4a5568;
    border: 1px solid #cbd5e1;
}

.btn-directions:hover {
    background: rgba(242, 140, 40, 0.05);
    border-color: #F28C28;
    color: #F28C28;
}

/* Big View All Button */
.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #F28C28, #d36b00);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(242, 140, 40, 0.35);
}

/* ==========================================
   RESPONSIVE ADAPTABILITY
   ========================================== */

@media (max-width: 1200px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        gap: 20px;
    }
}

@media (max-width: 650px) {
    .stores-section {
        padding: 60px 5%;
    }
    .stores-grid {
        grid-template-columns: 1fr; /* Single column layout for mobiles */
        gap: 25px;
    }
    .store-img-box {
        height: 180px;
    }
}
/* ==========================================
   20 store page
   ========================================== */
/* --- Core Reset & Base Settings --- */
.store-locator-page {
    padding: 60px 8%;
    background: #ffffff;
    overflow-x: hidden; /* Android horizontal scrolling ko prevent karega */
}

.locator-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header & Accent */
.locator-header { text-align: center; margin-bottom: 40px; }
.locator-header h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; color: #111; }

/* Filter Box Wrapper - Responsive Flex */
.filter-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Elements line break properly karenge override ke bina */
}

.search-box-inner { position: relative; flex: 2; min-width: 280px; }
.search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #999; }
.search-box-inner input {
    width: 100%; padding: 14px 15px 14px 48px;
    border: 1px solid #e2e8f0; border-radius: 12px;
    font-size: 0.95rem; outline: none; background: #fdfdfd; transition: 0.3s;
}
.search-box-inner input:focus { border-color: #F28C28; background: #fff; }

.dropdown-boxes { display: flex; gap: 15px; flex: 1.2; min-width: 280px; }
.dropdown-boxes select {
    width: 100%; padding: 14px; border: 1px solid #e2e8f0;
    border-radius: 12px; font-size: 0.95rem; background: #fff; outline: none; cursor: pointer;
}

.stores-found-badge { font-size: 1rem; font-weight: 600; color: #444; margin-bottom: 25px; }
#storesCount { color: #F28C28; font-weight: 800; }

/* --- FLUID INTUITIVE GRID (Auto Layout) --- */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); /* Auto calculates columns based on screen width */
    gap: 25px;
}

/* Card Core styling */
.store-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #edeef0;
    display: flex; flex-direction: column; height: 100%; /* Keeps all cards uniform length */
}

.store-img-box { position: relative; height: 190px; overflow: hidden; }
.store-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.store-card:hover .store-img-box img { transform: scale(1.06); }

.status-badge {
    position: absolute; top: 15px; right: 15px;
    background: #2ec4b6; color: #fff; font-size: 0.7rem;
    font-weight: 700; padding: 4px 10px; border-radius: 20px; z-index: 2;
}

.store-title-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); color: #fff;
}
.store-title-overlay h3 { font-size: 1rem; font-weight: 700; }

.store-details { padding: 20px 15px; display: flex; flex-direction: column; flex-grow: 1; }
.info-row { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.info-row i { color: #F28C28; font-size: 0.9rem; margin-top: 3px; }
.info-row p { font-size: 0.85rem; color: #555; line-height: 1.5; }
.info-row a { color: #111; text-decoration: none; font-weight: 600; }

.action-buttons { display: flex; gap: 10px; margin-top: auto; padding-top: 15px; }
.btn-call, .btn-directions {
    flex: 1; padding: 10px; border-radius: 10px; font-size: 0.85rem;
    font-weight: 700; text-align: center; text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-call { background: #f8f9fa; color: #333; border: 1px solid #e2e8f0; }
.btn-directions { background: #fff; color: #4a5568; border: 1px solid #cbd5e1; transition: 0.3s; }
.btn-directions:hover { border-color: #F28C28; color: #F28C28; }

/* --- 3D MOTION SMOOTH ANIMATIONS --- */
.reveal-fade { opacity: 0; transform: translateY(-20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-card { opacity: 0; transform: translateY(40px) scale(0.96); transition: opacity 0.6s ease, transform 0.6s ease; }

.reveal-fade.active, .reveal-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hover Zoom Motion */
.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(242, 140, 40, 0.12);
    border-color: rgba(242, 140, 40, 0.2);
}

/* Small Screens Override Preventer */
@media (max-width: 768px) {
    .store-locator-page { padding: 40px 4%; }
    .filter-wrapper { flex-direction: column; gap: 15px; }
    .search-box-inner, .dropdown-boxes { width: 100%; }
}
/* ==========================================
   galary section - premium styling
   ========================================== */
/* --- Kosher Optics Full Space 3D Carousel Styles --- */
.ko-premium-gallery-section {
  width: 100%;
  padding: 80px 0; /* Removed side padding to let cards extend outwards */
  background-color: #FFFFFF; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ko-premium-gallery-section .ko-gallery-wrapper {
  width: 100%;
  max-width: 100%; /* Spans the complete page layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

/* Typography Header Integration */
.ko-premium-gallery-section .ko-gallery-header {
  text-align: center;
  padding: 0 20px;
}

.ko-premium-gallery-section .ko-gallery-header h2 {
  font-size: 3rem; 
  font-weight: 800;
  color: #000000; 
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.ko-premium-gallery-section .ko-gallery-header .ko-orange-text {
  color: #F38B23; 
}

.ko-premium-gallery-section .ko-gallery-header p {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2D3134; 
}

/* Expanded 3D Viewport Box Stage */
.ko-premium-gallery-section .ko-stage-container {
  position: relative;
  width: 100%;
  height: 540px; /* Increased height to give cards more breathing room */
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px; 
}

.ko-premium-gallery-section .ko-3d-arc-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

/* Ground Plane Shadows */
.ko-premium-gallery-section .ko-stage-reflection-floor {
  position: absolute;
  bottom: 10px;
  width: 85%;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 75%);
  transform: rotateX(90deg);
  z-index: 1;
  pointer-events: none;
}

/* 3D Positioned Gallery Cards */
.ko-premium-gallery-section .ko-gallery-card {
  position: absolute;
  width: 310px; 
  height: 440px;
  border-radius: 24px; 
  background: #FAFAFA; 
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06), 
              0 2px 5px rgba(0, 0, 0, 0.02);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), 
              opacity 0.7s ease, 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
  pointer-events: none;
}

/* Dynamic Fit Image Layout Wrapper */
.ko-premium-gallery-section .ko-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  padding: 16px;
  background: transparent;
}

/* Active Main Center Card Foreground Highlight */
.ko-premium-gallery-section .ko-gallery-card.active {
  pointer-events: auto;
  border: 2px solid #F38B23; 
  box-shadow: 0 35px 70px rgba(243, 139, 35, 0.16), 
              0 15px 35px rgba(0, 0, 0, 0.05);
}

/* System Control Actions Interfaces Controls Row */
.ko-premium-gallery-section .ko-interface-controls {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 450px;
  padding: 0 20px;
}

.ko-premium-gallery-section .ko-arrow-btn {
  background: #FFFFFF;
  border: 1.5px solid #EAEAEA;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.ko-premium-gallery-section .ko-arrow-btn svg {
  width: 24px;
  height: 24px;
  fill: #333333;
}

.ko-premium-gallery-section .ko-arrow-btn:hover {
  border-color: #F38B23;
  background-color: #F38B23; 
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(243, 139, 35, 0.2);
}

.ko-premium-gallery-section .ko-arrow-btn:hover svg {
  fill: #FFFFFF;
}

/* Progress Bar Metric Timeline UI Line Indicators */
.ko-premium-gallery-section .ko-progress-bar-container {
  flex-grow: 1;
  height: 4px;
  background-color: #EAEAEA;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.ko-premium-gallery-section .ko-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #F38B23; 
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
/* ==========================================
   galary section - premium styling end
   ========================================== */

/* ==========================================
   founder section - rgb dynamic design
   ========================================= */
/* Core Structural Layout & Reset */
.kosher-founder-section {
  background: #ffffff;
  padding: 140px 24px;
  position: relative;
  overflow: hidden;
  font-family: system-ui, -apple-system, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.kosher-founder-container {
  max-width: 1100px;
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT COLUMN: Premium Structural Frame for Portrait */
.kosher-portrait-stage {
  position: relative;
  padding: 15px;
}

.portrait-frame-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-top: 4px solid #f37321;
  border-left: 4px solid #f37321;
  z-index: 1;
}

.portrait-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.kosher-founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RIGHT COLUMN: Full-Height Editorial Text Layout */
.kosher-editorial-content {
  display: flex;
  flex-direction: column;
}

.kosher-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 115, 33, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 24px;
}

.kosher-badge-dot {
  width: 6px;
  height: 6px;
  background: #f37321;
  border-radius: 50%;
}

.kosher-badge-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f37321;
}

.kosher-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #0c0c0e;
  margin: 0 0 28px 0;
  letter-spacing: -1.5px;
}

.orange-highlight {
  color: #f37321;
}

.kosher-narrative {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0 0 40px 0;
}

/* INFORMATIVE MATRIX STYLING */
.kosher-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 45px;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  padding: 24px 0;
}

.metric-number {
  font-size: 28px;
  font-weight: 800;
  color: #f37321;
  margin: 0 0 4px 0;
}

.metric-label {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}

/* Signature Metadata Block */
.kosher-signature-block {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sig-line {
  width: 48px;
  height: 2px;
  background: #f37321;
}

.sig-name {
  font-size: 22px;
  font-weight: 700;
  color: #0c0c0e;
  margin: 0 0 4px 0;
}

.sig-title {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
  font-weight: 500;
}

/* ANIMATION LAYER POSITIONING */
.canvas-ambient-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#extraordinaryCanvas {
  width: 100%;
  height: 100%;
}

/* Interactive Hover Scales */
.kosher-portrait-stage:hover .kosher-founder-img {
  transform: scale(1.04);
}

/* Responsive Handling */
@media (max-width: 992px) {
  .kosher-founder-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .canvas-ambient-wrapper {
    width: 100%;
    height: 60%;
    bottom: 0;
    top: auto;
  }
  .kosher-hero-title {
    font-size: 40px;
  }
}

/* ==========================================
   CINEMATIC THEATER DISPLAY STYLING lens section start 
   ========================================== */

.lens-theater-section {
    width: 100%;
    max-width: 1300px; /* Limits massive expansion on ultra-wide screens */
    margin: 50px auto;
    padding: 0 4%;
    box-sizing: border-box;
}

/* Clear, Non-overlapping Header Zone */
.theater-header {
    text-align: center;
    margin-bottom: 35px;
}

.theater-mini-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #F28C28; /* Logo Branding Theme */
    font-weight: 700;
    margin-bottom: 8px;
}

.theater-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
    line-height: 1.2;
}

.theater-header p {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* --- THE BIG SCREEN MECHANICS --- */
.theater-screen-wrapper {
    position: relative;
    width: 100%;
    border-radius: 32px;
    background: #000000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Back Ambient Branding Glow */
.screen-ambient-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 90%; height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(242, 140, 40, 0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive 16:9 Screen Layout box */
.screen-display {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Perfect cinematic ratio across ALL viewports */
    z-index: 2;
}

.screen-display video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents black borders inside the big display box */
    display: block;
}

.screen-tint-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
}

/* --- HIGH END IMMERSIVE ENTRANCE MOTION --- */
.reveal-viewport {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-viewport.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   TABLET & MOBILE OPTIMIZATION
   ========================================== */
@media (max-width: 768px) {
    .lens-theater-section {
        margin: 40px auto;
        padding: 0 20px;
    }
    .theater-screen-wrapper {
        border-radius: 16px; /* Smooth corners adjustments for small touch systems */
    }
}
/* ==========================================
   CINEMATIC THEATER DISPLAY STYLING lens section start end 
   ========================================== */
/* ==========================================
   KOSHER OPTICS ALIGNED CONTACT SYSTEM
   ========================================== */
.ko-contact-section {
    width: 100%;
    padding: 20px 0;
    background-color: #fafafa;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- EXACT SCRIPT HEADER MATCH --- */
.ko-get-in-touch-header {
    text-align: center;
    margin-bottom: 45px;
    padding: 0 4%;
}

.ko-lottie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.ko-get-in-touch-header h1 {
    font-size: clamp(2.2rem, 5vw, 3rem); /* Matches tracking title fluid system */
    font-weight: 800;
    color: #111111; /* Sharp Black */
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.ko-get-in-touch-header .ko-orange-text {
    color: #F28C28; /* Logo Branding Theme Match */
}

.ko-header-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #4a5568; /* Smooth matching secondary description text */
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- LAYOUT GRID DEPLOYMENT --- */
.ko-contact-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    box-sizing: border-box;
}

.ko-contact-form-card, .ko-info-card-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}

.ko-contact-form-card h2, .ko-info-card-block h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.ko-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.ko-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444444;
}

.ko-input-group input, .ko-input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #111111;
    outline: none;
    background: #ffffff;
    transition: all 0.3s ease;
}

.ko-input-group input:focus, .ko-input-group textarea:focus {
    border-color: #F28C28;
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}

.ko-submit-btn {
    width: 100%;
    background: #F28C28;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

.ko-submit-btn:hover {
    background: #d46f14;
    transform: translateY(-2px);
}

.ko-contact-info-column { display: flex; flex-direction: column; gap: 25px; }
.ko-info-row-item { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.ko-info-row-item:last-child { margin-bottom: 0; }

.ko-icon-box-badge {
    width: 46px;
    height: 46px;
    background: rgba(242, 140, 40, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ko-icon-box-badge i { color: #F28C28; font-size: 1.1rem; }
.ko-info-text-node h4 { font-size: 0.95rem; font-weight: 700; color: #111111; margin-bottom: 5px; }
.ko-info-text-node p { font-size: 0.9rem; color: #555555; line-height: 1.5; }
.ko-info-text-node a { color: #555555; text-decoration: none; }
.ko-info-text-node a:hover { color: #F28C28; }

.ko-hours-block { padding: 25px 40px; }
.ko-form-response { margin-top: 15px; font-size: 0.9rem; font-weight: 600; text-align: center; }

/* --- RESPONSIVE OVERRIDE PROTECTION --- */
@media (max-width: 968px) {
    .ko-contact-wrapper { grid-template-columns: 1fr; gap: 25px; }
    .ko-contact-form-card, .ko-info-card-block { padding: 30px 20px; }
    lottie-player { width: 120px !important; height: 120px !important; }
}
/* ==========================================
   PREMIUM 3-COLUMN BIG LOGO FOOTER STYLING
   ========================================== */

.ko-prestige-footer {
    width: 100%;
    background-color: #0b0f14; /* Deep elite dark shade */
    color: #ffffff;
    padding: 70px 8% 30px 8%; /* Sidewise padding matches core website flow[cite: 2] */
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

.ko-footer-upper-track {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Clean 3-Column setup[cite: 2] */
    gap: 50px;
}

.ko-footer-column h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
}

.ko-footer-column h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    width: 35px; height: 3px;
    background-color: #F28C28; /* Logo color match[cite: 2] */
    border-radius: 2px;
}

/* --- Left Column Strict Alignment Rules --- */
.ko-identity-brand-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start; /* Perfect left alignment snap[cite: 2] */
    justify-content: flex-start;
}

/* Big Logo Frame Scaling */
.ko-footer-logo-only {
    margin: 0;
    padding: 0;
    display: block;
}

.ko-footer-logo-only img {
    height: 60px; /* Increased frame size for outstanding icon presence */
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(242, 140, 40, 0.15));
}

.ko-orange-accent {
    color: #F28C28 !important;
}

.ko-brand-vision-statement {
    font-size: 0.9rem; 
    color: #a0aec0; 
    line-height: 1.6; 
    max-width: 380px;
    margin: 0;
}

.ko-target-milestone-capsule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 140, 40, 0.08);
    border: 1px solid rgba(242, 140, 40, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #F28C28;
    margin: 5px 0 0 0;
}

/* --- Menu Links Columns --- */
.ko-footer-links-list {
    list-style: none;
}

.ko-footer-links-list li {
    margin-bottom: 14px;
}

.ko-footer-links-list a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ko-footer-links-list a i {
    font-size: 0.7rem; 
    transition: transform 0.2s;
}

.ko-footer-links-list a:hover {
    color: #F28C28;
    transform: translateX(4px);
}

/* --- Support/Contact Tracks --- */
.ko-footer-contact-info p {
    font-size: 0.9rem; 
    color: #a0aec0; 
    margin-bottom: 16px; 
    display: flex; 
    align-items: center; 
    gap: 12px;
}
.ko-footer-contact-info a { color: #a0aec0; text-decoration: none; transition: color 0.2s; }
.ko-footer-contact-info a:hover { color: #F28C28; }

.ko-footer-social-connect {
    display: flex; gap: 12px; margin-top: 20px;
}

.ko-footer-social-connect a {
    width: 36px; height: 36px; background: rgba(255, 255, 255, 0.04);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #ffffff; text-decoration: none; font-size: 0.9rem; transition: all 0.3s;
}

.ko-footer-social-connect a:hover {
    background: #F28C28; color: #ffffff; transform: translateY(-3px);
}

/* Lower Base Ground[cite: 2] */
.ko-footer-divider {
    border: 0; height: 1px; background: rgba(255, 255, 255, 0.08); margin: 40px auto 25px auto; max-width: 1300px;
}

.ko-footer-bottom-bar {
    max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; color: #718096; flex-wrap: wrap; gap: 15px;
}

.ko-footer-legal-nodes { display: flex; gap: 20px; }
.ko-footer-legal-nodes a { color: #718096; text-decoration: none; transition: color 0.2s; }
.ko-footer-legal-nodes a:hover { color: #F28C28; }

/* ==========================================
   CROSS DEPLOYMENT BREAKPOINTS SYSTEM
   ========================================== */
@media (max-width: 968px) {
    .ko-footer-upper-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .ko-prestige-footer { padding: 50px 20px 25px 20px; }
    .ko-footer-upper-track {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .ko-footer-logo-only img { height: 50px; } /* Clean mobile scale adaptation */
    .ko-brand-vision-statement { max-width: 100%; }
    .ko-footer-bottom-bar { flex-direction: column; text-align: center; gap: 10px; }
}
/* ==========================================
   UPDATED LOGO SCALING & ALIGNMENT ENGINES
   ========================================== */

/* Left branding container track configuration */
.ko-identity-brand-box {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Space thoda badhaya hai premium visibility ke liye */
    align-items: flex-start;
    justify-content: flex-start;
}

/* Big & Medium responsive aspect container box */
.ko-footer-logo-only {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%; /* Pure column grid space provide karega scaling ke liye */
}

/* Logo image strict sizing properties */
.ko-footer-logo-only img {
    /* Height and width optimized to make the icon look significantly bigger & premium */
    height: auto;
    width: 140px; /* Big & Medium balanced corporate branding width */
    max-width: 100%;
    display: block;
    
    /* Adds clean depth separation over dark dashboard surface */
    filter: drop-shadow(0 6px 15px rgba(242, 140, 40, 0.22));
    
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

/* Subtle interactive hover feel for the big icon signature */
.ko-footer-logo-only img:hover {
    transform: scale(1.03);
}

.ko-brand-vision-statement {
    font-size: 0.95rem; /* Text clarity boosted */
    color: #a0aec0; 
    line-height: 1.65; 
    max-width: 400px;
    margin: 0;
}

/* ==========================================
   MOBILE DEVICE SIZE SAFETY GUARD
   ========================================== */
@media (max-width: 640px) {
    .ko-footer-logo-only img {
        width: 110px; /* Fluid medium compression to prevent cut-off on tiny viewports */
    }
}