/* 
   NAVAMI NATURALS - PREMIUM AGRICULTURE WEBSITE STYLES
   Sophisticated full-width agricultural corporate palette & typography
*/

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

:root {
    --primary: #5DB812;
    /* Primary Green #5DB812 */
    --primary-light: #6ec823;
    --green: #5DB812;
    --dark-green: #212121;
    /* Dark `#212121` as required */
    --earth: #7a583a;
    --gold: #FCC600;
    /* Secondary Accent Yellow `#FCC600` */
    --cream: #F8FAF6;
    /* Clean off-white background */
    --off-white: #FFFFFF;
    /* White `#FFFFFF` */
    --dark: #212121;
    /* Core text dark color */
    --muted: #757575;
    /* Professional muted gray */
    --border: #E0E0E0;
    /* Subtle premium border color */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

    /* Bootstrap 5 Theme Variable Overrides - Neutralizes default Blue */
    --bs-primary: #5DB812;
    --bs-primary-rgb: 93, 184, 18;
    --bs-link-color: #5DB812;
    --bs-link-hover-color: #6ec823;
    --bs-link-color-rgb: 93, 184, 18;
    --bs-primary-border-subtle: #6ec823;
    --bs-primary-bg-subtle: #f5f9f3;
}

/* Force Green highlights instead of default blue globally */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    color: #ffffff !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-light) !important;
    box-shadow: 0 0 0 0.25rem rgba(93, 184, 18, 0.25) !important;
}

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

a:hover {
    color: var(--primary-light);
}

/* Base resets & styles */
body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--dark);
    line-height: 1.65;
    font-size: 16px;
    /* High-end corporate body size */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
    font-family: var(--font-heading);
    color: var(--dark-green);
    font-weight: 750;
    letter-spacing: -0.015em;
}

h2,
.section-title {
    font-size: 36px !important;
    /* Premium corporate scale: 32px - 42px */
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 0.85rem;
    position: relative;
    letter-spacing: -0.02em;
}

h3,
.subsection-title,
.card-content-title {
    font-size: 21px !important;
    /* Elegant compact heading scale: 18px - 22px */
    line-height: 1.35;
    font-weight: 700;
    color: var(--dark-green);
}

p,
li,
.timeline-text,
.card-content-desc,
.lead {
    font-size: 16px !important;
    /* Compact but highly readable body text: 15px - 17px */
    line-height: 1.65;
    color: var(--dark);
}

.text-muted,
.small {
    font-size: 13.5px !important;
    /* Precise small text: 12px - 14px */
}

