 /* ----- Nidu Farms Global Styles (embedded to ensure consistency) ----- */
        :root {
            --theme-cream: #FAF8F5;
            --theme-dark-green: #2E5B42;
            --theme-yellow: #F3C623;
            --text-main: #333333;
            --text-muted: #666666;
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-pill: 50px;
            --shadow-soft: 0 10px 30px rgba(46, 91, 66, 0.08);
        }

        body {
            font-family: var(--font-body);
            color: var(--text-main);
            background-color: var(--theme-cream);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--theme-dark-green);
        }

        /* Utilities */
        .bg-cream { background-color: var(--theme-cream) !important; }
        .bg-dark-green { background-color: var(--theme-dark-green) !important; }
        .bg-yellow { background-color: var(--theme-yellow) !important; }
        .text-dark-green { color: var(--theme-dark-green) !important; }
        .text-yellow { color: var(--theme-yellow) !important; }
        .text-cream { color: var(--theme-cream) !important; }

        .btn-theme {
            background-color: var(--theme-dark-green);
            color: #ffffff !important;
            border: none;
            border-radius: var(--radius-pill);
            padding: 12px 28px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        .btn-theme:hover {
            background-color: #214330;
            transform: translateY(-2px);
        }
        .btn-theme .icon-circle {
            background-color: var(--theme-yellow);
            color: var(--theme-dark-green);
            width: 28px; height: 28px;
            border-radius: 50%;
            display: flex; justify-content: center; align-items: center;
            margin-left: 10px;
        }
        .btn-yellow {
            background-color: var(--theme-yellow);
            color: var(--theme-dark-green) !important;
            font-weight: bold;
            border-radius: var(--radius-pill);
            padding: 12px 28px;
        }
        .section-subtitle {
            color: var(--theme-yellow);
            font-weight: 700;
            display: flex; align-items: center;
            margin-bottom: 15px; font-family: var(--font-heading);
        }
        .section-subtitle::before {
            content: '';
            width: 8px; height: 24px;
            background-color: var(--theme-yellow);
            display: inline-block;
            margin-right: 10px; border-radius: 4px;
        }
        .section-title {
            font-size: 3rem; margin-bottom: 30px;
        }
        .rounded-img {
            border-radius: var(--radius-lg);
        }
        .shadow-soft {
            box-shadow: var(--shadow-soft);
        }

        /* ----- New Video Section Creative Styles ----- */
        .video-showcase {
            position: relative;
            background: linear-gradient(135deg, rgba(46,91,66,0.03) 0%, rgba(243,198,35,0.05) 100%);
        }
        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }
        .video-card {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            background: #fff;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: 0 20px 35px -12px rgba(46,91,66,0.2);
            cursor: pointer;
            backdrop-filter: blur(0px);
        }
        .video-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 45px -12px rgba(46,91,66,0.35);
        }
        .video-wrapper {
            position: relative;
            width: 100%;
            background: #1a2a22;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease, filter 0.3s ease;
            display: block;
        }
        .video-card:hover .video-wrapper video {
            transform: scale(1.02);
            filter: brightness(1.02);
        }
        /* play button overlay / creative emblem */
        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, rgba(46,91,66,0.3) 0%, rgba(0,0,0,0.25) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.9;
            transition: all 0.3s ease;
            pointer-events: none;
            z-index: 2;
        }
        .video-card:hover .play-overlay {
            background: radial-gradient(circle, rgba(243,198,35,0.2) 0%, rgba(46,91,66,0.4) 100%);
        }
        .play-icon-circle {
            width: 75px;
            height: 75px;
            background-color: var(--theme-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--theme-dark-green);
            font-size: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .video-card:hover .play-icon-circle {
            transform: scale(1.08);
            background-color: #ffd966;
            box-shadow: 0 12px 28px rgba(0,0,0,0.3);
        }
        .video-caption {
            padding: 22px 22px 26px;
            background: white;
            border-top: none;
            position: relative;
            z-index: 2;
        }
        .video-caption h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--theme-dark-green);
            font-family: var(--font-heading);
        }
        .video-caption p {
            color: var(--text-muted);
            margin-bottom: 12px;
            font-size: 1rem;
        }
        .video-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--theme-cream);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--theme-dark-green);
        }
        .video-badge i {
            color: var(--theme-yellow);
        }
        /* decorative leaf swirl */
        .video-section-decor {
            position: absolute;
            top: 10%;
            right: 2%;
            width: 140px;
            opacity: 0.25;
            pointer-events: none;
            z-index: 1;
        }
        .video-section-decor i {
            font-size: 8rem;
            color: var(--theme-dark-green);
        }
        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .section-title {
                font-size: 2.4rem;
            }
            .video-caption h3 {
                font-size: 1.5rem;
            }
            .play-icon-circle {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
        }
