﻿/* ── Global Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #111;
    overflow-x: hidden;
}


/* ── CSS Variables ── */
:root {
    --orange: #F68E56;
    --peach: #FECBAC;
    --black: #000000;
    --offwhite: #F6F6F6;
    --white: #FFFFFF;
    --accent: #ED3342;
}

/* ── Navbar ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(246,142,86,0.15);
    transition: box-shadow 0.3s;
    /*padding-top: 40px;*/ /* extra top space for language switcher */
}

    #navbar.scrolled {
        box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    }

/* ── Hero ── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
    padding-bottom: 30px;
}
/* VIDEO PLACEHOLDER – replace <div class="video-bg"> with <video> tag pointing to manufacturing footage */
.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0a00 0%, #2d1200 30%, #0a0a0a 70%, #111 100%);
    overflow: hidden;
}

    .video-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(246,142,86,0.18) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 20% 70%, rgba(254,203,172,0.10) 0%, transparent 50%);
    }
    /* Subtle noise grain */
    .video-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
        opacity: 0.4;
        pointer-events: none;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(246,142,86,0.2);
    border: 1px solid rgba(246,142,86,0.5);
    color: var(--peach);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

    .hero-headline span {
        color: var(--orange);
    }

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.72);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    padding: 0.9rem 2.4rem;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.22s, opacity 0.22s, box-shadow 0.22s;
    box-shadow: 0 6px 24px rgba(246,142,86,0.4);
}

    .btn-primary:hover {
        transform: scale(1.05);
        opacity: 0.92;
        box-shadow: 0 10px 32px rgba(246,142,86,0.5);
    }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 10px;
    font-weight: 600;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.22s, background 0.22s, color 0.22s;
}

    .btn-secondary:hover {
        transform: scale(1.05);
        background: var(--orange);
        color: #fff;
    }

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    font-weight: 500;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.22s, background 0.22s, border-color 0.22s;
    margin-left: 1rem;
}

    .btn-outline-white:hover {
        transform: scale(1.05);
        background: rgba(255,255,255,0.12);
        border-color: #fff;
    }

/* ── Scroll indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;     
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
}

/* ── Logic Grid ── */
.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(246,142,86,0.12);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.28s, box-shadow 0.28s;
    position: relative;
    overflow: hidden;
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--orange), var(--peach));
    }

    .stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(246,142,86,0.15);
    }

.stat-number {
    font-size: clamp(2.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    margin-top: 0.6rem;
    line-height: 1.4;
}

/* ── Section headings ── */
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--orange), var(--peach));
    margin: 1.2rem 0 1.5rem;
}

    .section-divider.centered {
        margin-left: auto;
        margin-right: auto;
    }

/* ── Manufacturing Section ── */
.mfg-image-placeholder {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0800, #3d1800, #1a0800);
    aspect-ratio: 4/3;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
    /* DEV NOTE: Replace .mfg-image-placeholder with <img src="adila-biotech-plant.jpg" alt="Adila Biotech Manufacturing Plant"> */
    .mfg-image-placeholder::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(246,142,86,0.22) 0%, transparent 65%);
    }

    .mfg-image-placeholder .placeholder-label {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.45);
        gap: 1rem;
    }

        .mfg-image-placeholder .placeholder-label svg {
            width: 56px;
            height: 56px;
            opacity: 0.4;
        }

        .mfg-image-placeholder .placeholder-label span {
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--offwhite);
    border-radius: 30px;
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
    border: 1px solid rgba(246,142,86,0.2);
}

    .feature-pill svg {
        width: 16px;
        height: 16px;
        color: var(--orange);
    }

/* ── Product Cards ── */
.product-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s;
    position: relative;
    overflow: hidden;
}

    .product-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--orange), var(--peach));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 24px 64px rgba(0,0,0,0.12);
    }

        .product-card:hover::after {
            transform: scaleX(1);
        }

