/* =========================================================
   HOME SPECIFIC STYLES - FRESH GREEN AGRO (ULTRA MODERN)
   Premium Glassmorphism + Advanced Animations
========================================================= */



:root {
    --primary-green: #22c55e;
    /* Vibrant Green */
    --dark-green: #022c22;
    /* Deep Jungle Green */
    --bg-cream: #f0fdf4;
    /* Mint Cream instead of Beige */
    --text-dark: #064e3b;
    /* Dark Green text */
    --text-muted: #14532d;
    /* Muted Green text */
    --white: #ffffff;
    --gold-accent: #eab308;
    --emerald: #16a34a;
    --emerald-dark: #15803d;
    --alefox-font-heading: 'Inter', sans-serif;
    --alefox-font-body: 'Rubik', sans-serif;
    --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --gradient-primary: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%);
    --gradient-gold: linear-gradient(135deg, #eab308 0%, #facc15 50%, #ca8a04 100%);
    --gradient-dark: linear-gradient(135deg, #022c22 0%, #064e3b 80%, #022c22 100%);
    --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.4);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* ================= ORGANIC BACKGROUND BLOBS ================= */
.organic-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #22c55e;
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #16a34a;
    bottom: -5%;
    left: -5%;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #eab308;
    top: 40%;
    left: 10%;
    opacity: 0.08;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5%, 10%) scale(1.1);
    }

    66% {
        transform: translate(-5%, 5%) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

body {
    background-color: var(--bg-cream);
    font-family: var(--alefox-font-body);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ================= UTILITY ANIMATIONS ================= */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(68, 160, 91, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(68, 160, 91, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(68, 160, 91, 0.3);
    }

    50% {
        border-color: rgba(68, 160, 91, 0.8);
    }
}

@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* ================= REVEAL ANIMATIONS ================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* ================= GLASSMORPHISM ================= */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.glass-dark {
    background: rgba(18, 47, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(68, 160, 91, 0.2);
    border-radius: 24px;
}

/* ================= GRADIENT TEXT ================= */
.gradient-text {
    background: linear-gradient(135deg, #44A05B, #10b981, #D4AF37, #44A05B);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 5s ease infinite;
}

.gradient-text-static {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================= UTILITY CLASSES ================= */
.alefox-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.alefox-bg-cream {
    background-color: var(--bg-cream);
}

.alefox-bg-dark {
    background-color: var(--dark-green);
    color: var(--white);
}

/* Premium Button */
.alefox-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--alefox-font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-bounce);
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(68, 160, 91, 0.3);
}

.alefox-btn::before {
    display: none;
}

.alefox-btn:hover::before {
    display: none;
}

.alefox-btn span {
    position: relative;
    z-index: 2;
}

.alefox-btn i {
    transition: transform 0.3s ease;
}

.alefox-btn:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(68, 160, 91, 0.3);
    color: var(--white);
}

.alefox-btn:hover i {
    transform: none;
}

.alefox-btn.outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid rgba(32, 34, 33, 0.2);
    box-shadow: none;
}

.alefox-btn.outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(68, 160, 91, 0.4);
}

/* Specific override for Scale of Excellence Section */
.export-volume-section .alefox-btn.outline {
    color: #000000 !important;
}

.export-volume-section .alefox-btn.outline:hover {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(68, 160, 91, 0.4) !important;
    border-color: transparent !important;
}

.export-volume-section .alefox-btn.outline::before {
    display: none !important;
}

