@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #C86A14;        /* Rich Pulse Amber / Golden Toor & Chana Dal Warmth */
    --primary-dark: #3A190C;   /* Deep Roasted Earth / Dark Legume Hull */
    --primary-light: #DF7A20;  /* Bright Amber Grain */
    --secondary: #D97706;      /* Golden Split Dal Ochre */
    --secondary-dark: #B45309; /* Warm Terracotta / Masoor Pulse */
    --secondary-light: #F59E0B;/* Golden Harvest Amber */
    --accent-red: #B94A24;     /* Masoor & Kidney Bean Rust Red */
    --accent-green: #2D6A4F;   /* Green Mung Bean & Organic Quality */
    --text-main: #2D241E;      /* Rich Dark Brown Text */
    --text-muted: #6C5E55;     /* Muted Warm Soil Text */
    --bg-light: #FDF9F3;       /* Warm Pulse Cream Background */
    --bg-white: #FFFFFF;
    --border-color: #F0E6D8;   /* Soft Grain Border */
    --shadow-sm: 0 4px 12px rgba(200, 106, 20, 0.08);
    --shadow-md: 0 8px 25px rgba(200, 106, 20, 0.12);
    --shadow-lg: 0 15px 40px rgba(58, 25, 12, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Pulses Color Palette */
    --pulse-chana: #F5C542;  /* Warm golden-yellow */
    --pulse-toor: #F0D060;   /* Soft sunny yellow */
    --pulse-moong: #8CB84B;  /* Fresh, vibrant green */
    --pulse-urad: #F5F0E0;   /* Creamy off-white */
    --pulse-masoor: #E3733A; /* Warm terracotta orange */
    --pulse-kabuli: #D4A574; /* Creamy beige */
    --pulse-moth: #6B8E23;   /* Earthy olive green */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .font-heading {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--secondary);
}

/* ==========================================
   TOP BAR & HEADER
========================================== */
.top-bar {
    position: relative;
    z-index: 1050;
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.83rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(199, 154, 59, 0.25);
}
.top-bar a {
    color: rgba(255, 255, 255, 0.88);
    transition: var(--transition);
}
.top-bar a:hover {
    color: var(--secondary-light);
}
.top-bar-divider {
    margin: 0 12px;
    opacity: 0.3;
}
.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    vertical-align: middle;
}

/* Top Bar Language Selector Dropdown */
.top-bar .dropdown-menu {
    min-width: 230px;
    margin-top: 10px !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background-color: #ffffff !important;
    padding: 8px 0 !important;
    z-index: 1060 !important;
}

.top-bar .dropdown-item {
    font-size: 0.88rem;
    font-weight: 500;
    color: #2b2b2b !important;
    padding: 9px 16px !important;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.top-bar .dropdown-item:hover,
.top-bar .dropdown-item:focus {
    background-color: rgba(200, 106, 20, 0.08) !important;
    color: var(--primary-dark) !important;
}

.top-bar .dropdown-item.active {
    background-color: var(--primary-dark) !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* Hide Google Translate original top bar banner */
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
    display: none !important;
}
body {
    top: 0px !important;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}
.header-logo {
    height: 95px;
    width: auto;
    max-height: 95px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .header-logo {
        height: 70px;
        max-height: 70px;
    }
}
.navbar-brand:hover .header-logo {
    transform: scale(1.06);
}
.footer-logo {
    height: 95px;
    width: auto;
    max-height: 95px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s ease;
}
.footer-logo:hover {
    transform: scale(1.05);
}
.navbar-brand .brand-text-green {
    color: var(--primary);
}
.navbar-brand .brand-text-gold {
    color: var(--secondary);
    margin-left: 4px;
}

.navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--text-main);
    padding: 10px 14px !important;
    position: relative;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown styling */
.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    background: var(--bg-white);
}
.dropdown-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition);
}
.dropdown-item:hover {
    background-color: rgba(200, 106, 20, 0.08);
    color: var(--primary);
    transform: translateX(4px);
}

/* ==========================================
   BUTTONS & BADGES
========================================== */
.btn-gold {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
    transition: var(--transition);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
}

.btn-green {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: 0 4px 15px rgba(200, 106, 20, 0.3);
    transition: var(--transition);
}
.btn-green:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 106, 20, 0.45);
}

.btn-outline-green {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 9px 24px;
    border-radius: var(--radius-sm);
    background: transparent;
    transition: var(--transition);
}
.btn-outline-green:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.badge-gold {
    background-color: rgba(217, 119, 6, 0.15);
    color: var(--secondary-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid rgba(217, 119, 6, 0.3);
    display: inline-block;
}

.badge-green {
    background-color: rgba(200, 106, 20, 0.12);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid rgba(200, 106, 20, 0.25);
    display: inline-block;
}

/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0.1) 100%),
                url('../img/hero_bg.jpg') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-white) 0%, transparent 100%);
    pointer-events: none;
}
.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--secondary-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin-bottom: 35px;
}