/* Custom Wide Content Container */
.container-large {
    max-width: 1400px !important;
    width: 92% !important;
    margin: 0 auto !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Selection & Scrollbar */
::selection {
    background-color: var(--primary);
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & Display classes */
.hero-title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    /* Sleeker, more compact displays */
    line-height: 1.2;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
}

/* Unique bold treatment for About Navami Naturals */
.about-navami-heading {
    font-size: 30px !important;
    font-weight: 800;
    color: var(--dark-green);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.about-navami-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    margin-top: 0.5rem;
    border-radius: 2px;
}

/* Section alternate backgrounds & Reduced Spacing Core Overrides - Extremely Compact Precision Layout */
.py-5 {
    padding-top: 1.85rem !important;
    /* Extremely compact, sharp corporate padding ~30px */
    padding-bottom: 1.85rem !important;
}

.py-4 {
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
}

.mb-4 {
    margin-bottom: 0.65rem !important;
}

.mb-5 {
    margin-bottom: 1.1rem !important;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1rem !important;
    --bs-gutter-x: 1rem !important;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 0.5rem !important;
}

.bg-white-section {
    background-color: #ffffff;
}

.bg-cream-section {
    background-color: var(--cream);
}

.bg-light-green {
    background-color: #f5f9f3;
}

.bg-dark-green {
    background-color: var(--dark-green);
    color: var(--off-white);
}

.bg-dark-green h1,
.bg-dark-green h2,
.bg-dark-green h3,
.bg-dark-green h4,
.bg-dark-green .section-title {
    color: #ffffff;
}

/* --- BRAND NEW SHAPES & ANIMATIONS --- */
/* Image 6 Circle Frame layout */
.circular-image-frame {
    position: relative;
    border-radius: 50%;
    border: 5px solid var(--primary-light);
    box-shadow: 0 10px 30px rgba(85, 179, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.circular-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.circular-image-frame:hover img {
    transform: scale(1.08) rotate(2deg);
}

/* Floating organic shapes and accents */
.accent-leaf-shape {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    opacity: 0.15;
    border-radius: 100% 0 100% 0;
    z-index: 1;
    animation: floatingLeaf 6s ease-in-out infinite;
}

.accent-leaf-gold {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--gold);
    opacity: 0.2;
    border-radius: 0 100% 0 100%;
    z-index: 1;
    animation: floatingLeafInverse 8s ease-in-out infinite;
}

/* Scroll reveal items */
.fade-up-scroll {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatingLeaf {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(15deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes floatingLeafInverse {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(6px) rotate(-15deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Organic Curved SVG separators */
.organic-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.organic-divider svg {
    display: block;
    width: 100%;
    height: 45px;
    fill: currentColor;
}

/* Buttons with specific styling constraints - highly compact corporate layout (horizontal padding = 2x vertical padding) */
.btn-premium {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.55rem 1.1rem !important;
    /* Perfect 2x ratio: 9px vertical, 18px horizontal */
    border-radius: 4px;
    /* Sleek corporate corner */
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-premium-primary {
    background-color: var(--primary);
    color: #ffffff !important;
    border: 1px solid var(--primary);
}

.btn-premium-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(93, 184, 18, 0.1);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-premium-outline:hover {
    background-color: var(--primary);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(93, 184, 18, 0.08);
}

.btn-premium-white {
    background-color: #ffffff;
    color: var(--dark-green) !important;
    border: 1px solid #ffffff;
}

.btn-premium-white:hover {
    background-color: var(--cream);
    border-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.btn-premium-gold {
    background-color: var(--gold);
    color: var(--dark) !important;
    border: 1px solid var(--gold);
}

.btn-premium-gold:hover {
    background-color: #e5b300;
    border-color: #e5b300;
    transform: translateY(-2px);
}

/* --- DUAL-TIER HEADER SYSTEM --- */
.top-header-tier {
    background-color: #ffffff;
    border-bottom: 1px solid #edf2f7;
    z-index: 1010;
    position: relative;
}

.top-header-tier .brand-logo {
    font-family: var(--font-heading);
    font-weight: 850;
    font-size: 1.8rem;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-header-tier .brand-logo .logo-leaf {
    color: var(--primary);
}

/* Search Box design matching Greenjeeva search input */
.top-search-wrapper {
    width: 100%;
    max-width: 500px;
}

.top-search-wrapper .form-control {
    border: 2px solid var(--primary);
    border-radius: 25px 0 0 25px;
    height: 46px;
    font-size: 0.9rem;
    padding-left: 1.25rem;
    box-shadow: none;
}

.top-search-wrapper .btn-top-search {
    background-color: var(--primary);
    color: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 0 25px 25px 0;
    font-weight: 700;
    padding: 0 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.top-search-wrapper .btn-top-search:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

/* Header actions icons */
.top-header-actions .header-action-icon {
    color: var(--dark-green);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.top-header-actions .header-action-icon:hover {
    color: var(--primary);
}

.top-header-actions .action-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-selector {
    border: 1px solid #e2e8f0;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    background-color: #f8fafc;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Premium Navbar - Second tier sticky menu bar (clean white corporate layout) */
.premium-navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.4rem 0;
    /* Tightened vertical sizing */
    background-color: #5db812 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(27, 38, 18, 0.08);
    transition: var(--transition-smooth);
}

/* Ensure navbar items contrast beautifully with the bright green background */
.premium-navbar .navbar-nav .nav-link {
    color: #ffffff !important;
}

.premium-navbar .navbar-nav .nav-link::after {
    background-color: var(--gold) !important;
}

.premium-navbar .navbar-nav .nav-link:hover,
.premium-navbar .navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.premium-navbar .home-icon-link {
    color: #ffffff !important;
}

.premium-navbar .home-icon-link:hover {
    color: var(--gold) !important;
}

.premium-navbar .btn-support-pill {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.premium-navbar .btn-support-pill .phone-num {
    color: var(--gold) !important;
}

.premium-navbar .btn-support-pill:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.premium-navbar .brand-logo {
    color: #ffffff !important;
}

/* Category Dropdown Pill button */
.btn-categories {
    background-color: var(--dark-green);
    color: #ffffff !important;
    border: 1px solid var(--dark-green);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 4px;
    /* Small border-radius for corporate feel */
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.btn-categories:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff !important;
}

.home-icon-link {
    font-size: 1rem;
    padding: 0.45rem !important;
    color: var(--dark-green) !important;
}

.home-icon-link:hover {
    color: var(--primary) !important;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155 !important;
    /* Premium corporate slate */
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.75rem !important;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* WhatsApp and Support pill buttons matching Greenjeeva style */
.btn-whatsapp-pill {
    background-color: #25d366;
    color: #ffffff !important;
    border: 1px solid #25d366;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-smooth);
}

.btn-whatsapp-pill:hover {
    background-color: #1ebe57;
    color: #ffffff !important;
    border-color: #1ebe57;
    transform: translateY(-2px);
}

.btn-support-pill {
    background-color: transparent;
    color: var(--dark-green) !important;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    transition: var(--transition-smooth);
}

.btn-support-pill .phone-num {
    color: var(--primary);
    font-weight: 700;
}

.btn-support-pill:hover {
    background-color: #f8fafc;
    border-color: var(--primary);
}

/* HAMBURGER & DRAWERS */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    transition: var(--transition-smooth);
}

.toggler-icon-1 {
    top: 0;
}

.toggler-icon-2 {
    top: 11px;
}

.toggler-icon-3 {
    top: 22px;
}

.navbar-toggler:not(.collapsed) .toggler-icon-1 {
    transform: rotate(45deg);
    top: 11px;
}

.navbar-toggler:not(.collapsed) .toggler-icon-2 {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .toggler-icon-3 {
    transform: rotate(-45deg);
    top: 11px;
}

/* Mobile Offcanvas Styles */
.mobile-nav-drawer {
    background-color: var(--dark-green);
    color: #ffffff;
    max-width: 300px;
}

.mobile-nav-drawer .btn-close {
    filter: invert(1);
}

.mobile-nav-drawer .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 0;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-drawer .nav-link.active {
    color: var(--gold) !important;
}

/* --- INTERACTIVE FLOATING BADGES & CHAT WIDGETS --- */
/* Floating Ecological Badge */
.floating-eco-badge {
    position: fixed;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    z-index: 990;
    background: #ffffff;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 25px rgba(27, 38, 18, 0.15);
    padding: 10px 8px;
    width: 76px;
    text-align: center;
    border: 1px solid rgba(85, 179, 0, 0.2);
    border-right: none;
    transition: var(--transition-smooth);
}

.floating-eco-badge:hover {
    width: 86px;
}

.floating-eco-badge .badge-circle {
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    margin: 0 auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid var(--cream);
    box-shadow: 0 4px 10px rgba(85, 179, 0, 0.3);
}

.floating-eco-badge .badge-number {
    font-size: 0.9rem;
    font-weight: 850;
    color: var(--dark-green);
    line-height: 1;
    margin-bottom: 2px;
}

.floating-eco-badge .badge-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating Chat Button */
.floating-chat-trigger {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(85, 179, 0, 0.4);
    cursor: pointer;
    z-index: 1050;
    border: 3px solid #ffffff;
    transition: var(--transition-smooth);
}

.floating-chat-trigger:hover {
    transform: scale(1.08) rotate(15deg);
    background-color: var(--dark-green);
    box-shadow: 0 8px 25px rgba(58, 128, 0, 0.5);
}

/* Interactive Support Chat Panel */
.support-chat-panel {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 360px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(27, 38, 18, 0.15);
    z-index: 1050;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.support-chat-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chat-panel-header {
    background-color: var(--dark-green);
    color: #ffffff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-panel-header .agent-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-panel-header .agent-avatar {
    width: 38px;
    height: 38px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid #ffffff;
    position: relative;
}

.chat-panel-header .agent-online-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    background-color: #25d366;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.chat-panel-header .agent-details h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}

.chat-panel-header .agent-details span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.chat-panel-header .btn-close-chat {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.chat-panel-header .btn-close-chat:hover {
    opacity: 1;
}

.chat-panel-messages {
    flex: 1;
    padding: 1.25rem;
    background-color: #f8fafc;
    max-height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-panel-messages .chat-bubble {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.chat-panel-messages .chat-bubble.agent-bubble {
    background-color: #ffffff;
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    border: 1px solid #edf2f7;
}

.chat-panel-messages .chat-bubble.user-bubble {
    background-color: var(--primary);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 2px 5px rgba(85, 179, 0, 0.1);
}

.chat-panel-input {
    padding: 1rem 1.25rem;
    background: #ffffff;
    border-top: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-panel-input input {
    flex: 1;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    box-shadow: none;
    outline: none;
    transition: var(--transition-smooth);
}

.chat-panel-input input:focus {
    border-color: var(--primary);
}

.chat-panel-input .btn-send-msg {
    background: var(--primary);
    color: #ffffff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.chat-panel-input .btn-send-msg:hover {
    background: var(--dark-green);
}

/* Hero Section style - highly compact, sleek, and elegant (400px - 480px) */
.premium-hero {
    position: relative;
    min-height: 420px !important;
    /* Perfect corporate scale */
    max-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    text-align: center;
    /* Center text alignment */
    background-color: var(--dark-green);
    overflow: hidden;
    padding: 110px 0 70px !important;
    /* Tight spacing layout */
}

/* Specific enhancements for Hero Carousel Slider */
.premium-hero.carousel {
    display: block !important;
    height: 540px !important;
    min-height: 540px !important;
    max-height: 600px !important;
    padding: 0 !important;
}

.premium-hero.carousel .carousel-item {
    height: 540px !important;
    min-height: 540px !important;
    background-color: var(--dark-green);
    position: relative;
}

@media (max-width: 767px) {
    .premium-hero {
        min-height: 320px !important;
        padding: 90px 0 50px !important;
    }

    .premium-hero.carousel {
        height: 460px !important;
        min-height: 460px !important;
    }

    .premium-hero.carousel .carousel-item {
        height: 460px !important;
        min-height: 460px !important;
    }
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    /* More subtle so text pops beautifully */
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(13, 40, 24, 0.30) 0%,
            rgba(8, 20, 12, 0.38) 100%);
    z-index: 2;
}

.hero-grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.01;
    pointer-events: none;
    z-index: 3;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-content-box {
    position: relative;
    z-index: 10;
    max-width: 780px;
    margin: 0 auto;
    /* Center horizontal block layout */
}

.hero-subtitle-caps {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
    position: relative;
}

.hero-italic-tag {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 1.05rem !important;
    /* Premium smaller copy sizing */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-top: 0.85rem;
    margin-bottom: 1.5rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating particle leaf styles - reduced speed & count for professionalism */
.leaf-particle {
    position: absolute;
    width: 16px;
    height: 16px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 4;
    animation: floatParticle 18s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(110vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-10vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold) 50%, transparent 50%);
    background-size: 100% 200%;
    animation: scrollLineAnim 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollLineAnim {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}

/* Journey Interactive Vertical Timeline - Highly Compact & Professional */
.timeline-container {
    position: relative;
    max-width: 720px;
    margin: 1.5rem auto !important;
    /* Compressed margin to eliminate excessive whitespace */
    padding-left: 45px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 2px;
    background: linear-gradient(to bottom, var(--border) 0%, var(--primary) 50%, var(--border) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem !important;
    /* Compact spacing */
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    left: -45px;
    top: 6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--cream);
    border: 2.5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.timeline-marker span {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
}

.timeline-item:hover .timeline-marker {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.timeline-item:hover .timeline-marker span {
    color: #ffffff;
}

.timeline-content {
    background-color: #ffffff;
    padding: 1.15rem 1.35rem !important;
    /* Reduced padding for compact layout */
    border-radius: 6px;
    border: 1px solid var(--border);
    box-shadow: 0 3px 12px rgba(13, 40, 24, 0.01);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateX(6px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(13, 40, 24, 0.03);
}

.timeline-year {
    font-size: 1.25rem !important;
    /* Elegant scaled header */
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.timeline-text {
    font-family: var(--font-body);
    /* Switching from Playfair display to clean body */
    font-size: 14.5px !important;
    line-height: 1.55;
    color: var(--dark);
    font-style: normal !important;
    /* Crisp, no template italic fonts */
}

/* Our Story split layout text highlighting */
.story-highlight {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(120deg, rgba(200, 155, 60, 0.15) 0%, rgba(200, 155, 60, 0.15) 100%);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-style: italic;
}

.story-image-container {
    position: relative;
    border-radius: 8px !important;
    /* Extremely clean compact corner radius */
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(93, 184, 18, 0.3);
    /* Ultra-fine calibration border */
    padding: 3px;
    /* Compact outer frame spacing */
    background: #ffffff;
}

.story-image-container::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(93, 184, 18, 0.15);
    /* Sub-millimeter internal alignment box */
    pointer-events: none;
    z-index: 5;
    border-radius: 6px;
}

.story-image-container::after {
    content: "[ 3D-ALIGN_ACTIVE: REF#817 ]";
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid rgba(93, 184, 18, 0.2);
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 5;
}

.story-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    /* Fits elegantly inside the padded frame */
    transition: var(--transition-smooth);
}

.story-image-container:hover img {
    transform: scale(1.03);
}

.story-decorative-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Connected Visual Flow of Market Access & Tech Journey */
.visual-flow-wrapper {
    background-color: var(--cream);
    border-radius: 16px;
    padding: 3rem 2rem;
    border: 1px solid var(--border);
}

.flow-step-node {
    position: relative;
    text-align: center;
    padding: 1.5rem;
    z-index: 2;
}

.flow-step-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.flow-step-node:hover .flow-step-icon-circle {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(23, 79, 43, 0.15);
}

.flow-step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-green);
    font-size: 1.1rem;
}

.flow-connector-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    height: 80px;
}

/* Mission & Core Values Interactive Cards - highly corporate, crisp & compact */
.interactive-card {
    background-color: #ffffff;
    border-radius: 8px;
    /* Balanced rounded styling */
    border: 1px solid var(--border);
    padding: 1.35rem !important;
    /* Sleek, compact corporate padding */
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.interactive-card:hover {
    transform: translateY(-4px);
    /* Subtle elevate transition */
    border-color: var(--primary);
    box-shadow: 0 10px 24px rgba(13, 40, 24, 0.04);
}

.card-accent-number {
    font-size: 1.8rem;
    /* Scaled down significantly from 4rem to prevent visual slop */
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    color: rgba(93, 184, 18, 0.12);
    /* Subtle green tint integration */
    position: absolute;
    top: 1.15rem;
    right: 1.25rem;
    z-index: 1;
    user-select: none;
    transition: var(--transition-smooth);
}

.interactive-card:hover .card-accent-number {
    color: var(--gold);
    transform: scale(1.05);
}

.card-icon-wrap {
    font-size: 1.8rem;
    /* Moderated icon size */
    color: var(--primary);
    margin-bottom: 1.15rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.interactive-card:hover .card-icon-wrap {
    color: var(--primary);
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.card-content-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.card-content-desc {
    color: var(--muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Why Choose Navami Naturals Central Illustration Flow */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

.central-illustration-card {
    background-color: var(--cream);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

.illustration-step {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.8rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.illustration-step:hover {
    transform: scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.08);
}

.illustration-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--cream);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.illustration-step:hover .illustration-num {
    background-color: var(--gold);
    color: #ffffff;
}

.illustration-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Our Philosophy Seed-To-Tree metaphor */
.philosophy-banner-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark-green);
    overflow: hidden;
}

.philosophy-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(91, 155, 67, 0.15) 0%, transparent 60%);
}

.philosophy-metaphor-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.metaphor-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.65rem 1.25rem;
    /* Compact padding */
    border-radius: 6px;
    /* Professional micro-rounded corners */
    font-size: 0.95rem !important;
    /* Elegant display font size */
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.metaphor-item.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.metaphor-item:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-green);
    transform: translateY(-3px) !important;
}

/* Service Directory & Service Process */
.service-icon-bg-num {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 3rem;
    color: rgba(91, 155, 67, 0.08);
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    transition: var(--transition-smooth);
}

.interactive-card:hover .service-icon-bg-num {
    color: rgba(200, 155, 60, 0.15);
    transform: translateY(-3px);
}

.service-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-explore-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.service-explore-link i {
    transition: var(--transition-smooth);
}

.interactive-card:hover .service-explore-link {
    color: var(--gold);
}

.interactive-card:hover .service-explore-link i {
    transform: translateX(4px);
}

/* Products Catalogue Explorer CSS */
.product-category-sidebar {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 1.5rem;
    position: sticky;
    top: 110px;
}

.category-nav-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.9rem 1.25rem;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.category-nav-btn:hover,
.category-nav-btn.active {
    background-color: var(--cream);
    color: var(--primary);
    border-color: var(--border);
}

.category-nav-btn.active {
    border-color: var(--gold);
    font-weight: 700;
}

.category-indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.category-nav-btn.active .category-indicator-dot {
    opacity: 1;
}

/* Horizontal mobile slider for categories */
.category-slider-mobile {
    display: none;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.category-slider-mobile::-webkit-scrollbar {
    height: 4px;
}

.category-slider-mobile .category-nav-btn {
    display: inline-flex;
    width: auto;
    margin-bottom: 0;
    padding: 0.6rem 1.2rem;
}

/* Botanical style and Ingredient/Product cards */
.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 24px rgba(23, 79, 43, 0.05);
}

.product-image-box {
    position: relative;
    height: 180px;
    /* Reduced from 200px for a more compact and elegant profile */
    overflow: hidden;
    background-color: #ffffff;
    padding: 3px;
    border-bottom: 1px solid rgba(93, 184, 18, 0.15);
}

.product-image-box::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(93, 184, 18, 0.12);
    /* Ultra-fine calibration framing box */
    pointer-events: none;
    z-index: 5;
    border-radius: 4px;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    /* Matches the inner frame */
    transition: var(--transition-smooth);
}

.product-card:hover .product-image-box img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    z-index: 2;
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-name-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-desc-para {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

/* Glassmorphism Product Card specifically for premium ingredients */
.glass-product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.glass-product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.glass-product-card .product-name-title {
    color: #ffffff;
}

.glass-product-card .product-desc-para {
    color: rgba(255, 255, 255, 0.7);
}

/* Search bar styling */
.premium-search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.premium-search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    background-color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.premium-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(23, 79, 43, 0.05);
}

.search-icon-fixed {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 1.1rem;
}

/* Filter Badges slider and container */
.filter-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.filter-pill-btn {
    background-color: #ffffff;
    border: 1px solid var(--border);
    color: var(--dark-green);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Botanical styles for Herbs with light background grid and floral ornaments */
.botanical-card {
    background-color: #fbfaf6;
    border-left: 3px solid var(--gold);
}

.botanical-card:hover {
    border-left-color: var(--primary);
}

/* Contact form premium UI styles */
.contact-form-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.contact-form-control {
    background-color: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.contact-form-control:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 4px 15px rgba(23, 79, 43, 0.05);
}

.contact-form-label {
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

/* Premium Multi-Column Footer */
.premium-footer {
    background-color: var(--dark-green);
    color: #ffffff;
    padding: 3.5rem 0 1.5rem;
    /* Balanced, compact corporate footprint */
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 90%, rgba(91, 155, 67, 0.08) 0%, transparent 50%);
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    color: var(--gold);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom-bar {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

/* Back to Top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition-smooth);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--gold);
    transform: translateY(-5px);
}

/* Grid configurations */
.grid-gap-custom {
    gap: 2rem;
}

/* Page load entrance transitions */
.fade-up-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* responsive definitions */
@media (max-width: 991px) {
    .category-slider-mobile {
        display: flex;
    }

    .premium-navbar {
        background-color: #5db812 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0.8rem 0;
    }

    .brand-logo {
        color: #ffffff !important;
    }

    .navbar-nav .nav-link {
        color: #ffffff !important;
    }

    .toggler-icon {
        background-color: #ffffff !important;
    }
}

/* --- PREMIUM B2B SPECIFICATIONS MODAL & RFQ STYLES --- */
#productSpecsModal .modal-content {
    background-color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(27, 38, 18, 0.25) !important;
}

#productSpecsModal .modal-header {
    background-color: var(--dark-green) !important;
    border-bottom: 2px solid var(--primary-light) !important;
}

.product-modal-image-wrapper {
    position: relative;
    border: 1px solid rgba(85, 179, 0, 0.15);
    background-color: #fafdf8;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
}

.product-modal-image-wrapper img {
    object-position: center;
    transition: var(--transition-smooth);
}

#productSpecsModal .table td {
    font-size: 0.82rem;
    padding: 0.6rem 0;
}

#productSpecsModal .form-control,
#productSpecsModal .form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.85rem;
    padding: 0.55rem 0.75rem;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

#productSpecsModal .form-control:focus,
#productSpecsModal .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(85, 179, 0, 0.12);
    outline: none;
}

#productSpecsModal .btn-primary {
    background-color: var(--primary);
    border: none;
    transition: var(--transition-smooth);
    border-radius: 8px;
}

#productSpecsModal .btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(85, 179, 0, 0.2);
}

.avatar-holder {
    background: linear-gradient(135deg, #25d366 0%, var(--primary) 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* Enhancing standard product card hover depth to feel extremely premium */
.product-card {
    border: 1px solid #edf2f7;
    border-radius: 12px;
    background-color: #ffffff;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(27, 38, 18, 0.02);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 16px 36px rgba(27, 38, 18, 0.08);
}

.glass-product-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(85, 179, 0, 0.18);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.glass-product-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary);
    box-shadow: 0 16px 36px rgba(85, 179, 0, 0.1);
}

.product-image-box {
    position: relative;
    overflow: hidden;
    background-color: #fafdf8;
}

.product-image-box img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-box img {
    transform: scale(1.06);
}

.product-content {
    padding: 1.25rem;
}

.product-name-title {
    font-family: var(--font-heading);
    color: var(--dark-green);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 0.5rem 0;
}

/* Beautiful category sidebars for B2B portal */
.desktop-category-sidebar {
    background-color: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.desktop-category-nav .category-nav-btn {
    text-align: left;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.desktop-category-nav .category-nav-btn:hover {
    background-color: #f6fbf4;
    color: var(--dark-green);
    padding-left: 1.25rem;
}

.desktop-category-nav .category-nav-btn.active {
    background-color: var(--primary);
    color: #ffffff !important;
}

.desktop-category-nav .category-nav-btn.active i {
    color: var(--gold) !important;
}

    /* =========================================================
   NAVAMI NATURALS - INNER HERO
========================================================= */

        .navami-inner-hero {

            --hero-green: #5db812;
            --hero-gold: #ffbb00;
            --hero-dark: #0d301a;

            position: relative;



            display: flex;
            align-items: center;

            overflow: hidden;

            background: #102419;

        }


        /* =========================================================
   BACKGROUND MEDIA
========================================================= */

        .inner-hero-media {

            position: absolute;

            inset: 0;

            overflow: hidden;

        }


        .inner-hero-image {

            width: 100%;
            height: 100%;

            object-fit: cover;

            object-position: center 48%;

            transform: scale(1.06);

            animation: heroImageZoom 12s ease-out forwards;

        }


        /* =========================================================
   OVERLAY
========================================================= */

        .inner-hero-overlay {

            position: absolute;

            inset: 0;

            background:
                linear-gradient(90deg,
                    rgba(8, 32, 17, .91) 0%,
                    rgba(10, 39, 21, .78) 42%,
                    rgba(12, 40, 22, .55) 75%,
                    rgba(8, 25, 14, .72) 100%);

        }


        /* Bottom cinematic gradient */

        .inner-hero-overlay::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(180deg,
                    rgba(5, 20, 11, .22) 0%,
                    transparent 45%,
                    rgba(4, 19, 10, .62) 100%);

        }


        /* =========================================================
   LIGHT GLOW
========================================================= */

        .inner-hero-glow {

            position: absolute;

            width: 550px;
            height: 550px;

            left: 8%;
            top: 50%;

            transform: translateY(-50%);

            border-radius: 50%;

            background:
                radial-gradient(circle,
                    rgba(93, 184, 18, .12),
                    transparent 67%);

            filter: blur(15px);

            pointer-events: none;

            animation: heroGlow 7s ease-in-out infinite;

        }


        /* =========================================================
   CONTENT
========================================================= */

        .inner-hero-content {

            position: relative;

            z-index: 10;

            max-width: 850px;

            padding: 80px 0 80px;

        }


        /* =========================================================
   LABEL
========================================================= */

        .inner-hero-label {

            display: inline-flex;

            align-items: center;

            gap: 10px;

            margin-bottom: 18px;

            color: var(--hero-gold);

            font-size: 11px;

            font-weight: 900;

            letter-spacing: .22em;

            text-transform: uppercase;

            animation: heroFadeUp .8s ease both;

        }


        .label-line {

            width: 38px;
            height: 2px;

            background: var(--hero-gold);

        }


        .label-leaf {

            display: flex;

            align-items: center;
            justify-content: center;

            width: 25px;
            height: 25px;

            border: 1px solid rgba(255, 187, 0, .35);

            border-radius: 50%;

            font-size: 9px;

            background: rgba(255, 187, 0, .08);

        }


        /* =========================================================
   TITLE
========================================================= */

        .inner-hero-title {

            max-width: 800px;

            margin: 0;

            color: #fff;

            font-size: clamp(44px, 6vw, 52px);

            font-weight: 900;

            line-height: .98;

            letter-spacing: -.055em;

            text-shadow:
                0 8px 30px rgba(0, 0, 0, .18);

            animation: heroFadeUp .9s .08s ease both;

        }


        .inner-hero-title span {

            display: block;

            color: var(--hero-gold);

        }


        /* =========================================================
   DIVIDER
========================================================= */

        .inner-hero-divider {

            display: flex;

            align-items: center;

            gap: 9px;

            width: 165px;

            margin: 10px 0 10px;

            animation: heroFadeUp 1s .16s ease both;

        }


        .inner-hero-divider span {

            height: 1px;

            flex: 1;

            background:
                linear-gradient(90deg,
                    transparent,
                    rgba(255, 187, 0, .75));

        }


        .inner-hero-divider span:last-child {

            background:
                linear-gradient(90deg,
                    rgba(255, 187, 0, .75),
                    transparent);

        }


        .inner-hero-divider i {

            color: var(--hero-gold);

            font-size: 12px;

            animation: leafRotate 4s ease-in-out infinite;

        }


        /* =========================================================
   DESCRIPTION
========================================================= */

        .inner-hero-description {

            max-width: 600px;

            margin: 0;

            color: rgba(255, 255, 255, .82);

            font-size: 16px;

            font-weight: 400;

            line-height: 1.7;

            letter-spacing: .01em;

            animation: heroFadeUp 1s .24s ease both;

        }


        /* =========================================================
   STORY BADGE
========================================================= */

        .inner-hero-badge {

            display: inline-flex;

            align-items: center;

            gap: 9px;

            margin-top: 10px;

            padding: 9px 14px;

            border: 1px solid rgba(255, 255, 255, .18);

            border-radius: 50px;

            color: rgba(255, 255, 255, .78);

            background: rgba(255, 255, 255, .07);

            backdrop-filter: blur(10px);

            font-size: 8px;

            font-weight: 900;

            letter-spacing: .16em;

            animation: heroFadeUp 1s .32s ease both;

        }


        .inner-hero-badge i {

            display: flex;

            align-items: center;
            justify-content: center;

            width: 22px;
            height: 22px;

            border-radius: 50%;

            color: #142016;

            background: var(--hero-gold);

            font-size: 8px;

            animation: badgeBounce 2s ease-in-out infinite;

        }


        /* =========================================================
   ORGANIC SHAPES
========================================================= */

        .hero-organic-shape {

            position: absolute;

            z-index: 3;

            pointer-events: none;

            border: 1px solid rgba(255, 255, 255, .12);

        }


        .hero-shape-one {

            width: 220px;
            height: 220px;

            right: -100px;
            top: 65px;

            border-radius: 42% 58% 62% 38% / 38% 44% 56% 62%;

            transform: rotate(25deg);

            animation:
                shapeFloat 9s ease-in-out infinite,
                shapeRotate 20s linear infinite;

        }


        .hero-shape-two {

            width: 110px;
            height: 110px;

            right: 14%;
            bottom: 30px;

            border-radius: 50%;

            border-color: rgba(255, 187, 0, .18);

            animation:
                shapeFloatReverse 7s ease-in-out infinite;

        }


        /* =========================================================
   FLOATING LEAVES
========================================================= */

        .hero-leaf-decoration {

            position: absolute;

            z-index: 4;

            display: flex;

            align-items: center;
            justify-content: center;

            color: rgba(255, 255, 255, .18);

            pointer-events: none;

        }


        .hero-leaf-one {

            right: 7%;

            top: 28%;

            font-size: 55px;

            transform: rotate(-20deg);

            animation: leafFloat 6s ease-in-out infinite;

        }


        .hero-leaf-two {

            right: 25%;

            bottom: 15%;

            color: rgba(255, 187, 0, .17);

            font-size: 30px;

            animation: leafFloatReverse 5s ease-in-out infinite;

        }


        /* =========================================================
   BOTTOM CURVE
========================================================= */

        .hero-bottom-curve {

            position: absolute;

            z-index: 8;

            left: -2%;

            bottom: -1px;

            width: 104%;

            height: 28px;

            background: #fff;

            clip-path:
                ellipse(58% 100% at 50% 100%);

        }


        /* =========================================================
   ANIMATIONS
========================================================= */

        @keyframes heroImageZoom {

            from {
                transform: scale(1.06);
            }

            to {
                transform: scale(1);
            }

        }


        @keyframes heroFadeUp {

            from {
                opacity: 0;
                transform: translateY(22px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }


        @keyframes heroGlow {

            0%,
            100% {
                transform: translateY(-50%) scale(1);
                opacity: .7;
            }

            50% {
                transform: translateY(-50%) scale(1.12);
                opacity: 1;
            }

        }


        @keyframes leafRotate {

            0%,
            100% {
                transform: rotate(0deg);
            }

            50% {
                transform: rotate(15deg);
            }

        }


        @keyframes badgeBounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(3px);
            }

        }


        @keyframes shapeFloat {

            0%,
            100% {
                transform: rotate(25deg) translate(0, 0);
            }

            50% {
                transform: rotate(32deg) translate(-15px, 18px);
            }

        }


        @keyframes shapeRotate {

            from {
                border-radius: 42% 58% 62% 38% / 38% 44% 56% 62%;
            }

            50% {
                border-radius: 60% 40% 35% 65% / 55% 35% 65% 45%;
            }

            to {
                border-radius: 42% 58% 62% 38% / 38% 44% 56% 62%;
            }

        }


        @keyframes shapeFloatReverse {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(12px, -12px);
            }

        }


        @keyframes leafFloat {

            0%,
            100% {
                transform: rotate(-20deg) translateY(0);
            }

            50% {
                transform: rotate(-8deg) translateY(-13px);
            }

        }


        @keyframes leafFloatReverse {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-10px) rotate(12deg);
            }

        }


        /* =========================================================
   RESPONSIVE
========================================================= */

        @media (max-width: 991px) {

            .navami-inner-hero {

                min-height: 430px;

            }

            .inner-hero-content {

                padding: 90px 0 90px;

            }

            .inner-hero-title {

                font-size: clamp(42px, 7vw, 60px);

            }

            .hero-leaf-one {

                right: 5%;

                font-size: 40px;

            }

        }


        @media (max-width: 767px) {

            .navami-inner-hero {

                min-height: 400px;

            }

            .inner-hero-content {

                padding: 105px 15px 60px;

                text-align: center;

            }

            .inner-hero-label {

                justify-content: center;

                font-size: 9px;

                letter-spacing: .17em;

            }

            .label-line {

                width: 25px;

            }

            .inner-hero-title {

                font-size: 42px;

                line-height: 1.02;

            }

            .inner-hero-divider {

                margin: 18px auto 15px;

            }

            .inner-hero-description {

                max-width: 500px;

                margin: 0 auto;

                font-size: 14px;

            }

            .inner-hero-badge {

                margin-top: 22px;

            }

            .hero-leaf-one {

                right: 4%;

                top: 17%;

                font-size: 28px;

                opacity: .6;

            }

            .hero-leaf-two {

                left: 5%;

                bottom: 18%;

                font-size: 22px;

            }

            .hero-shape-one {

                width: 140px;
                height: 140px;

                right: -75px;

            }

        }


        @media (max-width: 480px) {

            .navami-inner-hero {

                min-height: 390px;

            }

            .inner-hero-content {

                padding: 100px 12px 55px;

            }

            .inner-hero-title {

                font-size: 35px;

            }

            .inner-hero-description {

                font-size: 13px;

                line-height: 1.6;

            }

            .inner-hero-label {

                margin-bottom: 13px;

            }

            .hero-leaf-one,
            .hero-leaf-two,
            .hero-shape-two {

                opacity: .45;

            }

        }