/* Advanced Decorative Dots with Animation */
.dot-element {
    position: absolute;
    background-color: var(--primary-green);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.dot-1 {
    top: 10%;
    left: 15%;
    width: 15px;
    height: 15px;
    animation-delay: 0s;
}

.dot-2 {
    bottom: 15%;
    right: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
}

.dot-3 {
    top: 40%;
    right: 5%;
    width: 10px;
    height: 10px;
    animation-delay: 4s;
}

.dot-4 {
    bottom: 30%;
    left: 8%;
    width: 12px;
    height: 12px;
    animation: floatReverse 8s ease-in-out infinite;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.shape-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 160, 91, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.shape-ring {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(68, 160, 91, 0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* ================= HERO SECTION (Premium Cinematic Design) ================= */
.hero-slider-alefox {
    min-height: 100vh;
    background-color: var(--dark-green);
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Mesh Background */
.hero-slider-alefox::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 163, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(22, 163, 74, 0.08) 0%, transparent 40%);
    z-index: 1;
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Premium Particle System */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(34, 197, 94, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
    animation: particleRise 15s linear infinite;
}

@keyframes particleRise {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    left: 45%;
    animation-delay: 1s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 65%;
    animation-delay: 5s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 80%;
    animation-delay: 2s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    left: 90%;
    animation-delay: 4s;
    animation-duration: 13s;
}

.hero-slider-alefox .carousel-inner,
.hero-slider-alefox .carousel-item {
    min-height: 100vh;
}

.hero-slider-alefox .carousel-item {
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 1s ease-out;
}

/* Cinematic Parallax Zoom Effect */
.hero-slider-alefox .carousel-item.active {
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Dynamic Gradient Overlay */
.hero-slider-alefox .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(2, 44, 34, 0.95) 0%,
            rgba(6, 78, 59, 0.75) 35%,
            rgba(22, 163, 74, 0.4) 65%,
            rgba(34, 197, 94, 0.2) 100%);
    z-index: 1;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

/* Bottom Fade */
.hero-slider-alefox .carousel-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, var(--dark-green) 0%, transparent 100%);
    z-index: 1;
}

.hero-content-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 120px 0;
}

/* Glassmorphism Carousel Controls */
.hero-slider-alefox .carousel-control-prev,
.hero-slider-alefox .carousel-control-next {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-slider-alefox .carousel-control-prev {
    left: 40px;
}

.hero-slider-alefox .carousel-control-next {
    right: 40px;
}

.hero-slider-alefox .carousel-control-prev i,
.hero-slider-alefox .carousel-control-next i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.hero-slider-alefox .carousel-control-prev:hover,
.hero-slider-alefox .carousel-control-next:hover {
    background: rgba(34, 197, 94, 0.9);
    border-color: rgba(34, 197, 94, 1);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.6),
        0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-slider-alefox .carousel-control-prev:hover i,
.hero-slider-alefox .carousel-control-next:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Premium Hero Tagline */
.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(34, 197, 94, 0.12);
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #6ee7b7;
    font-family: var(--alefox-font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

.carousel-item.active .hero-tagline {
    opacity: 1;
}

.hero-tagline i {
    font-size: 16px;
    animation: pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(110, 231, 183, 0.6));
}

/* Cinematic Hero Title */
.hero-title {
    font-family: var(--alefox-font-heading);
    font-weight: 900;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 35px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;
    letter-spacing: -0.02em;
}

.carousel-item.active .hero-title {
    opacity: 1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #6ee7b7 0%, #34d399 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #34d399, transparent);
    border-radius: 2px;
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Hero Description */
.hero-desc {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
    margin-bottom: 50px;
    line-height: 1.85;
    font-weight: 400;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-item.active .hero-desc {
    opacity: 1;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 18px;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.carousel-item.active .hero-actions {
    opacity: 1;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* White Button Variant */
.hero-actions .btn-hero-white {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-hero-white:hover {
    background: var(--white);
    color: var(--dark-green);
    border-color: var(--white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Premium Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    animation: bounce 2.5s infinite;
}

.scroll-indicator .mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 22px;
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: linear-gradient(180deg, #6ee7b7, #34d399);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

/* Floating Leaf Elements with Parallax */
.float-element {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    opacity: 0.35;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease-out;
}

.float-leaf-1 {
    top: 18%;
    left: 6%;
    font-size: 4rem;
    animation: floatDrift 12s ease-in-out infinite;
    animation-delay: 0s;
}

.float-leaf-2 {
    bottom: 22%;
    right: 8%;
    font-size: 3.5rem;
    animation: floatDrift 15s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes floatDrift {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) rotate(5deg);
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
    }

    75% {
        transform: translateY(-25px) rotate(4deg);
    }
}

/* ================= RESPONSIVE HERO ================= */
@media (max-width: 1400px) {
    .hero-title {
        font-size: clamp(3rem, 7vw, 5.5rem);
    }
}

@media (max-width: 991px) {
    .hero-content-wrap {
        padding: 140px 0 100px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        margin-bottom: 25px;
    }

    .hero-desc {
        font-size: 1.1rem;
        margin: 0 auto 35px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-tagline {
        margin: 0 auto 25px;
    }

    .hero-slider-alefox .carousel-control-prev,
    .hero-slider-alefox .carousel-control-next {
        width: 55px;
        height: 55px;
    }

    .hero-slider-alefox .carousel-control-prev {
        left: 20px;
    }

    .hero-slider-alefox .carousel-control-next {
        right: 20px;
    }

    .float-leaf-1,
    .float-leaf-2 {
        opacity: 0.2;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-tagline {
        font-size: 11px;
        padding: 12px 20px;
        letter-spacing: 2px;
    }

    .scroll-indicator {
        bottom: 30px;
        font-size: 9px;
    }

    .scroll-indicator .mouse {
        width: 24px;
        height: 38px;
    }
}

@media (max-width: 576px) {
    .hero-content-wrap {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .alefox-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-slider-alefox .carousel-control-prev,
    .hero-slider-alefox .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .hero-slider-alefox .carousel-control-prev i,
    .hero-slider-alefox .carousel-control-next i {
        font-size: 16px;
    }

    .float-leaf-1,
    .float-leaf-2 {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ================= INTRO SECTION (Modern) ================= */
.intro-alefox {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-cream) 100%);
    position: relative;
}

.intro-alefox::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(68, 160, 91, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(68, 160, 91, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-tagline i {
    animation: pulse 2s ease-in-out infinite;
}

.section-title {
    font-family: var(--alefox-font-heading);
    font-weight: 800;
    font-size: 52px;
    color: var(--dark-green);
    margin-bottom: 25px;
    line-height: 1.15;
}

.section-title.gradient {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-desc-large {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 40px;
}

.intro-feature-list {
    margin-bottom: 50px;
}

.intro-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-base);
}

.intro-feature-item:hover {
    transform: translateX(10px);
}

.intro-feature-item i {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(68, 160, 91, 0.3);
}

/* Stats Boxes */
.stats-grid-alefox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card-alefox {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(68, 160, 91, 0.1);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.stat-card-alefox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card-alefox:hover::before {
    transform: scaleX(1);
}

.stat-card-alefox:hover {
    background: linear-gradient(135deg, #fff, #f0fdf4);
    border-color: var(--primary-green);
    box-shadow: 0 25px 50px rgba(68, 160, 91, 0.15);
    transform: translateY(-10px);
}

.stat-card-alefox h3 {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-card-alefox p {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 1.5px;
}

/* Hero Image Box for Intro Section */
.hero-image-box {
    position: relative;
    z-index: 5;
}

.hero-main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 5px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

.hero-image-box:hover .hero-main-img {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

/* Decorative Badge */
/* Decorative Badge (Modern Glass Card) */
/* Decorative Badge (Modern Glass Card) */
.hero-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    left: auto;
    /* Reset left */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 22px;
    z-index: 15;
    animation: floatBadge 6s ease-in-out infinite;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    min-width: 200px;
    transform-origin: bottom right;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 20px 40px -6px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: translateY(-12px);
        box-shadow: 0 30px 50px -6px rgba(0, 0, 0, 0.15);
    }
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
    flex-shrink: 0;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.badge-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1.2;
    font-family: var(--alefox-font-heading);
}

/* Add Responsive fix for badge */
@media (max-width: 768px) {
    .hero-badge {
        left: 50%;
        right: auto;
        bottom: -20px;
        transform: translateX(-50%);
        min-width: auto;
        padding: 12px 20px;
        animation: floatBadgeMobile 5s ease-in-out infinite;
        white-space: nowrap;
    }

    @keyframes floatBadgeMobile {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-6px);
        }
    }
}

/* ================= WHY CHOOSE US ================= */
.why-alefox {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.why-alefox::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(68, 160, 91, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 24px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 30px;
    transition: var(--transition-bounce);
    border: 1px solid rgba(68, 160, 91, 0.3);
}

.why-card:hover .why-icon {
    background: var(--white);
    color: var(--primary-green);
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-card-title {
    font-family: var(--alefox-font-heading);
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 15px;
}

.why-card p {
    opacity: 0.9;
    line-height: 1.8;
}

/* ================= PRODUCTS SHOWCASE ================= */
.products-showcase {
    padding: 140px 0;
    background: linear-gradient(180deg, #dcfce7 0%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.products-showcase::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(68, 160, 91, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.product-card {
    background: linear-gradient(135deg, #f0fdf4, #fff);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-bounce);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(68, 160, 91, 0.2);
}

.product-img-wrap {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 47, 42, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-content {
    padding: 30px;
    text-align: center;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin: -50px auto 20px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(68, 160, 91, 0.4);
    border: 4px solid var(--white);
}

.product-content h4 {
    font-family: var(--alefox-font-heading);
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.product-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

/* ================= CORE VALUES (Cards) ================= */
.core-values-alefox {
    padding: 140px 0;
    background: var(--bg-cream);
    position: relative;
}

.value-card-alefox {
    background: linear-gradient(135deg, #f0fdf4, #fff);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-bounce);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card-alefox:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(68, 160, 91, 0.15);
}

.value-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.value-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 47, 42, 0.6) 0%, transparent 50%);
    z-index: 1;
}

.value-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.value-card-alefox:hover .value-img img {
    transform: scale(1.15);
}

.value-content {
    padding: 35px;
    text-align: center;
}

.value-icon-box {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin: -60px auto 25px;
    position: relative;
    z-index: 5;
    border: 5px solid var(--white);
    box-shadow: 0 15px 30px rgba(68, 160, 91, 0.3);
    transition: var(--transition-bounce);
}

.value-card-alefox:hover .value-icon-box {
    transform: rotate(10deg) scale(1.1);
}

.value-content h4 {
    font-family: var(--alefox-font-heading);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-green);
}

.value-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ================= CERTIFICATIONS ================= */
.cert-modern-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
}

.cert-alefox-wrap {
    background: linear-gradient(135deg, var(--bg-cream) 0%, rgba(68, 160, 91, 0.05) 100%);
    padding: 60px;
    border-radius: 30px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(68, 160, 91, 0.1);
}

.cert-img-alefox {
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition-base);
}

.cert-img-alefox:hover {
    transform: scale(1.02);
}

/* ================= VIDEO SECTION ================= */
.video-alefox-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #dcfce7 0%, #f0fdf4 100%);
}

/* VIDEO BOX */
.video-box-alefox {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.18);
    background: #064e3b;
}

/* VIDEO */
.alefox-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    pointer-events: none;
    /* 🔥 disables click / pause */
}

/* REMOVE CONTROLS COMPLETELY (WEBKIT) */
.alefox-video::-webkit-media-controls {
    display: none !important;
}

.alefox-video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* TEXT OVERLAY (INSPECTION) */
.video-text-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 5;
    color: #fff;
}

.overlay-title {
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 0.75rem;
}

.overlay-line {
    width: 65px;
    height: 3px;
    background: linear-gradient(135deg, #c5a059, #f7dfa1);
    margin-top: 8px;
    border-radius: 10px;
}

/* CONTENT */
.video-content-side {
    padding-left: 20px;
}

.section-tagline {
    color: #065f46;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.intro-desc-large {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* FEATURES */
.video-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.video-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #065f46;
}

.video-feature-item i {
    color: #c5a059;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .alefox-video {
        height: 320px;
    }

    .video-content-side {
        padding-left: 0;
    }

    .video-features-list {
        grid-template-columns: 1fr;
    }
}

/* ================= CLIENTS SECTION ================= */
.clients-alefox {
    padding: 120px 0;
    background: var(--bg-cream);
}

.clients-grid-alefox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.client-item-alefox {
    background: linear-gradient(135deg, #f0fdf4, #fff);
    padding: 50px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.client-item-alefox img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-base);
}

.client-item-alefox:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(68, 160, 91, 0.15);
    border-color: var(--primary-green);
}

.client-item-alefox:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ================= QUERY/CONTACT SECTION ================= */
.query-section {
    padding: 140px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.query-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('/Images/Capabilities/gerkin12.webp') no-repeat center/cover;
    opacity: 0.1;
}

.query-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.query-form-wrap .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 18px 25px;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition-base);
}

.query-form-wrap .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.query-form-wrap .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(68, 160, 91, 0.15);
    outline: none;
}

.query-form-wrap textarea.form-control {
    min-height: 150px;
    resize: none;
}

/* ================= CTA SECTION ================= */
.cta-alefox {
    padding: 120px 0;
    background: var(--dark-green);
    position: relative;
    overflow: hidden;
}

.cta-alefox::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(68, 160, 91, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-wrap-alefox {
    background: var(--gradient-primary);
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 40px 80px rgba(68, 160, 91, 0.3);
    overflow: hidden;
}

.cta-wrap-alefox::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.cta-wrap-alefox h2 {
    font-family: var(--alefox-font-heading);
    color: var(--white);
    font-weight: 900;
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-wrap-alefox p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= RESPONSIVENESS ================= */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 70px;
    }

    .section-title {
        font-size: 44px;
    }

    .cta-wrap-alefox h2 {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 55px;
    }

    .section-title {
        font-size: 38px;
    }

    .hero-content-wrap {
        text-align: center;
        justify-content: center;
    }

    .hero-tagline {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 45px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-box {
        margin-top: 60px;
    }

    .stats-grid-alefox {
        grid-template-columns: 1fr 1fr;
    }

    .hero-badge {
        width: 110px;
        height: 110px;
        bottom: -20px;
        left: -20px;
    }

    .hero-badge i {
        font-size: 26px;
    }

    .hero-badge small {
        font-size: 9px;
    }

    .clients-grid-alefox {
        grid-template-columns: 1fr 1fr;
    }

    .query-form-wrap {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .alefox-section {
        padding: 80px 0;
    }

    .intro-alefox,
    .why-alefox,
    .core-values-alefox,
    .cert-modern-section,
    .video-alefox-section,
    .products-showcase,
    .query-section {
        padding: 80px 0;
    }

    .stats-grid-alefox {
        grid-template-columns: 1fr;
    }

    .clients-grid-alefox {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        width: 100px;
        height: 100px;
        left: 0;
        bottom: -20px;
    }

    .hero-badge i {
        font-size: 24px;
    }

    .cta-wrap-alefox {
        padding: 50px 30px;
    }

    .cta-wrap-alefox h2 {
        font-size: 32px;
    }

    .hero-slider-alefox .carousel-control-prev,
    .hero-slider-alefox .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .hero-slider-alefox .carousel-control-prev {
        left: 15px;
    }

    .hero-slider-alefox .carousel-control-next {
        right: 15px;
    }

    .video-box-alefox iframe {
        height: 300px;
    }

    .cert-alefox-wrap {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .alefox-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .stat-card-alefox h3 {
        font-size: 36px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {

    .hero-slider-alefox .carousel-item,
    .hero-slider-alefox .carousel-inner,
    .hero-content-wrap {
        min-height: auto;
        height: auto;
    }

    .hero-content-wrap {
        padding: 100px 0;
    }

    .hero-title {
        font-size: 36px;
    }
}

/* ================= PRODUCT DETAIL CARDS ================= */
.product-detail-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-bounce);
    height: 100%;
    border: 2px solid transparent;
}

.product-detail-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(68, 160, 91, 0.2);
    border-color: var(--primary-green);
}

.product-detail-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.product-detail-card:hover .product-detail-img img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-content {
    padding: 30px 25px;
    text-align: center;
}

.product-detail-content .product-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin: -50px auto 20px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(68, 160, 91, 0.4);
    border: 4px solid var(--white);
}

.product-detail-content h4 {
    font-family: var(--alefox-font-heading);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.product-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-features li i {
    color: var(--primary-green);
    font-size: 10px;
}

/* ================= WHY SECTION NEW DESIGN ================= */
.why-alefox-new {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
    position: relative;
}

.why-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    position: relative;
    padding: 0 30px;
}

.why-quote i {
    color: var(--primary-green);
    opacity: 0.5;
    font-size: 16px;
}

.why-card-new {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-bounce);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card-new:hover::before {
    transform: scaleX(1);
}

.why-card-new:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(68, 160, 91, 0.15);
    border-color: var(--primary-green);
}

.why-icon-new {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 0 auto 25px;
    box-shadow: 0 15px 30px rgba(68, 160, 91, 0.3);
    transition: var(--transition-bounce);
}

.why-card-new:hover .why-icon-new {
    transform: scale(1.1) rotate(10deg);
}

.why-card-new h4 {
    font-family: var(--alefox-font-heading);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-green);
}

.why-card-new p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ================= VIDEO SECTION WITH LABEL ================= */
.video-wrapper {
    position: relative;
}

.video-label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 30px;
    font-family: var(--alefox-font-heading);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(68, 160, 91, 0.4);
}

/* ================= CLIENTS SECTION NEW ================= */
.clients-section-new {
    padding: 100px 0;
    background: var(--bg-cream);
}/* --- INFINITE CLIENTS CAROUSEL --- */
.clients-track-wrapper {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.clients-track-wrapper::before,
.clients-track-wrapper::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.clients-track-wrapper::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, var(--bg-cream) 0%, transparent 100%);
}

.clients-track-wrapper::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, var(--bg-cream) 0%, transparent 100%);
}