.product-icon {
   /* width: 72px;
    height: 72px;*/
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

/* ── Compensation Ladder ── */
.ladder-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .ladder-step:hover {
        transform: translateX(6px);
        box-shadow: 0 8px 28px rgba(246,142,86,0.12);
    }

    .ladder-step.top {
        border: 2px solid var(--accent);
        background: linear-gradient(135deg, #fff5f5, #fff);
    }

.ladder-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--peach), var(--orange));
    margin-left: 2.5rem;
}

.rank-badge {
    /*width: 52px;*/
    width: 95px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
}

/* ── FAQ ── */
.faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}

    .faq-item:hover {
        box-shadow: 0 4px 20px rgba(246,142,86,0.1);
    }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #111;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--orange);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding: 0 1.75rem;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #555;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.75rem 1.5rem;
}

/* ── Founder Video ── */
.video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* DEV NOTE: Replace background with <video> or <iframe> embed of CEO's message */
    background: linear-gradient(135deg, #0f0500, #2a1000, #0f0500);
    aspect-ratio: 16/9;
    box-shadow: 0 32px 96px rgba(0,0,0,0.35);
    cursor: pointer;
}

    .video-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(246,142,86,0.15) 0%, transparent 65%);
    }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(246,142,86,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 8px 32px rgba(246,142,86,0.5);
}

.video-card:hover .play-btn {
    transform: translate(-50%,-50%) scale(1.12);
    background: var(--orange);
}

.play-btn svg {
    width: 32px;
    height: 32px;
    color: #fff;
    margin-left: 4px;
}

/* ── Footer ── */
footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.6);
}

/* ── Scroll-triggered counters ── */
.counter {
    transition: all 0.1s;
}

/* ── Brand Carousel ── */
.brand-slide-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 240px;
    background: #fff;
    border-radius: 24px;
    padding: 2rem 1.75rem 1.75rem;
    border: 2px solid rgba(246,142,86,0.18);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s, border-color 0.28s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .brand-slide-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--orange), var(--peach));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .brand-slide-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 52px rgba(246,142,86,0.15);
        border-color: rgba(246,142,86,0.45);
    }

        .brand-slide-card:hover::after {
            transform: scaleX(1);
        }

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(246,142,86,0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

    .brand-dot.active {
        background: var(--orange);
        transform: scale(1.3);
    }

#brandTrack {
    cursor: grab;
    user-select: none;
}

    #brandTrack.dragging {
        cursor: grabbing;
    }

.leaders-scroll {
    display: flex;
    flex-direction: column;
    max-height: 1755px;
    /*max-height: 830px;*/
    overflow-y: auto;
    padding-right: 8px;
}

    /* Smooth scrollbar styling */
    .leaders-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .leaders-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .leaders-scroll::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg,#F68E56,#ffb300);
        border-radius: 10px;
    }
.display-none-block {
    display: none;
}

/* ── Founders Section ── */
.founder-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(246,142,86,0.12);
    box-shadow: 0 6px 30px rgba(0,0,0,0.06);
    transition: transform 0.28s, box-shadow 0.28s;
}

    .founder-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(246,142,86,0.12);
    }

.founder-photo-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    max-height: 300px;
    background: linear-gradient(135deg, #fdf0e8, #fecbac 50%, #f68e56 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

    .founder-photo-placeholder::before {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
    }

.founder-initials {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    box-shadow: 0 4px 20px rgba(246,142,86,0.2);
}

.founder-photo-hint {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0 1rem;
}

.founder-info {
    padding: 1.75rem;
}

.founder-name-badge {
    display: inline-block;
    background: rgba(246,142,86,0.1);
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(246,142,86,0.25);
}

.founder-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.75rem;
}

.founder-bio {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.founder-tag {
    background: var(--offwhite);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
    border: 1px solid rgba(0,0,0,0.07);
}

/* ── Contact Form Fields ── */
.contact-field-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(246,142,86,0.25);
    border-radius: 14px;
    transition: border-color 0.2s, background 0.2s;
}

    .contact-field-wrap:focus-within {
        border-color: var(--orange);
        background: rgba(255,255,255,0.12);
    }