/* Hero Section */
.hero-slider {
    position: relative;
    padding: 0; margin: 0;
}
.hero-item {
    height: 80vh;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to bottom, rgba(46,91,66,0.1), rgba(46,91,66,0.3));
}
.hero-content {
    position: relative; z-index: 2; text-align: center; color: #fff;
    max-width: 800px;
}
.hero-title {
    font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; text-transform: capitalize;
}
.hero-badge-floating {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px; height: 140px;
    background-color: var(--theme-dark-green);
    border: 6px solid var(--theme-cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--theme-yellow);
    z-index: 10;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Sections */
section { padding: 90px 0; }
.section-subtitle {
    color: var(--theme-yellow);
    font-weight: 700;
    display: flex; align-items: center;
    margin-bottom: 15px; font-family: var(--font-heading);
}
.section-subtitle::before {
    content: '';
    width: 8px; height: 24px;
    background-color: var(--theme-yellow);
    display: inline-block;
    margin-right: 10px; border-radius: 4px;
}
.section-title {
    font-size: 3rem; margin-bottom: 30px;
}

/* Card Styles */
.rounded-img { border-radius: var(--radius-lg); }
.rounded-img-md { border-radius: var(--radius-md); }

.portfolio-card { transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.portfolio-card:hover { transform: translateY(-10px); shadow: 0 20px 40px rgba(0,0,0,0.1) !important; }
.transition-transform { transition: transform 0.6s ease; }
.portfolio-card:hover .transition-transform { transform: scale(1.1); }

/* Accordion Custom */
.service-accordion .accordion-item {
    background: transparent; border: none; border-bottom: 1px solid rgba(46,91,66,0.1);
}
.service-accordion .accordion-button {
    background: transparent !important; color: var(--theme-dark-green);
    font-weight: bold; font-size: 1.2rem; padding: 25px 0; box-shadow: none !important;
}
.service-accordion .accordion-button::after {
    color: var(--theme-yellow); content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900; background: none;
}
.service-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

/* Gallery Masonry */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid img { width: 100%; height: 350px; object-fit: cover; border-radius: var(--radius-md); }
.gallery-grid img:nth-child(2) { transform: translateY(30px); }

/* Stats box */
.stats-box { background-color: var(--theme-dark-green); padding: 60px 40px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; color: #fff;}
.stat-item { margin-bottom: 30px; }
.stat-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 15px; font-size: 1.5rem; color: #fff;}

/* Team */
.team-card { position: relative; border: none; background: transparent; }
.team-card img { border-radius: var(--radius-lg); width: 100%; height: 400px; object-fit: cover; }
.team-info {
    background: #fff; position: absolute; bottom: -20px; left: 20px; right: 20px;
    padding: 15px; border-radius: var(--radius-md); text-align: center;
    box-shadow: var(--shadow-soft);
}

/* Testimonial */
.testimonial-image { border-radius: var(--radius-lg); width: 100%; height: 500px; object-fit: cover; }
.testimonial-box {
    background-color: var(--theme-dark-green); color: #fff; padding: 40px;
    border-radius: var(--radius-lg); position: absolute; right: -50px; top: 50%; transform: translateY(-50%);
    width: 500px; box-shadow: var(--shadow-soft); border-left: 6px solid var(--theme-yellow);
}
.stars { color: var(--theme-yellow); margin-bottom: 15px; }

@media (max-width: 992px) {
    .testimonial-box { position: relative; right: 0; width: 100%; transform: none; top: -30px; margin: 0 15px; width: auto; }
    .hero-title { font-size: 3rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img:nth-child(2) { transform: none; }
}