.clients-track {
    display: flex;
    width: calc(250px * 12); /* Based on number of cards in HTML (6 original + 6 duplicated) */
    animation: scroll-clients 40s linear infinite;
    gap: 30px;
}

@keyframes scroll-clients {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6 - 180px)); } /* Half of the total width + total gap of half items */
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-card {
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    border: 1px solid rgba(0,0,0,0.02);
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 25px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition-base);
}

.client-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(68, 160, 91, 0.2);
    border-color: var(--primary-green);
}

.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition-base);
}

.client-card:hover .client-overlay {
    transform: translateY(0);
}

.client-overlay span {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-note {
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 30px;
}

.clients-note i {
    color: var(--primary-green);
    margin-right: 8px;
}

/* ================= CTA SECTION NEW ================= */
.cta-section-new {
    padding: 120px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(68, 160, 91, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-glass-card {
    background: linear-gradient(135deg, rgba(68, 160, 91, 0.2), rgba(68, 160, 91, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(68, 160, 91, 0.3);
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 4s infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(68, 160, 91, 0.4);
}

.cta-icon i {
    font-size: 40px;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--alefox-font-heading);
    font-weight: 900;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    display: block;
    font-family: var(--alefox-font-heading);
    font-weight: 900;
    font-size: 42px;
    color: var(--primary-green);
    text-shadow: 0 0 30px rgba(68, 160, 91, 0.5);
}

.cta-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--dark-green);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
    color: var(--primary-green);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: var(--transition-bounce);
}

.cta-btn-secondary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(68, 160, 91, 0.4);
    color: var(--white);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-contact-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.cta-contact-info i {
    color: var(--primary-green);
    margin-right: 8px;
}

/* Responsive for new sections */
@media (max-width: 991px) {
    .cta-stats {
        gap: 30px;
    }

    .cta-stat-number {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .client-card {
        width: 180px;
        height: 120px;
    }

    .why-quote {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .cta-glass-card {
        padding: 50px 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-stat-number {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .client-card {
        width: 150px;
        height: 100px;
    }

    .video-label {
        font-size: 14px;
        padding: 10px 25px;
        letter-spacing: 2px;
    }

    .why-quote {
        font-size: 16px;
        padding: 0 15px;
    }

    .product-detail-content {
        padding: 25px 20px;
    }
}

/* ================= NEW REFERENCE VIDEO SECTION ================= */
.video-section-reference {
    padding: 100px 0;
    background: #fdfdfd;
    /* Light background */
    position: relative;
    overflow: hidden;
}

.video-section-reference::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(68, 160, 91, 0.05), transparent 70%);
}

.video-box-reference {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    /* Softer shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass to video if controls were enabled */
}

.inspection-label {
    color: var(--white);
    font-family: var(--alefox-font-heading);
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.inspection-line {
    width: 0px;
    height: 3px;
    background: var(--primary-green);
    margin-top: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(68, 160, 91, 0.8);
}

/* Hover Effects */
.video-box-reference:hover .inspection-label {
    opacity: 1;
    transform: translateY(-5px);
    text-shadow: 0 5px 30px rgba(0, 0, 0, 1);
}

.video-box-reference:hover .inspection-line {
    width: 100px;
    /* Expand underline */
}

/* The actual video iframe */
.video-iframe-visible {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

/* Video Content Side (Light Theme) */
.video-content-side {
    padding-left: 20px;
    color: var(--text-dark);
}

.video-content-side .section-tagline {
    margin-bottom: 15px;
    display: inline-block;
}

.video-content-side .section-title {
    color: var(--dark-green);
    margin-bottom: 20px;
}

.video-content-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.video-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-feature-item i {
    color: var(--white);
    background: var(--primary-green);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(68, 160, 91, 0.3);
}

.video-feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-green);
}

/* ================= NEW BIGGER CTA SECTION ================= */
.cta-section-better {
    padding: 100px 0;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#44A05B 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.cta-main-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #e8f5e9;
    color: var(--dark-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--alefox-font-heading);
    font-weight: 900;
    font-size: 48px;
    color: var(--dark-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-highlights {
    display: flex;
    gap: 40px;
}

.cta-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cta-highlight-item strong {
    display: block;
    font-size: 20px;
    color: var(--dark-green);
    font-weight: 800;
}

.cta-highlight-item span {
    font-size: 13px;
    color: var(--text-muted);
}

.cta-action-box {
    background: var(--white);
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.cta-action-box:hover {
    transform: rotate(0deg) translateY(-5px);
}

.cta-action-inner {
    background: var(--dark-green);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-action-inner h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.cta-action-inner p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 15px;
}

.cta-contact-details {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-contact-link:hover {
    color: var(--primary-green);
}

.cta-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    color: var(--dark-green);
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 15px;
    transition: 0.3s;
}

.cta-main-btn:hover {
    background: var(--white);
    color: var(--dark-green);
    transform: none;
}

.cta-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.cta-secondary-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    .video-features-list {
        margin-bottom: 30px;
    }

    .cta-highlights {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cta-action-box {
        transform: rotate(0deg);
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .video-section-reference {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-highlights {
        flex-direction: column;
    }

    .video-features-list {
        grid-template-columns: 1fr;
    }

    .cta-action-inner {
        padding: 30px 20px;
    }
}

/* ================= VIDEO SECTION MODERN ================= */
.video-section-modern {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.video-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(68, 160, 91, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.video-section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.video-section-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 50px;
    border-radius: 50px;
    font-family: var(--alefox-font-heading);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(68, 160, 91, 0.4);
}

.video-section-header .section-title {
    color: var(--white);
    margin-bottom: 15px;
}

.video-modern-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(68, 160, 91, 0.3);
}

.video-modern-wrapper iframe {
    width: 100%;
    height: 500px;
    display: block;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.video-feature i {
    color: var(--primary-green);
    font-size: 20px;
}

/* ================= COMPACT CTA SECTION ================= */
.cta-compact {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #e8f5e9 100%);
    border-top: 3px solid rgba(68, 160, 91, 0.2);
    border-bottom: 3px solid rgba(68, 160, 91, 0.2);
}

.cta-compact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-compact-content h3 {
    font-family: var(--alefox-font-heading);
    font-weight: 800;
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.cta-compact-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 16px;
}

.cta-compact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-compact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
}

.cta-compact-btn.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(68, 160, 91, 0.3);
}

.cta-compact-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(68, 160, 91, 0.4);
    color: var(--white);
}

.cta-compact-btn.secondary {
    background: var(--white);
    color: var(--dark-green);
    border: 2px solid rgba(18, 47, 42, 0.2);
}

.cta-compact-btn.secondary:hover {
    background: var(--dark-green);
    color: var(--white);
    border-color: var(--dark-green);
    transform: translateY(-3px);
}

/* Responsive for new sections */
@media (max-width: 991px) {
    .video-modern-wrapper iframe {
        height: 400px;
    }

    .video-features {
        gap: 20px;
    }

    .cta-compact-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-compact-content h3 {
        font-size: 26px;
    }

    /* Intro Section Mobile Alignment */
    .intro-alefox {
        padding: 80px 0;
        text-align: center;
    }

    .intro-feature-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto 40px;
    }

    .stats-grid-alefox {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .intro-feature-item {
        justify-content: flex-start;
    }

    .intro-actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .video-section-modern {
        padding: 60px 0;
    }

    .video-section-label {
        font-size: 16px;
        padding: 10px 30px;
        letter-spacing: 4px;
    }

    .video-modern-wrapper iframe {
        height: 280px;
    }

    .video-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-compact {
        padding: 40px 0;
    }

    .cta-compact-content h3 {
        font-size: 22px;
    }

    .cta-compact-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-compact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================= MOVED FROM INLINE ================= */

/* Hero Slides */
.slide-bg-1 {
    background-image: url('/images/v2/hero_farm.webp');
}

.slide-bg-2 {
    background-image: url('/images/1.webp');
}

.slide-bg-3 {
    background-image: url('/images/2.webp');
}

/* Section Divider */
.divider-border-bottom {
    border-bottom: 4px solid var(--primary-green);
}

.divider-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.divider-text {
    font-family: var(--alefox-font-heading);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 12px;
    opacity: 0.8;
}

.divider-star {
    color: #D4AF37;
    margin: 0 15px;
}

/* Products Section */
.shape-circle-pos {
    top: -100px;
    right: -100px;
}

.products-intro-desc {
    max-width: 700px;
}

/* Awards Section */
.awards-intro-desc {
    max-width: 800px;
}

.trophy-img-wrap {
    background: #fdfdfd !important;
    /* Force override if needed, though inline usually wins, classes need specificity or just no conflict */
}

.trophy-img {
    object-fit: contain;
}

/* ================= MOVED FROM STYLE BLOCK ================= */

/* ================= CATCHY MIDNIGHT HALL OF FAME ================= */
.awards-wow-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.awards-wow-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.awards-wow-section .section-title {
    color: var(--text-dark) !important;
}

.awards-wow-section .awards-intro-desc {
    color: var(--text-muted);
}

.award-premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(68, 160, 91, 0.1);
    border-radius: 20px;
    height: 450px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.award-premium-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(68, 160, 91, 0.1);
}

.award-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.award-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5);
    transition: all 0.8s ease;
}

.award-premium-card:hover .award-img-wrap img {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.1);
}

.award-overlay-wow {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 5;
    background: transparent;
    opacity: 1 !important;
    transform: none !important;
    display: block !important;
}

.year-badge {
    background: var(--gold-accent);
    color: #011C18;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
    display: inline-block;
}

.award-info-wow {
    position: relative;
    z-index: 10;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(1, 28, 24, 0.98) 40%, transparent 100%);
    transform: translateY(120px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
}

.award-premium-card:hover .award-info-wow {
    transform: translateY(0);
}

.award-info-wow h4 {
    color: var(--gold-accent);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.award-info-wow h4::before {
    content: '\f091';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
}

.award-info-wow p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    opacity: 0;
    transition: all 0.4s ease;
    transition-delay: 0.2s;
    line-height: 1.6;
}

.award-premium-card:hover .award-info-wow p {
    opacity: 1;
}

.trophy-card .award-img-wrap {
    padding: 40px;
}

.trophy-icon-wow {
    font-size: 3rem;
    color: #D4AF37;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.alefox-btn.luxury-gold {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-color: #D4AF37;
    color: white !important;
}

.alefox-btn.luxury-gold:hover {
    background: white;
    color: #B8860B !important;
    border-color: #B8860B;
}

/* ============ LEAF ANIMATION STYLES ============ */
.float-element {
    position: absolute;
    z-index: 5;
    font-size: 5rem;
    opacity: 0.7;
    filter: blur(1px);
    animation: floatLeaf 5s ease-in-out infinite;
}

.float-leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-leaf-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(45deg);
    font-size: 4rem;
}

@keyframes floatLeaf {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(10deg);
    }
}

/* ================= UTILITY CLASSES FOR INLINE REMOVAL ================= */
.max-w-650 {
    max-width: 650px;
}

.w-fit-content {
    width: fit-content;
}

.horizontal-award {
    border-radius: 40px !important;
}

.highlight-glow {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2) !important;
}

.highlight-glow:hover {
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.4) !important;
}