.contact-field-icon {
    padding: 0 0 0 1.1rem;
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.contact-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.95rem 1rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

    .contact-field::placeholder {
        color: rgba(255,255,255,0.45);
    }

.contact-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
}

    .contact-select option {
        background: #1a0800;
        color: #fff;
    }

.contact-chevron {
    position: absolute;
    right: 1rem;
    color: rgba(255,255,255,0.45);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* ── Responsive helpers ── */
@media (max-width: 1024px) {
    .brand-slide-card {
        flex: 0 0 calc(33.333% - 16px);
    }

    .logo-img {
        height: 65px;
    }
}

@media (max-width: 768px) {
    .btn-outline-white {
        margin-left: 0;
        margin-top: 0.75rem;
    }

    .hero-content .flex-hero {
        flex-direction: column;
    }

    .brand-slide-card {
        flex: 0 0 calc(50% - 12px);
    }

    #desktop-menu {
        display: none !important;
    }

    .logo-img {
        height: 65px;
    }
}

@media (max-width: 540px) {
    .brand-slide-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 0;
    }

    #contactFormGrid {
        grid-template-columns: 1fr !important;
    }

    .leaders-scroll {        
        max-height: 950px;       
    }
    .display-none-block {
        display: block;
    }
}

@media (max-width: 480px) {
    .brand-slide-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 0;
    }
    .leaders-scroll {
        max-height: 950px;
    }
    .display-none-block {
        display: block;
    }
}

.w-9-25 {
    max-width: 9rem;
}

.w-ft-18 {
    max-width: 18rem;
}

#mobile-menu {
    background: #fff;
    box-sizing: border-box;
    max-width: 100vw;
}

    #mobile-menu a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }


.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #f94141;
    color: #fff;
    padding: 20px 26px;
    border-radius: 12px;
    min-width: 280px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: none;
    border-left: 4px solid #07850c;
}

.alert-content {
    position: relative;
}

.alert-progress {
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 4px;
    width: 100%;
    background: #f68e56;
    animation: alertProgress 3s linear forwards;
}

@keyframes alertProgress {
    from {
        width: 100%
    }

    to {
        width: 0%
    }
}

 /*for language popup */

.language-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-popup-box {
    background: #fff;
    padding: 40px 50px;
    border-radius: 14px;
    text-align: center;
    width: 320px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.35);
    animation: popupIn .35s ease;
}

    .language-popup-box h3 {
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 600;
    }

    .language-popup-box p {
        font-size: 14px;
        color: #555;
        margin-bottom: 25px;
    }

.language-buttons {
    display: flex;
    gap: 12px;
}

.lang-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    background: #F68E56;
    color: #fff;
    transition: 0.2s;
}

    .lang-btn:hover {
        background: #e7793c;
    }

@keyframes popupIn {
    from {
        transform: scale(.85);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}


.section-eyebrow-orange {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);    
}
.txt-orange {    
    color: var(--orange);
}
.txt-orange-600 {
    color: var(--orange);
    font-weight: 600;
}
.font-1rem {
    font-size: 1rem !important;   
}
.txt-orangedrk-600 {
    color: #f76f25;
    font-weight: 600;
    line-height: 1.5;
}
.font-1-8rem {
    font-size: 1.8rem !important;
}

.Carousel-left-arrow {
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(246,142,86,0.45);
    transition: transform 0.2s,box-shadow 0.2s
}
.Carousel-right-arrow {
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(246,142,86,0.45);
    transition: transform 0.2s,box-shadow 0.2s
}

.eco-card {
    background: #fff;
    border-radius: 16px;
    padding: 5px 0px 10px 0px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.eco-card:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

.eco-logo{
    height:100px;
    margin:0 auto;
    object-fit:contain;
}

.eco-card h4{
    font-weight:700;
    font-size:1rem;
    color:#111;
    margin-bottom:6px;
}

.eco-card p{
    font-size:0.85rem;
    color:#666;
    line-height:1.5;
}
