:root {
    --primary: #1F3D1B;
    --secondary: #4E7C2A;
    --accent: #F2B705;
    --light: #FBF6EC;
    --dark: #0F1F0E;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--primary);
        overflow-x: hidden;

}

/* Navbar */
.navbar {
    background: transparent;
    transition: 0.3s;
}
.navbar.scrolled {
    background: rgba(15,31,14,0.95);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.logo {
    height: 64px;
    width: auto;
          object-fit: contain;

}

/* Hero */
.hero {
    height: 100vh;
    background: url('./images/hero.png') center/cover;
    position: relative;
    
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,31,14,0.65);
}
.spice-dust {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(242,183,5,0.35) 2px, transparent 2px);
    background-size: 120px 120px;
    animation: spice 40s linear infinite;
}
@keyframes spice {
    from { transform: translate(0,0); }
    to { transform: translate(-200px,-200px); }
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
}

/* Sections */
.section {
    padding: 80px 0;
}
.section-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.section-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: translateX(-50%);
    animation: goldLine 2s infinite;
}
@keyframes goldLine {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 0; }
}

/* Buttons */
.btn-primary {
    background: var(--accent);
    border: none;
    color: var(--dark);
}
.cta-gold {
    position: relative;
    overflow: hidden;
}
.cta-gold::after {
    content: "";
    position: absolute;
    inset: 0;
    left: -120%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: 0.6s;
}
.cta-gold:hover::after {
    left: 120%;
}

/* ================= PRODUCT CARD FIX ================= */
.product-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;

    /* FIX */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

/* Fixed image size */
.product-card img {
    width: 100%;
    height: 220px;              /* 🔒 Fixed height */
    object-fit: cover;          /* Crop nicely */
    border-radius: 12px;
}

/* Product title */
.product-card h5 {
    margin-top: 15px;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    min-height: 48px;           /* Keeps titles aligned */
}

/* Hover effect */
.product-card:hover {
    transform: translateY(-8px);
}

/* Cards */
.product-card, .cert-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.product-card:hover, .cert-card:hover {
    transform: translateY(-8px);
}

/* Journey */
.journey-step {
    background: var(--secondary);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
}
/* ================= OUR JOURNEY TIMELINE ================= */
.journey-section {
    background: var(--light);
}

.journey-timeline {
    position: relative;
    margin-top: 50px;
    padding-left: 30px;
}

/* Vertical line */
.journey-timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        to bottom,
        var(--accent),
        var(--secondary)
    );
    border-radius: 4px;
}

/* Journey item */
.journey-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 45px;
    position: relative;
}

/* Icon circle */
.journey-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--dark);
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(242,183,5,0.25);
}

/* Content box */
.journey-content {
    background: #ffffff;
    margin-left: 20px;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    max-width: 720px;
}

.journey-content h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.journey-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Hover micro-interaction */
.journey-content:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .journey-timeline {
        padding-left: 0;
    }

    .journey-timeline::before {
        left: 24px;
    }

    .journey-content {
        margin-left: 15px;
    }
}

/* ================= ACTIVE NAV LINK ================= */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
    color: var(--accent) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 20px;
    height: 3px;
    background: var(--accent);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #ccc;
    padding: 20px;
}
/* ================= FOOTER LINKS ================= */
.footer-links a {
    color: #ccc;
    margin: 0 6px;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent);
    text-decoration: underline;
}
/* ================= FOOTER LOGO ================= */
.footer-logo img {
    height: 48px;
    margin-bottom: 6px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .footer-logo img {
        height: 40px;
    }
}

/* ================= DEALER BADGE ================= */
.dealer-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.partner-badge {
    background: var(--accent);
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Optional hover emphasis */
.dealer-link:hover .partner-badge {
    background: #ffd45a;
}

/* ================= DEALER PAGE ================= */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(
        rgba(15,31,14,0.85),
        rgba(15,31,14,0.85)
    ),
    url('https://images.unsplash.com/photo-1604909053197-3c9c84c37d6a') center/cover;
    color: #fff;
}

.page-header h1 {
    font-weight: 700;
}

.dealer-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.dealer-form .form-control {
    border-radius: 10px;
    padding: 12px 14px;
}

.dealer-form .form-label {
    font-weight: 500;
    color: var(--primary);
}
/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
}

/* ================= HERO PROCESS ANIMATION ================= */

.process-heading {
    font-size: 42px;
    font-weight: 700;
    animation: fadeSlide 1.2s ease forwards;
}

.hero-subtext {
    opacity: 0.9;
    margin-bottom: 24px;
    animation: fadeSlide 1.6s ease forwards;
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: stepFade 0.6s ease forwards;
}

.process-step span {
    font-size: 28px;
    display: block;
}

.process-step small {
    font-size: 13px;
    opacity: 0.9;
}

/* Delays for sequence */
.process-step:nth-child(1) { animation-delay: 0.5s; }
.process-step:nth-child(3) { animation-delay: 1s; }
.process-step:nth-child(5) { animation-delay: 1.5s; }
.process-step:nth-child(7) { animation-delay: 2s; }

.arrow {
    font-size: 20px;
    opacity: 0;
    animation: arrowFade 0.5s ease forwards;
}

.arrow:nth-child(2) { animation-delay: 0.8s; }
.arrow:nth-child(4) { animation-delay: 1.3s; }
.arrow:nth-child(6) { animation-delay: 1.8s; }

/* Animations */
@keyframes stepFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arrowFade {
    to {
        opacity: 0.7;
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .process-heading {
        font-size: 28px;
    }

    .process-flow {
        gap: 10px;
    }

    .process-step span {
        font-size: 22px;
    }
}

/* ================= CUSTOMER REVIEWS ================= */

.reviews-section {
    background: #fff;
}

.review-card {
    background: #fdfbf7;
    padding: 26px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 18px;
    font-style: italic;
}

.review-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.review-role {
    color: #777;
    font-size: 13px;
}