@media (max-width: 767px) {
    .horizontal-award .award-img-wrap {
        height: 250px !important;
    }
}

/* ================= GLOBAL EXPORT VOLUME SECTION ================= */
.export-volume-section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.export-volume-section .section-tagline {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
}

.export-volume-section .section-title {
    margin-bottom: 30px;
}

.export-volume-section .highlight {
    color: var(--primary-green);
}

.volume-display-card {
    background: var(--bg-cream);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid rgba(68, 160, 91, 0.1);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    height: 100%;
}

.volume-display-card::after {
    content: '\f48b';
    /* ship icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 15rem;
    color: var(--primary-green);
    opacity: 0.05;
    pointer-events: none;
}

.volume-stat {
    margin-bottom: 20px;
}

.volume-stat h3 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--dark-green);
    line-height: 1;
    margin-bottom: 15px;
}

.volume-stat .highlight {
    color: var(--primary-green);
}

.volume-stat p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.market-reach-card {
    background: var(--dark-green);
    padding: 50px;
    border-radius: 40px;
    color: var(--white);
    height: 100%;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.market-reach-card h4 {
    color: var(--gold-accent);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.market-reach-card h4 i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.market-reach-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.country-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.country-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-bounce);
    cursor: default;
}

.country-chip:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

@media (max-width: 991px) {

    .volume-display-card,
    .market-reach-card {
        padding: 40px 30px;
    }

    .volume-stat h3 {
        font-size: 3.5rem;
    }
}

/* ================= INTRO SECTION (Modern 2026) ================= */
.intro-modern-section {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Abstract Background Shapes */
.intro-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: #dcfce7;
    top: -200px;
    right: -100px;
    animation: drift 20s infinite alternate;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #f0fdf4;
    bottom: -100px;
    left: -100px;
    animation: drift 15s infinite alternate-reverse;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

/* --- Visual Composition (Left) --- */
.intro-visual-composition {
    position: relative;
    padding: 40px;
    z-index: 1;
}

.visual-main-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visual-main-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.visual-img {
    width: 100%;
    display: block;
    border-radius: 30px;
}

/* Back Pattern */
.visual-back-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 30px;
    z-index: 1;
    transform: translate(20px, 20px) rotate(-5deg);
    opacity: 0.1;
}

/* Decorative Circle */
.visual-circle-deco {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border: 2px dashed #bbf7d0;
    border-radius: 50%;
    z-index: 0;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Floating Card */
.visual-float-card {
    position: absolute;
    bottom: 60px;
    right: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation: floatCard 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.8);
    min-width: 240px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-icon {
    width: 45px;
    height: 45px;
    background: #dcfce7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 1.2rem;
}

.float-text {
    display: flex;
    flex-direction: column;
}

.float-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.float-value {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 800;
}


/* --- Content Side (Right) --- */
.intro-content-modern {
    padding-left: 20px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f0fdf4;
    color: #15803d;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid #dcfce7;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: var(--alefox-font-heading);
}

.text-highlight {
    position: relative;
    color: #166534;
    z-index: 1;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #dcfce7;
    z-index: -1;
    border-radius: 4px;
    opacity: 0.6;
}

.section-desc-modern {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Features Grid */
.intro-features-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feat-icon {
    width: 36px;
    height: 36px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.15);
}

.feature-item-modern span {
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

/* Premium Stats Grid (Modern 2026) */
.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card-premium {
    background: #ffffff;
    border: 1px solid rgba(22, 163, 74, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 25px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.stat-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Stronger shadow on hover */
    border-color: rgba(22, 163, 74, 0.3);
}

/* Background Icon Faded */
.stat-icon-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    color: #16a34a;
    /* Primary Green */
    opacity: 0.05;
    transform: rotate(15deg);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.stat-card-premium:hover .stat-icon-bg {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.1;
}

.stat-content-p h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    /* Slate 900 */
    margin-bottom: 2px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.stat-label-p {
    font-size: 0.8rem;
    color: #64748b;
    /* Slate 500 */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    /* Space for the bar */
    display: block;
}

/* Progress bar style decoration */
.stat-bar {
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    border-radius: 2px;
    overflow: hidden;
    margin-top: auto;
    /* Push to bottom */
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #16a34a, #bef264);
    border-radius: 2px;
    transform-origin: left;
    animation: growBar 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.4);
}

@keyframes growBar {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Responsive adjustment for stats */
@media (max-width: 991px) {
    .stats-grid-premium {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .stats-grid-premium {
        grid-template-columns: 1fr;
    }

    .stat-card-premium {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 20px;
        gap: 20px;
    }

    .stat-bar {
        display: none;
        /* Hide bar on mobile for cleaner look or keep it */
    }

    .stat-icon-bg {
        position: relative;
        top: auto;
        right: auto;
        font-size: 2.5rem;
        opacity: 0.2;
        order: -1;
        /* Move icon to left */
        margin-right: 15px;
        /* Add space */
        transform: rotate(0);
    }

    .stat-card-premium:hover .stat-icon-bg {
        transform: scale(1.1);
    }
}

/* Buttons */
.intro-actions-modern {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #16a34a;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

.btn-modern-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
    color: white;
}

.btn-modern-text {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-modern-text:hover {
    color: #16a34a;
    gap: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .intro-visual-composition {
        margin-bottom: 60px;
        padding: 20px;
    }

    .visual-float-card {
        right: 0;
        bottom: 30px;
    }

    .section-title-modern {
        font-size: 2.2rem;
    }

    .stats-strip-modern {
        width: 100%;
        justify-content: space-around;
        padding: 20px;
    }

    .stat-divider {
        display: none;
    }

    .intro-features-grid {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- Fresh Portal Visual (2026 Redesign V3) --- */
.intro-fresh-portal {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* 1. Animated Blob Background */
.portal-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: blobMorph 10s ease-in-out infinite alternate;
    opacity: 0.8;
}

@keyframes blobMorph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: scale(1);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1.05);
    }
}

/* 2. Main Frame (The Farm) */
.portal-main-frame {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: 200px 200px 40px 40px;
    /* Unique elongated arch */
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 40px 80px -20px rgba(22, 163, 74, 0.3);
    border: 8px solid #ffffff;
    transform: rotate(-2deg);
    transition: transform 0.6s ease;
}

.portal-main-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.portal-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portal-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

/* 3. Floating Product */
.portal-float-product {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 220px;
    /* Adjust based on image aspect ratio */
    z-index: 3;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: floatProduct 8s ease-in-out infinite;
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.portal-img-product {
    width: 100%;
    display: block;
    transform: rotate(5deg);
}

.product-tag {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: #ffffff;
    color: #166534;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.product-tag i {
    color: #ffd700;
    /* Gold check */
}

/* 4. Leaves */
.deco-leaf {
    position: absolute;
    font-size: 2rem;
    color: #4ade80;
    z-index: 4;
    opacity: 0.8;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.d-leaf-1 {
    top: 50px;
    left: 40px;
    font-size: 3rem;
    animation: leafFloat 12s ease-in-out infinite;
}

.d-leaf-2 {
    bottom: 100px;
    left: -30px;
    font-size: 2.2rem;
    color: #22c55e;
    animation: leafFloat 15s ease-in-out infinite reverse;
}

@keyframes leafFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -20px) rotate(20deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .intro-fresh-portal {
        height: 500px;
        margin-bottom: 60px;
    }

    .portal-main-frame {
        width: 320px;
        height: 420px;
    }

    .portal-float-product {
        width: 180px;
        right: 10%;
    }
}

@media (max-width: 576px) {
    .portal-main-frame {
        width: 280px;
        height: 380px;
    }

    .portal-float-product {
        width: 140px;
        bottom: 20px;
    }

    .product-tag {
        font-size: 0.7rem;
        padding: 8px 14px;
        right: -10px;
    }
}

/* =========================================================
   NEXT-GEN PREMIUM HERO SECTION - FRESHGREEN AGRO
   Modern FRESH GREEN Theme
========================================================= */

/* Hero Container */
.hero-slider-premium {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #111827;
    /* Dark Charcoal */
}

/* Animated Background Orbs (Green Theme) */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #22c55e, transparent);
    /* Green */
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #84cc16, transparent);
    /* Lime */
    bottom: -15%;
    right: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #4ade80, transparent);
    /* Light Green */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Carousel Items */
.hero-slider-premium .carousel-inner,
.hero-slider-premium .carousel-item {
    min-height: 100vh;
    max-height: 100vh;
}

.hero-slider-premium .carousel-item {
    position: relative;
    background-color: #111827;
    height: 100vh;
}

/* Background Image Layer */
.hero-slider-premium .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.slide-bg-1::after {
    background-image: url('/images/Home/hero_bg_slide1_new.webp');
}

.slide-bg-2::after {
    background-image: url('/images/1.webp');
}

.slide-bg-3::after {
    background-image: url('/images/2.webp');
}

/* Enhanced Dynamic Overlay Gradient (Dark + Green Hint) */
.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(17, 24, 39, 0.98) 0%,
            rgba(17, 24, 39, 0.92) 35%,
            rgba(34, 197, 94, 0.15) 65%,
            rgba(34, 197, 94, 0.05) 100%);
    z-index: 2;
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.93;
    }
}

/* Texture Overlay */
.hero-overlay-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 222, 128, 0.03) 0%, transparent 50%);
    animation: textureShift 15s ease-in-out infinite;
}