.stat-card-floating {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}
.stat-card-floating:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-5px);
    border-color: var(--secondary);
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-light);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   CARDS & GRID LAYOUTS
========================================== */
.card-luxury {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 154, 59, 0.4);
}
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 66%; /* 3:2 Aspect Ratio */
}
.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-luxury:hover .card-img-wrapper img {
    transform: scale(1.08);
}
.card-badge-top {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

/* ==========================================
   CERTIFICATE CARDS & MODAL PREVIEWS
========================================== */
.cert-card-wrapper {
    height: 220px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.cert-card-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.card-luxury:hover .cert-card-wrapper img {
    transform: scale(1.06);
}

.cert-modal-body {
    background-color: #1e242b;
    max-height: 82vh;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem;
}

.cert-modal-body img {
    width: 100%;
    height: 75vh;
    object-fit: contain;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.cert-modal-body img:hover {
    cursor: zoom-in;
}

/* ==========================================
   TIMELINE & FLOW DIAGRAM
========================================== */
.timeline-interactive {
    position: relative;
    padding: 40px 0;
}
.timeline-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
}
.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border: 4px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(199, 154, 59, 0.3);
    transform: translateX(-50%);
    z-index: 5;
}
.timeline-content {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    width: 44%;
}
.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}
.timeline-item:nth-child(even) .timeline-content {
    left: 56%;
}

@media (max-width: 768px) {
    .timeline-interactive::before {
        left: 20px;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-content {
        width: calc(100% - 55px);
        left: 55px !important;
    }
}

/* ==========================================
   FLOATING WIDGETS & POPUPS
========================================== */
.float-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 1050;
    background-color: #25D366;
    color: #FFFFFF;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
}
.float-whatsapp:hover {
    transform: scale(1.1) rotate(6deg);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
    background: var(--primary-dark);
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: var(--transition);
}
.back-to-top:hover {
    background: var(--secondary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Product Compare Drawer */
.compare-drawer {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.25);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 800px;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.compare-drawer.show {
    bottom: 0;
}

/* ==========================================
   MEGA FOOTER
========================================== */
.mega-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.82);
    padding: 70px 0 30px;
    border-top: 4px solid var(--secondary);
}
.mega-footer h5 {
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
.mega-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--secondary);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--secondary-light);
    padding-left: 6px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 25px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}
.loader-wrapper.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Pulse Theme Utility Classes */
.text-pulse-chana { color: var(--pulse-chana) !important; }
.text-pulse-toor { color: var(--pulse-toor) !important; }
.text-pulse-moong { color: var(--pulse-moong) !important; }
.text-pulse-urad { color: var(--pulse-urad) !important; }
.text-pulse-masoor { color: var(--pulse-masoor) !important; }
.text-pulse-kabuli { color: var(--pulse-kabuli) !important; }
.text-pulse-moth { color: var(--pulse-moth) !important; }

.bg-pulse-chana { background-color: var(--pulse-chana) !important; color: #1a1a1a; }
.bg-pulse-toor { background-color: var(--pulse-toor) !important; color: #1a1a1a; }
.bg-pulse-moong { background-color: var(--pulse-moong) !important; color: #fff; }
.bg-pulse-urad { background-color: var(--pulse-urad) !important; color: #1a1a1a; }
.bg-pulse-masoor { background-color: var(--pulse-masoor) !important; color: #fff; }
.bg-pulse-kabuli { background-color: var(--pulse-kabuli) !important; color: #1a1a1a; }
.bg-pulse-moth { background-color: var(--pulse-moth) !important; color: #fff; }

.footer-pulse-border {
    border-top: 4px solid;
    border-image: linear-gradient(to right, var(--pulse-chana), var(--pulse-toor), var(--pulse-moong), var(--pulse-masoor), var(--pulse-kabuli)) 1;
}

/* Product Card Pulse Accents using nth-child */
.card-luxury {
    transition: all 0.3s ease;
}
.col-md-6:nth-child(6n+1) .card-luxury { border-left: 5px solid var(--pulse-chana); }
.col-md-6:nth-child(6n+1) .card-luxury:hover { box-shadow: 0 10px 25px rgba(245, 197, 66, 0.2); }

.col-md-6:nth-child(6n+2) .card-luxury { border-left: 5px solid var(--pulse-toor); }
.col-md-6:nth-child(6n+2) .card-luxury:hover { box-shadow: 0 10px 25px rgba(240, 208, 96, 0.2); }

.col-md-6:nth-child(6n+3) .card-luxury { border-left: 5px solid var(--pulse-moong); }
.col-md-6:nth-child(6n+3) .card-luxury:hover { box-shadow: 0 10px 25px rgba(140, 184, 75, 0.2); }

.col-md-6:nth-child(6n+4) .card-luxury { border-left: 5px solid var(--pulse-urad); }
.col-md-6:nth-child(6n+4) .card-luxury:hover { box-shadow: 0 10px 25px rgba(245, 240, 224, 0.4); }

.col-md-6:nth-child(6n+5) .card-luxury { border-left: 5px solid var(--pulse-masoor); }
.col-md-6:nth-child(6n+5) .card-luxury:hover { box-shadow: 0 10px 25px rgba(227, 115, 58, 0.2); }

.col-md-6:nth-child(6n+0) .card-luxury { border-left: 5px solid var(--pulse-moth); }
.col-md-6:nth-child(6n+0) .card-luxury:hover { box-shadow: 0 10px 25px rgba(107, 142, 35, 0.2); }