@keyframes textureShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

/* Layout Containers */
.hero-split-container {
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    position: relative;
    z-index: 10;
}

.hero-content-side {
    display: flex;
    align-items: center;
    padding: 140px 80px 100px;
    position: relative;
    z-index: 10;
    height: 100vh;
}

.hero-content-inner {
    max-width: 650px;
}

.hero-visual-side {
    position: relative;
    height: 100vh;
}

/* Typography (Green Theme) */
.hero-mega-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    margin: 10px 0;
    padding-bottom: 5px;
    /* Prevent clipping */
}

.title-subtitle {
    display: block;
    font-size: 0.35em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 15px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    font-weight: 400;
}

/* Stats */
.hero-stats-mini {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Features List */
.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.feature-item i {
    color: #22c55e;
    font-size: 1.2rem;
}

/* Buttons */
.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
    color: #fff !important;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff !important;
}

/* Redundant hero button styles removed to use unified premium-btn from site.css */

/* Navigation */
.hero-nav-premium {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Premium Button Unified Styles */
.premium-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 15px 35px !important;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25) !important;
    white-space: nowrap !important;
    border: none !important;
}

.premium-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.35) !important;
    color: #ffffff !important;
}

.premium-btn-outline {
    background: transparent !important;
    border: 1.5px solid #22c55e !important;
    color: #22c55e !important;
    box-shadow: none !important;
}

.premium-btn-outline:hover {
    background: rgba(34, 197, 94, 0.05) !important;
    color: #16a34a !important;
}

.premium-btn i {
    font-size: 1rem !important;
    transition: transform 0.3s ease !important;
}

.premium-btn:hover i {
    transform: translateX(5px) !important;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #22c55e;
    border-color: #22c55e;
    transform: scale(1.1);
}

.nav-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-indicators button.active {
    width: 30px;
    border-radius: 4px;
    background: #22c55e;
}

/* Scroll Prompt */
.scroll-prompt {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    font-weight: 600;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #22c55e, transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Premium Divider */
.section-divider-premium {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.divider-icon {
    color: #22c55e;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.divider-text {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}


.divider-dot {
    color: #22c55e;
    font-size: 1.5rem;
}

/* ================= PREMIUM GHERKIN JAR SCENE ================= */
.gherkin-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
}

.gherkin-jars-wrapper {
    position: relative;
    z-index: 10;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.main-gherkin-img {
    max-width: 85%;
    max-height: 60vh;
    border-radius: 30px;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
    animation: floatJar 8s ease-in-out infinite;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes floatJar {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(2deg);
    }
}

.glass-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.floating-spice {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    filter: blur(1px);
    z-index: 12;
    pointer-events: none;
}

.dill-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 C50 10 70 40 50 90 M50 90 C50 90 30 40 50 10" fill="none" stroke="%2322c55e" stroke-width="2"/></svg>');
    animation: spiceFloat 10s linear infinite;
}

.peppercorn-1 {
    width: 12px;
    height: 12px;
    background: #1a1a1a;
    border-radius: 50%;
    top: 60%;
    right: 30%;
    animation: spiceFloat 15s linear infinite reverse;
}

.mustard-1 {
    width: 8px;
    height: 8px;
    background: #eab308;
    border-radius: 50%;
    top: 40%;
    left: 20%;
    animation: spiceFloat 12s linear infinite;
}

@keyframes spiceFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 30px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}


/* ================= GLOBAL OVERFLOW FIX ================= */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* ================= SLIDE 2: QUALITY FOCUS ANIMATION ================= */
.quality-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quality-main-img {
    width: auto;
    max-height: 380px;
    max-width: 85%;
    z-index: 5;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: breatheImg 6s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    top: 10%;
    right: 15%;
    background: #ffffff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 6;
    animation: floatBadge 5s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
}

.floating-badge i {
    font-size: 2.5rem;
    color: #22c55e;
}

@keyframes breatheImg {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}



/* ================= SLIDE 3: GLOBAL NETWORK ANIMATION ================= */
.network-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    /* Ensure ring isn't clipped */
}

.globe-img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 50px rgba(34, 197, 94, 0.4);
    z-index: 5;
    position: relative;
}

.network-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    /* Increased size to clear image */
    height: 480px;
    border: 2px dashed rgba(34, 197, 94, 0.6);
    /* Increased opacity */
    border-radius: 50%;
    animation: spinRing 20s linear infinite;
    z-index: 4;
    /* Behind image if we want orbit feel, or front? "round the inside image" -> maybe ring around outside? User said "round the inside image" -> maybe they want ring around content. */
    /* Let's put ring around the image, so larger valid. */
}

.net-node {
    position: absolute;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 15px #22c55e;
    z-index: 6;
    /* On top of everything */
    animation: pulseNode 2s infinite;
}

.nn-1 {
    width: 15px;
    height: 15px;
    top: 20%;
    left: 30%;
}

.nn-2 {
    width: 10px;
    height: 10px;
    top: 60%;
    left: 70%;
    animation-delay: 0.5s;
}

.nn-3 {
    width: 12px;
    height: 12px;
    top: 40%;
    left: 80%;
    animation-delay: 1s;
}

.nn-4 {
    width: 14px;
    height: 14px;
    top: 70%;
    left: 20%;
    animation-delay: 1.5s;
}

.net-path {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseNode {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}



/* Responsive Design */
@media (max-width: 991px) {
    .hero-content-side {
        padding: 120px 40px 80px;
    }

    .hero-visual-side {
        min-height: 400px;
    }

    .hero-mega-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-stats-mini {
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .scroll-prompt {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content-side {
        padding: 100px 30px 60px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-nav-premium {
        bottom: 30px;
        padding: 12px 20px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .divider-text {
        font-size: 11px;
        gap: 12px;
    }
}

/* =========================================================
   INTRO SECTION - PREMIUM MODERN DESIGN
   Fresh Green Agro | Enhanced with Beautiful Effects
========================================================= */

/* ================= SECTION ================= */
.intro-modern-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Decoration */
.intro-modern-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(134, 239, 172, 0.2), transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: floatBg 15s ease-in-out infinite;
}

.intro-modern-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(191, 219, 254, 0.15), transparent);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: floatBg 20s ease-in-out infinite reverse;
}

@keyframes floatBg {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* ================= IMAGE SIDE (Enhanced) ================= */
.intro-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 25px 70px rgba(22, 163, 74, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.intro-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1.05) contrast(1.05);
}

.intro-image-wrapper:hover .intro-main-img {
    transform: scale(1.08) rotate(-1deg);
}

/* Image Shine Effect */
.intro-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s;
    pointer-events: none;
    z-index: 2;
}

.intro-image-wrapper:hover::before {
    transform: translateX(100%);
}

/* Image Border Glow */
.intro-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #22c55e, #16a34a, #22c55e);
    background-size: 200% 200%;
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
    animation: borderGlow 3s ease-in-out infinite;
}

.intro-image-wrapper:hover::after {
    opacity: 0.3;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ================= CONTENT SIDE ================= */
.intro-content {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

/* Enhanced Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    color: #166534;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
    animation: badgePulse 3s ease-in-out infinite;
}

.section-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 40px rgba(22, 163, 74, 0.25);
    }
}

.section-badge i {
    color: #22c55e;
    font-size: 1.2rem;
    animation: iconSpin 4s linear infinite;
}

@keyframes iconSpin {

    0%,
    90% {
        transform: rotate(0deg);
    }

    95% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Title */
.section-title {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-highlight {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Description */
.section-desc {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 45px;
}

.section-desc b {
    color: #166534;
    font-weight: 800;
}

/* ================= PREMIUM STATS CARDS ================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.stat-card {
    position: relative;
    padding: 30px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 24px;
    border: 2px solid rgba(187, 247, 208, 0.5);
    box-shadow:
        0 12px 35px rgba(22, 163, 74, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

/* Animated Top Border */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a, #22c55e);
    background-size: 200% 100%;
    animation: topBorderShine 3s linear infinite;
}

@keyframes topBorderShine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Background Pattern */
.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05), transparent);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(22, 163, 74, 0.2),
        0 0 50px rgba(134, 239, 172, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
    border-color: rgba(74, 222, 128, 0.8);
}

/* Stat Layout */
.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

/* Stat Icon - Enhanced */
.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    position: relative;
    box-shadow:
        0 12px 30px rgba(34, 197, 94, 0.3),
        inset 0 -3px 10px rgba(0, 0, 0, 0.15),
        inset 0 3px 10px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #22c55e, transparent, #22c55e);
    border-radius: 23px;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.4s;
}

.stat-card:hover .stat-icon {
    transform: rotate(10deg) scale(1.15);
    box-shadow:
        0 15px 40px rgba(34, 197, 94, 0.45),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.3);
}

.stat-card:hover .stat-icon::before {
    opacity: 1;
}

.stat-icon i {
    position: relative;
    z-index: 2;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Stat Info */
.stat-info {
    position: relative;
    z-index: 2;
}

.stat-info h3 {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-info span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ================= PREMIUM BUTTONS ================= */
.intro-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: 60px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 15px 35px rgba(34, 197, 94, 0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Button Shine Effect */
.btn-primary::before {
    display: none;
}

.btn-primary:hover::before {
    display: none;
}

/* Button Ring Effect */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 60px;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.4s;
}

.btn-primary:hover {
    transform: none;
    box-shadow:
        0 15px 35px rgba(34, 197, 94, 0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-primary:hover::after {
    opacity: 0;
}

.btn-primary i {
    font-size: 1.1rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover i {
    transform: none;
}

/* Text Button - Enhanced */
.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 32px;
    color: #166534;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 253, 244, 0.9));
    border-radius: 60px;
    border: 2px solid rgba(187, 247, 208, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.08);
}

.btn-text:hover {
    color: #166534;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 253, 244, 0.9));
    border-color: rgba(187, 247, 208, 0.5);
    transform: none;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.08);
}

.btn-text i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .intro-modern-section {
        padding: 80px 0;
    }

    .intro-image-wrapper {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .stats-grid {
        gap: 16px;
    }

    .stat-card {
        padding: 24px 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-info h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .intro-modern-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-card {
        padding: 12px 5px;
        min-height: auto;
        gap: 5px !important;
        justify-content: center;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 5px;
        border-radius: 12px;
    }

    .stat-info h3 {
        font-size: 1.5rem;
        letter-spacing: -1px;
    }

    .stat-info span {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }

    .intro-actions {
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .btn-primary,
    .btn-text {
        justify-content: center;
        flex: 1;
        padding: 12px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .section-badge {
        font-size: 0.75rem;
        padding: 12px 24px;
    }

    .section-desc {
        font-size: 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-info h3 {
        font-size: 1.1rem;
    }

    .stat-info span {
        font-size: 0.55rem;
    }

    .btn-primary,
    .btn-text {
        padding: 16px 36px;
        font-size: 0.95rem;
    }
}

/* =========================================================
   QUALITY IN MOTION - ULTRA MODERN PREMIUM DESIGN
   Fresh Green Agro | Elite Section Aesthetics
========================================================= */

.video-alefox-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Dynamic Background Elements */
.video-alefox-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.04) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.video-alefox-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

/* ================= LEFT: VIDEO HUD COMPOSITION ================= */
.video-box-alefox {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-box-alefox:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 50px 120px rgba(34, 197, 94, 0.2);
}

/* HUD Scanning Beam */
.video-box-alefox::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.1) 50%, transparent 100%);
    animation: scanBeam 4s linear infinite;
    z-index: 5;
    pointer-events: none;
}

@keyframes scanBeam {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.alefox-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.video-box-alefox:hover .alefox-video {
    opacity: 1;
}

/* DYNAMIC INSPECTION OVERLAY */
.video-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
    width: 100%;
}

.overlay-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;

    /* Neon Green Gradient Text */
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-transform: uppercase;
    letter-spacing: 12px;
    display: block;
    margin-bottom: 15px;

    /* Soft Neon Glow */
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));

    animation: overlayFadeIn 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.overlay-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: slideUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
    animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RIGHT: CONTENT SIDE ================= */
.video-content-side {
    padding-left: 40px;
}

.section-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f0fdf4;
    color: #166534;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.section-tagline i {
    color: #22c55e;
    font-size: 1.1rem;
    animation: rotateIcon 4s linear infinite;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.section-title span {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-desc-large {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 45px;
    font-weight: 400;
}

/* ADVANCED FEATURES GRID */
.video-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.video-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.video-feature-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #22c55e;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
}

.video-feature-item i {
    width: 45px;
    height: 45px;
    background: #f0fdf4;
    color: #22c55e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.video-feature-item:hover i {
    background: #22c55e;
    color: #ffffff;
    transform: rotate(10deg);
}

.video-feature-item span {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    line-height: 1.3;
}

/* CALL TO ACTION BUTTON */
.alefox-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 60px;
    text-decoration: none !important;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.25);
    position: relative;
    overflow: hidden;
}

.alefox-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.alefox-btn:hover::before {
    left: 100%;
}

.alefox-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(22, 163, 74, 0.4);
    color: #ffffff;
}

.alefox-btn i {
    transition: transform 0.3s ease;
}

.alefox-btn:hover i {
    transform: translateX(8px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .video-content-side {
        padding-left: 0;
        margin-top: 60px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .video-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .overlay-title {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .alefox-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================= HEROIC LIGHT AWARDS (Interactive & Living) ================= */

.awards-section-heroic {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    overflow: hidden;
}

/* Hero-like Animated Background Backgrounds */
.heroic-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatShape 20s infinite alternate;
    z-index: 0;
}

.shape-gold {
    width: 500px;
    height: 500px;
    background: rgba(250, 204, 21, 0.15);
    /* Soft Gold */
    top: -100px;
    right: -100px;
}

.shape-green {
    width: 400px;
    height: 400px;
    background: rgba(34, 197, 94, 0.1);
    /* Soft Green */
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 50px) scale(1.1);
    }
}

/* Header */
.awards-header-heroic {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 90px;
    position: relative;
    z-index: 2;
}

.header-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #eab308;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.2);
    animation: iconPulse 3s infinite;
}

@keyframes iconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(234, 179, 8, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0);
    }
}

/* ================= HEROIC GRID ================= */
.heroic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* CARD DESIGN */
.award-hero-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 30px;
    padding: 20px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.award-hero-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(34, 197, 94, 0.15);
}

/* VISUAL AREA (Hero-like Image Wrapper) */
.award-visual {
    position: relative;
    height: 260px;
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: visible;
    /* Allow floating elements to pop out */
}

/* Image Masking & Interaction */
.award-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.award-hero-card:hover .award-visual img {
    transform: scale(1.05);
}

/* Hero-like Pulse Rings Behind Image */
.visual-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.2);
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
}

.award-hero-card:hover .visual-pulse {
    opacity: 1;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        width: 250px;
        height: 250px;
        opacity: 0.8;
    }

    100% {
        width: 350px;
        height: 350px;
        opacity: 0;
    }
}

/* Floating 3D Badge (Like Hero Slide 2 & 3) */
.floating-medal {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    /* Soft Pink/Gold base */
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #eab308;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.award-hero-card:hover .floating-medal {
    transform: scale(1.2) rotate(10deg);
    bottom: -25px;
    right: -25px;
    box-shadow: 0 15px 35px rgba(234, 179, 8, 0.3);
}

/* CONTENT */
.award-hero-content {
    padding: 0 15px 10px;
    text-align: left;
}

.hero-year-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #ecfccb;
    /* Light Lime */
    color: #4d7c0f;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.award-hero-title {
    font-family: var(--alefox-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a2e05;
    margin-bottom: 10px;
}

.award-hero-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FEATURE CARD (Wide) */
.hero-wide-card {
    grid-column: span 3;
    display: flex;
    align-items: center;
    padding: 30px;
    background: white;
    overflow: hidden;
}

.hero-wide-card .award-visual {
    width: 50%;
    height: 320px;
    margin-bottom: 0;
    margin-right: 40px;
}

.hero-wide-card .award-hero-content {
    width: 50%;
}

.hero-wide-card .award-hero-title {
    font-size: 2.2rem;
    background: linear-gradient(90deg, #1a2e05, #16a34a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 991px) {
    .heroic-grid {
        grid-template-columns: 1fr;
    }

    .hero-wide-card {
        grid-column: span 1;
        flex-direction: column;
    }

    .hero-wide-card .award-visual {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .hero-wide-card .award-hero-content {
        width: 100%;
    }
}

/* ================= WHY CHOOSE US (BENTO GRID PREMIUM) ================= */

/* Section Base */
.why-bento-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

/* Grid Layout container */
.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    /* 2:1.5:1.5 Layout */
    grid-template-rows: auto auto;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Common Card Styles --- */
.bento-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- 1. VISION CARD (Tall Left) --- */
.vision-card {
    grid-row: span 2;
    background: #0f172a;
    /* Dark fallback */
    color: white;
    justify-content: flex-end;
    /* Text at bottom */
    min-height: 500px;
    position: relative;
}

.vision-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.vision-card:hover .vision-bg-img {
    transform: scale(1.05);
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

.vision-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.vision-icon {
    font-size: 2.5rem;
    color: #4ade80;
    /* Light green */
    margin-bottom: 20px;
    opacity: 0.8;
}

.vision-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.vision-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    /* Light gray text */
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-vision {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-vision:hover {
    background: white;
    color: #111;
}


/* --- 2 & 3. STAT CARDS (Top Right Grid) --- */
.stat-card {
    position: relative;
    padding: 30px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

/* Background Decoration Icon */
.stat-bg-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    opacity: 0.05;
    transform: rotate(15deg);
    transition: all 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.stat-card:hover .stat-bg-deco {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.1;
}

/* Card Content Inner */
.stat-card-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Top Row: Icon + Pill */
.stat-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.stat-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon-circle {
    transform: scale(1.1) rotate(-5deg);
}

.stat-pill {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

/* Middle Row: Numbers */
.stat-mid {
    margin-bottom: 15px;
}

.stat-big-num {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -1px;
    color: #0f172a;
}

.text-accent {
    color: inherit;
    opacity: 0.7;
}

.stat-label-lg {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    opacity: 0.8;
}

/* Bottom: Description */
.stat-desc-sm {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
    font-weight: 500;
}

/* Color Variants */
/* Blue */
.stat-c-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
}

.stat-c-blue .stat-icon-circle {
    color: #2563eb;
}

.stat-c-blue .stat-pill {
    color: #1e40af;
    background: rgba(255, 255, 255, 0.5);
}

.stat-c-blue .stat-bg-deco {
    color: #2563eb;
}

.stat-c-blue:hover {
    border-color: #bfdbfe;
}

/* Green */
.stat-c-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
}

.stat-c-green .stat-icon-circle {
    color: #16a34a;
}

.stat-c-green .stat-pill {
    color: #14532d;
    background: rgba(255, 255, 255, 0.5);
}

.stat-c-green .stat-bg-deco {
    color: #22c55e;
}

.stat-c-green:hover {
    border-color: #bbf7d0;
}


/* --- 4. QUALITY CARD (Bottom Right Wide) --- */
.quality-card {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
    align-items: center;
    padding: 0;
    /* Padding handled inside */
}

.quality-content {
    padding: 40px;
    flex: 1;
}

.quality-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quality-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 5px;
}

.quality-header p {
    font-size: 0.95rem;
    color: #15803d;
    margin: 0;
}

.cert-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cert-badge {
    padding: 6px 14px;
    background: white;
    border: 1px solid #dcfce7;
    border-radius: 8px;
    color: #166534;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.quality-visual {
    width: 250px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.quality-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    /* Diagonal cut */
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .vision-card {
        grid-row: auto;
        min-height: 400px;
    }

    .quality-card {
        grid-column: auto;
        flex-direction: column;
    }

    .quality-visual {
        width: 100%;
        height: 200px;
    }

    .quality-visual img {
        clip-path: none;
    }
}

/* =========================================================
   HOME RESPONSIVE STYLES - FRESH GREEN AGRO
========================================================= */

/* --- 1. GLOBAL VISIBILITY FIX (Desktop & Mobile) --- */
/* This ensures reveal content is never 'stuck' at opacity 0 */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
}

/* Force Hero Content Visibility (Desktop Fix) */
.hero-tagline,
.hero-title,
.hero-desc,
.hero-actions {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
}

/* --- 2. MOBILE NAVBAR FIX (Moved to site.css) --- */
/* Styles removed to prevent duplication and ensure global consistency */

@media (max-width: 1024px) {

    /* Hero Responsive Adjustments (Kept here as they are specific to Home) */
    .hero-title {
        font-size: 32px !important;
    }

    .hero-content-wrap {
        padding-top: 120px !important;
        text-align: center !important;
    }
}

/* --- 3. LAYOUT SAFETY --- */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* =========================================================
   CINEMATIC AGRO-CULTURE HUB (Premium v6.0)
   Features: Immersive Video, Floating Quote, Parallax Story
========================================================= */

.story-cinematic-section {
    padding: 180px 0;
    min-height: 85vh;
    background: #022c22;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* The Background Video Hub */
.story-video-bg-hub {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.story-video-bg-hub video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: saturate(1.2) contrast(1.1);
}

.story-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(2, 44, 34, 0.98) 0%,
            rgba(2, 44, 34, 0.7) 45%,
            transparent 100%);
    z-index: 2;
}

/* Cinematic Content Box */
.story-hub-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
}

.story-pre-title {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #22c55e;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.story-pre-title::after {
    content: '';
    width: 80px;
    height: 2px;
    background: #22c55e;
}

.story-main-quote {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.story-main-quote span {
    background: linear-gradient(to right, #ffffff, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-narrative-box {
    padding-left: 40px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.story-narrative-box p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 45px;
    font-weight: 400;
    font-style: italic;
}

/* Interactive Floating Badges */
.story-culture-badges {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.culture-badge-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
}

.culture-badge-item i {
    font-size: 2rem;
    color: #22c55e;
}

.culture-badge-item span {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Floating 3D Detail (The "Generated" Feel) */
.story-floating-card {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    z-index: 15;
    animation: storyFloat 10s ease-in-out infinite;
}

@keyframes storyFloat {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-55%) translateX(15px);
    }
}

.story-floating-card .card-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
}

.story-floating-card h4 {
    color: #fff;
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.story-floating-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1200px) {
    .story-floating-card {
        display: none;
    }
}

@media (max-width: 1024px) {
    .story-cinematic-section {
        padding: 120px 0;
    }

    .story-narrative-box {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        padding-top: 30px;
    }
}


.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* ================= CUSTOM CERTIFICATE SLIDER BUTTONS ================= */
.cert-alefox-wrap .alefox-btn.outline {
    color: #000 !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
    transition: none !important;
}

.cert-alefox-wrap .alefox-btn.outline i {
    color: #000 !important;
}

.cert-alefox-wrap .alefox-btn.outline:hover {
    transform: none !important;
    background: transparent !important;
    border-color: rgba(0, 0, 0, 0.4) !important;
    box-shadow: none !important;
    color: #000 !important;
}

.cert-alefox-wrap .alefox-btn.outline:hover i {
    transform: none !important;
}

.cert-alefox-wrap .alefox-btn.outline::before,
.cert-alefox-wrap .alefox-btn.outline::after {
    display: none !important;
}

/* --- View All Certificates Button --- */
.cert-modern-section .alefox-btn:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(68, 160, 91, 0.3) !important;
    background: var(--gradient-primary) !important;
}

.cert-modern-section .alefox-btn:hover i {
    transform: none !important;
}

.cert-modern-section .alefox-btn:hover::before {
    left: -100% !important;
}



/* =========================================================
   BRAND TYPEWRITER ANIMATION (HERO)
========================================================= */
.brand-animated-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    /* Increased bottom margin */
    font-family: var(--alefox-font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--emerald);
    background: rgba(255, 255, 255, 0.95);
    /* Slightly more opaque */
    padding: 10px 28px;
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    /* Stronger shadow */
    border-left: 5px solid var(--gold-accent);
    opacity: 0;
    animation: slideRight 0.8s ease-out forwards 0.5s;
    /* Entrance animation */

    /* Ensure it sits above other elements but below navbar if needed */
    position: relative;
    z-index: 10;
}

/* Fix for Navbar Overlap */
.hero-content-inner {
    padding-top: 100px !important;
    /* Force content down to clear fixed navbar */
}

.brand-prefix {
    color: var(--text-muted);
    font-weight: 500;
}

.brand-typewriter {
    background: linear-gradient(135deg, #16a34a, #022c22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2rem;
    background-color: var(--gold-accent);
    color: transparent;
    animation: blinkCursor 0.8s infinite;
    margin-left: 4px;
    vertical-align: middle;
}

@keyframes blinkCursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Short description for compact slides */
.hero-description_short {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
    /* Reduced margin */
    max-width: 90%;
    opacity: 0.9;
}

/* Ensure stats look clean on Slide 2 */
.slide-bg-2 .stat-number i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block;
}

.slide-bg-2 .stat-mini {
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.slide-bg-2 .stat-mini:last-child {
    border-right: none;
}

/* ================= GLOBAL RECOGNITION HALL OF FAME (BENTO GRID - NEW REDESIGN) ================= */
.global-hall-of-fame-v2 {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
    font-family: inherit;
}

.awards-bento-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.award-bento-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.award-bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.award-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.award-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.award-bento-card:hover .award-img-wrapper img {
    transform: scale(1.08);
}

.award-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    opacity: 0.3;
    transition: 0.4s;
}

.award-bento-card:hover .award-gradient-overlay {
    opacity: 0;
}

.award-bento-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.award-pill {
    align-self: flex-start;
    background: #f0fdf4;
    color: #166534;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(22, 163, 74, 0.1);
}

.gold-pill {
    background: #fef3c7;
    color: #b45309;
    border-color: rgba(217, 119, 6, 0.1);
}

.award-bento-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.award-bento-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Feature Card (Spans Multiple Columns) */
.bento-feature {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-feature .award-img-wrapper {
    aspect-ratio: 16/9;
    height: 60%;
}

.bento-feature .award-bento-title {
    font-size: 2rem;
    background: linear-gradient(135deg, #16a34a, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-feature .award-bento-desc {
    font-size: 1.15rem;
}

@media (max-width: 991px) {
    .awards-bento-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-feature {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .awards-bento-grid-modern {
        grid-template-columns: 1fr;
    }

    .bento-feature {
        grid-column: span 1;
    }

    .bento-feature .award-img-wrapper {
        height: auto;
    }
}


/* ================= GLOBAL RECOGNITION HALL OF FAME (SLIDER - V3) ================= */
.global-hall-of-fame-v3 {
    padding: 80px 0;
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

.awards-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.awards-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    gap: 20px;
    /* Space between images */
    padding: 20px 0;
    /* Add top/bottom padding for hover shadow clipping */
    flex: 1;
}

.awards-slider-track::-webkit-scrollbar {
    display: none;
    /* WebKit */
}

.award-slide-card {
    flex: 0 0 calc(25% - 15px);
    /* 4 cards visible with gap calculated */
    min-width: 280px;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    /* Rounded corners for spacing */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Slight shadow to lift */
}

.award-slide-card .award-img-wrapper {
    height: 350px;
    position: relative;
}

.award-slide-card .award-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.award-slide-card:hover .award-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.award-slide-card .award-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.award-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.award-slide-info .award-pill {
    align-self: flex-start;
    background: var(--lux-gold, #c5a059);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.award-slide-info .gold-pill {
    background: #eab308;
    color: #1a2e05;
}

.award-slide-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.award-slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--lux-emerald, #064e3b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: absolute;
    z-index: 10;
}

.award-slider-btn.prev {
    left: 20px;
}

.award-slider-btn.next {
    right: 20px;
}

.award-slider-btn:hover {
    background: var(--lux-emerald, #064e3b);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .award-slide-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 900px) {
    .award-slide-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .award-slide-card {
        flex: 0 0 calc(100% - 10px);
        margin: 0;
        min-width: auto;
    }

    .award-slider-btn {
        width: 45px;
        height: 45px;
        opacity: 0.8;
    }
}
