/* ============================================================
   Seth Faqir Chand Karwa & Co. - Main Stylesheet
   Brand Color: #042425
   ============================================================ */

:root {
    --primary: #042425;
    --primary-dark: #021819;
    --primary-light: #174d50;
    --accent: #c8a951;
    --accent-light: #e8c97a;
    --white: #ffffff;
    --off-white: #f8f9f4;
    --light-gray: #f0f2ec;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --border: #e0e4dc;
    --shadow: 0 8px 24px rgba(4, 36, 37, 0.08);
    --shadow-lg: 0 18px 50px rgba(4, 36, 37, 0.13);
    --radius: 10px;
    --radius-lg: 18px;
    --transition: all 0.45s ease;
}

/* ---- Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    /* overflow-x must NOT be set here - it breaks position:sticky on the navbar */
}
/* Page fade-in transition */
@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f9fcfb 0%, #ffffff 100%);
    line-height: 1.75;
    /* overflow-x must NOT be set here - it breaks position:sticky on the navbar */
    animation: pageFadeIn 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
/* Clip horizontal overflow at a lower level so sticky still works */
body > *:not(nav):not(.whatsapp-float):not(.contact-float):not(.back-to-top) {
    max-width: 100vw;
    overflow-x: clip;
}
body.mobile-nav-open {
    overflow: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; }

/* ---- Full-width layout override ---- */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

@media (min-width: 1440px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
}

/* ---- Top Bar ---- */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-left a { color: rgba(255,255,255,0.85); }
.topbar-left a:hover { color: var(--accent); }
.topbar-left i { margin-right: 5px; color: var(--accent); }
.topbar-social { display: flex; gap: 10px; justify-content: flex-end; }
.topbar-social a {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.85); font-size: 12px;
}
.topbar-social a:hover { background: var(--accent); color: var(--white); }

/* ---- Navbar ---- */
#mainNav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.97);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(4, 36, 37, 0.08);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1100;
}
#mainNav.scrolled { padding: 8px 0; box-shadow: 0 10px 36px rgba(4, 36, 37, 0.12); }
.brand-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 20px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 17px; color: var(--primary); letter-spacing: 1px; }
.logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 0.5px; }

.navbar-nav .nav-link {
    font-size: 14px; font-weight: 500; color: var(--text-dark);
    padding: 8px 14px !important;
    border-radius: var(--radius);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary); background: linear-gradient(90deg, rgba(4,36,37,0.06), rgba(4,36,37,0.1)); }
.navbar-nav .dropdown-menu {
    display: none; /* legacy - replaced by mega menu */
}
/* ---- Mega Menu ---- */
.mega-parent { position: static !important; }

.mega-menu {
    position: fixed;
    left: 0; right: 0;
    top: 100%;
    background: var(--white);
    border-top: 3px solid var(--accent);
    box-shadow: 0 24px 60px rgba(4, 36, 37, 0.13);
    z-index: 1200;
    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    pointer-events: none;
}
.mega-parent.mega-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    padding: 28px 0 32px;
}
.mega-menu-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

/* Cards row */
.mega-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.mega-cards-mills {
    grid-template-columns: repeat(4, 1fr);
}

/* Individual card */
.mega-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(224, 228, 220, 0.8);
    background: var(--off-white);
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}
.mega-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,36,37,0.03), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.mega-card:hover {
    background: var(--white);
    border-color: rgba(200, 169, 81, 0.5);
    box-shadow: 0 8px 28px rgba(4, 36, 37, 0.1);
    transform: translateY(-3px);
    color: var(--text-dark);
}
.mega-card:hover::before { opacity: 1; }

.mega-card-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.mega-card:hover .mega-card-icon { transform: scale(1.08); }

.mega-card-body { flex: 1; min-width: 0; }
.mega-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
    line-height: 1.3;
}
.mega-card-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    white-space: normal;
}

.mega-card-arrow {
    color: var(--text-muted);
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.25s ease;
    opacity: 0;
}
.mega-card:hover .mega-card-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: var(--accent);
}

/* Mill partner card variant */
.mega-card-mill { gap: 12px; padding: 14px 16px; }
.mega-card-mill-logo {
    width: 52px; height: 40px; min-width: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 4px;
    flex-shrink: 0;
}
.mega-card-mill-logo img {
    max-width: 100%; max-height: 32px;
    object-fit: contain; display: block;
}

/* Chevron rotation */
.mega-chevron {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.28s ease;
    display: inline-block;
}
.mega-parent.mega-open > a .mega-chevron {
    transform: rotate(180deg);
}

/* Highlight active nav link while mega open */
.mega-parent.mega-open > .nav-link {
    color: var(--primary);
    background: linear-gradient(90deg, rgba(4,36,37,0.06), rgba(4,36,37,0.1));
}

/* Mobile: revert to accordion-style list */
@media (max-width: 991px) {
    .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border-top: none !important;
        border-left: 2px solid rgba(200,169,81,0.3);
        margin-left: 15px;
        padding: 0;
        pointer-events: auto !important;
        display: none;
        transition: none !important;
    }
    .mega-parent.mega-open > .mega-menu { display: block; }
    .mega-menu-inner { padding: 10px 0 14px; }
    .mega-menu-label { display: none; }
    .mega-cards,
    .mega-cards-mills { grid-template-columns: 1fr; gap: 6px; }
    .mega-card {
        padding: 12px 14px;
        border-radius: 10px;
        transform: none !important;
        box-shadow: none !important;
    }
    .mega-card-icon { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
    .mega-card-arrow { opacity: 1; }
    .mega-card-mill-logo { width: 40px; height: 32px; min-width: 40px; }
}

.btn-primary, .nav-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important; border-color: var(--primary) !important;
    color: var(--white) !important; padding: 11px 26px !important;
    border-radius: 999px !important; font-weight: 700 !important;
    font-size: 14px !important; letter-spacing: 0.2px;
    box-shadow: 0 12px 24px rgba(4, 36, 37, 0.18);
}
.btn-primary:hover, .nav-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important; border-color: var(--primary-dark) !important;
    transform: translateY(-2px); box-shadow: 0 16px 28px rgba(4, 36, 37, 0.24);
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative; overflow: hidden;
    min-height: calc(100vh - 138px);
    display: flex; align-items: center;
    background:
        linear-gradient(135deg, rgba(2, 24, 25, 0.514) 0%, rgba(4, 36, 37, 0.582) 50%, rgba(23, 77, 80, 0.418) 100%),
        url('../images/herobg.jpeg') center/cover no-repeat;
}
.hero-section .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block; background: rgba(200,169,81,0.16);
    border: 1px solid rgba(200,169,81,0.35); color: var(--accent);
    padding: 7px 18px; border-radius: 999px; font-size: 12px;
    font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white); margin-bottom: 20px; line-height: 1.2;
    max-width: 860px; margin-left: auto; margin-right: auto;
}
.hero-section h1 span { color: var(--accent); }
.hero-section p.lead {
    color: rgba(255,255,255,0.85); font-size: 1.1rem;
    margin-bottom: 35px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.hero-stats {
    display: flex; gap: 30px; flex-wrap: wrap;
    justify-content: center; margin-top: 40px; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { min-width: 140px; }
.hero-stat .number {
    font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
    color: var(--accent); display: inline-flex; align-items: center; gap: 2px;
}
.hero-stat .number .suffix { font-size: 1.1rem; line-height: 1; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.7); display: block; margin-top: 4px; }
.btn-outline-light-custom {
    border: 2px solid rgba(255,255,255,0.6); color: var(--white);
    padding: 12px 30px; border-radius: 25px; font-weight: 600;
    font-size: 15px; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-light-custom:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-accent {
    background: var(--accent); color: var(--primary-dark) !important;
    padding: 12px 30px; border-radius: 25px; font-weight: 700;
    font-size: 15px; border: none; display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,169,81,0.4); }
.hero-stats {
    display: flex; gap: 30px; flex-wrap: wrap;
    margin-top: 45px; padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent); display: block; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-image-wrap { position: relative; }
.hero-img-main {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-img-main img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-img-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--white); border-radius: 14px;
    padding: 18px 22px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
}
.hero-img-badge .badge-icon {
    width: 48px; height: 48px; background: var(--primary);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 22px;
}
.hero-img-badge .badge-text .num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); display: block; line-height: 1; }
.hero-img-badge .badge-text small { font-size: 12px; color: var(--text-muted); }

/* ---- Section Styles ---- */
.section-pad { padding: 76px 0; }
.section-pad-sm { padding: 52px 0; }
.bg-light-custom { background: linear-gradient(180deg, #f7f8f3 0%, #f4f6ef 100%); }
.bg-primary-custom { background: var(--primary); }
.section-label {
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent);
    display: block; margin-bottom: 10px;
}
.section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); color: var(--primary); margin-bottom: 16px; }
.section-title span { color: var(--accent); }
.section-divider {
    width: 52px; height: 3px; background: var(--accent);
    border-radius: 2px; margin: 0 0 18px;
}
.section-divider.center { margin: 0 auto 18px; }
.section-desc { color: var(--text-muted); }

/* ---- Marquee / Trust Bar ---- */
.trust-bar { background: var(--primary); padding: 14px 0; overflow: hidden; }
.marquee-wrap { display: flex; animation: marquee 50s linear infinite; white-space: nowrap; }
.marquee-wrap:hover { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 30px; color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }
.marquee-item i { color: var(--accent); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- Cards ---- */
.card-custom {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid rgba(224,228,220,0.9); box-shadow: var(--shadow);
    overflow: hidden; transition: var(--transition);
    height: 100%; position: relative;
}
.card-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 45%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}
.card-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(4, 36, 37, 0.08);
    border-color: rgba(224, 228, 220, 0.95);
}
.card-custom:hover::before { transform: translateX(120%); }
.card-img-top-custom { height: 220px; width: 100%; object-fit: cover; display: block; }
.card-body-custom { padding: 20px; position: relative; z-index: 2; }
.card-icon {
    width: 54px; height: 54px; background: var(--off-white);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--primary); margin-bottom: 14px;
    transition: var(--transition);
}
.card-custom:hover .card-icon { background: var(--primary); color: var(--white); }
.card-title-custom { font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.card-text-custom { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.card-link {
    color: var(--primary); font-weight: 600; font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
}
.card-link i { transition: var(--transition); }
.card-link:hover i { transform: translateX(4px); }

/* ---- Why Choose Us ---- */
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
    width: 54px; height: 54px; min-width: 54px;
    background: var(--off-white); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--primary);
}
.feature-title { font-size: 1.05rem; color: var(--primary); margin-bottom: 5px; }
.feature-text { color: var(--text-muted); font-size: 14px; }

/* Feature items as cards (Why Choose Us) */
.feature-item-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid rgba(224, 228, 220, 0.7);
    border-left: 3px solid transparent;
    border-radius: var(--radius-lg);
    padding: 16px 15px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(4, 36, 37, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-item-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,36,37,0.025) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.32s ease;
    pointer-events: none;
    border-radius: inherit;
}
.feature-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(4, 36, 37, 0.1);
    border-left-color: var(--accent);
    background: #fdfefe;
}
.feature-item-card:hover::after {
    opacity: 1;
}
.feature-item-card .feature-icon {
    width: 50px; height: 50px; min-width: 50px;
    background: linear-gradient(135deg, rgba(4,36,37,0.07) 0%, rgba(4,36,37,0.12) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 21px; color: var(--primary);
    transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
    flex-shrink: 0;
}
.feature-item-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    transform: scale(1.1);
}
.feature-item-card .feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.feature-item-card .feature-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

/* ---- Industries We Serve ---- */
.industries-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8f3 100%);
}

/* Dark variant used on homepage for visual separation */
.industries-section-dark {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}
.industries-section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(200,169,81,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.industries-section-dark .container { position: relative; z-index: 1; }
.industries-section-dark .section-label { color: var(--accent); }
.industries-section-dark .section-title { color: var(--white); }
.industries-section-dark .section-title span { color: var(--accent); }
.industries-section-dark .section-divider { background: var(--accent); }
.industries-section-dark .section-desc { color: rgba(255,255,255,0.65); }

/* Industry card - light version (on light backgrounds) */
.industry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    border: 1px solid rgba(224, 228, 220, 0.8);
    box-shadow: 0 3px 12px rgba(4, 36, 37, 0.05);
    height: 100%;
    transition: var(--transition);
    cursor: default;
}
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.industry-icon {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, rgba(4, 36, 37, 0.06) 0%, rgba(4, 36, 37, 0.1) 100%);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--primary);
    margin: 0 auto 12px;
    transition: var(--transition);
}
.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    transform: scale(1.1);
}
.industry-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.industry-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Industry card - dark version (on dark backgrounds) */
.industries-section-dark .industry-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.industries-section-dark .industry-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(200,169,81,0.45);
    box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.industries-section-dark .industry-icon {
    background: rgba(200,169,81,0.12);
    color: var(--accent);
}
.industries-section-dark .industry-card:hover .industry-icon {
    background: var(--accent);
    color: var(--primary-dark);
    transform: scale(1.1);
}
.industries-section-dark .industry-name {
    color: var(--white);
}
.industries-section-dark .industry-desc {
    color: rgba(255,255,255,0.55);
}

/* ---- Business Card Link Wrapper ---- */
.card-custom-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.card-custom-link:hover { color: inherit; }

/* ---- Floating Contact Us Button ---- */
.contact-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9998;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 24px rgba(4, 36, 37, 0.35);
    transition: var(--transition);
    text-decoration: none;
    overflow: visible;
}
.contact-float:hover {
    transform: scale(1.1);
    color: var(--white);
}
.contact-float-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: var(--white);
    padding: 7px 14px;
    border-radius: 25px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    z-index: 10000;
    overflow: visible;
}
.contact-float:hover .contact-float-tooltip {
    opacity: 1;
}

/* ---- Partners / Logos ---- */
.partner-logo {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); min-height: 120px;
    text-align: center;
}
.partner-logo:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.partner-logo img {
    max-height: 72px; width: 100%; object-fit: contain; display: block;
}
.partner-logo-card { background: linear-gradient(135deg, #ffffff 0%, #f7faf9 100%); }

/* ---- Mill Partners Marquee ---- */
@keyframes mill-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.mill-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 12px 0 24px;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.mill-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: mill-scroll 48s linear infinite;
}

.mill-marquee-wrapper:hover .mill-marquee-track {
    animation-play-state: paused;
}

.mill-marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.mill-marquee-item .partner-logo {
    width: 200px;
    min-height: 120px;
    padding: 20px 28px;
    transition: var(--transition);
}

.mill-marquee-item .partner-logo img {
    max-height: 90px;
}

.mill-marquee-item:hover .partner-logo {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

@media (max-width: 767.98px) {
    .mill-marquee-item .partner-logo { width: 155px; min-height: 96px; padding: 14px 18px; }
    .mill-marquee-item .partner-logo img { max-height: 70px; }
    .mill-marquee-track { gap: 16px; animation-duration: 22s; }
}

@media (max-width: 575.98px) {
    .mill-marquee-item .partner-logo { width: 130px; min-height: 80px; padding: 12px 14px; }
    .mill-marquee-item .partner-logo img { max-height: 56px; }
    .mill-marquee-track { gap: 12px; animation-duration: 18s; }
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 26px; border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: var(--transition); height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); }
.testimonial-quote { font-size: 36px; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.testimonial-text { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
}
.testimonial-name { font-weight: 700; color: var(--primary); font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }
.testimonial-stars { color: #ffc107; font-size: 13px; margin-top: 2px; }

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/cta.jpeg') center/cover no-repeat;
    opacity: 0.06;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.8); }

/* ---- Blog Cards ---- */
.blog-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid rgba(224,228,220,0.9);
    box-shadow: var(--shadow);
    transition: var(--transition); height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-category {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: block;
}
.blog-card-title { font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--primary-light); }
.blog-meta { font-size: 13px; color: var(--text-muted); display: flex; gap: 15px; flex-wrap: wrap; }
.blog-meta i { color: var(--primary); margin-right: 4px; }
.blog-excerpt { font-size: 14px; color: var(--text-muted); margin: 12px 0; line-height: 1.7; }
.blog-read-more { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.blog-read-more i { transition: var(--transition); }
.blog-read-more:hover i { transform: translateX(4px); }

/* ---- Page Hero / Banner ---- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, #0f4b4f 100%);
    padding: 64px 0 48px; position: relative; overflow: hidden;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.08);
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1553062407-98eeb64c6a62?w=1400&q=80') center/cover no-repeat;
    opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero .breadcrumb { background: none; padding: 0; margin: 0; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 14px; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item a:hover { color: var(--accent); }
.page-hero .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---- About Page ---- */
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 680px; object-fit: cover; }
.about-exp-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--primary); border-radius: 14px;
    padding: 20px 25px; text-align: center; color: var(--white);
    box-shadow: var(--shadow-lg);
}
.about-exp-badge .exp-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--accent); display: block; line-height: 1; }
.about-exp-badge .exp-text { font-size: 13px; opacity: 0.85; }

/* ---- Timeline (legacy, kept for reference) ---- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item::before {
    content: ''; position: absolute; left: -26px; top: 5px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--primary); border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }
.timeline-title { font-size: 1rem; color: var(--primary); margin: 4px 0; }
.timeline-desc { font-size: 14px; color: var(--text-muted); }

/* ---- Timeline V2 - Alternating (About Page) ---- */
.timeline-section {
    background:
        linear-gradient(135deg, rgba(2, 24, 25, 0.97) 0%, rgba(4, 36, 37, 0.96) 50%, rgba(23, 77, 80, 0.95) 100%),
        url('../images/herobg.jpeg') center / cover no-repeat;
    position: relative;
    overflow: hidden;
}
.timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 40%, rgba(200, 169, 81, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 70%, rgba(23, 77, 80, 0.3) 0%, transparent 70%);
    pointer-events: none;
}
.timeline-section .container { position: relative; z-index: 2; }
.timeline-section .section-label { color: var(--accent); }
.timeline-section .section-title { color: var(--white); }
.timeline-section .section-title span { color: var(--accent); }
.timeline-section .section-divider { background: var(--accent); }

.timeline-v2 {
    position: relative;
    padding: 20px 0;
}
/* Centre spine */
.timeline-v2::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(200,169,81,0.35) 5%, rgba(200,169,81,0.35) 95%, transparent);
}

/* Each row */
.timeline-v2-item {
    display: flex;
    align-items: center;
    margin-bottom: 38px;
    position: relative;
    width: 100%;
}
.timeline-v2-item:last-child { margin-bottom: 0; }

/* LEFT card: card on left, dot centre, year on right */
.timeline-v2-left {
    justify-content: flex-start;
    padding-right: calc(50% + 36px);
}
.timeline-v2-left .timeline-v2-card { text-align: right; }
.timeline-v2-left .timeline-v2-dot {
    position: absolute;
    right: calc(50% - 10px);
}
.timeline-v2-left .timeline-v2-year {
    position: absolute;
    right: 0;
    width: calc(50% - 52px);
    text-align: left;
}

/* RIGHT card: year on left, dot centre, card on right */
.timeline-v2-right {
    justify-content: flex-end;
    padding-left: calc(50% + 36px);
}
.timeline-v2-right .timeline-v2-card { text-align: left; }
.timeline-v2-right .timeline-v2-dot {
    position: absolute;
    left: calc(50% - 10px);
}
.timeline-v2-right .timeline-v2-year {
    position: absolute;
    left: 0;
    width: calc(50% - 52px);
    text-align: right;
}

/* The card */
.timeline-v2-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    width: 100%;
}
.timeline-v2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(200, 169, 81, 0.45);
    background: rgba(255, 255, 255, 0.1);
}

/* Year inside card - hidden on desktop, shown on mobile */
.timeline-v2-year-inline {
    display: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Year label - opposite side of spine (desktop) */
.timeline-v2-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    opacity: 0.9;
    letter-spacing: -0.5px;
}
.timeline-v2-title {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.timeline-v2-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin: 0;
}

/* Centre dot */
.timeline-v2-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--primary-dark);
    border: 3px solid var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.15);
    flex-shrink: 0;
    z-index: 2;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.timeline-v2-item:hover .timeline-v2-dot {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(200, 169, 81, 0.25);
}

/* Connector lines from card edge to dot */
.timeline-v2-left .timeline-v2-card::after {
    content: '';
    position: absolute;
    top: 50%; right: -28px;
    width: 28px; height: 1px;
    background: rgba(200, 169, 81, 0.35);
    transform: translateY(-50%);
}
.timeline-v2-right .timeline-v2-card::after {
    content: '';
    position: absolute;
    top: 50%; left: -28px;
    width: 28px; height: 1px;
    background: rgba(200, 169, 81, 0.35);
    transform: translateY(-50%);
}

/* Mobile: collapse to single column */
@media (max-width: 767px) {
    .timeline-v2::before { left: 18px; transform: none; }

    .timeline-v2-item,
    .timeline-v2-left,
    .timeline-v2-right {
        display: flex;
        flex-direction: column;
        padding: 0 0 0 52px !important;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .timeline-v2-left .timeline-v2-card,
    .timeline-v2-right .timeline-v2-card {
        text-align: left;
        width: 100%;
        order: 2;
    }

    .timeline-v2-left .timeline-v2-dot,
    .timeline-v2-right .timeline-v2-dot {
        position: absolute;
        left: 8px;
        top: 22px;
        right: auto;
        order: 1;
    }

    /* Hide the outside year on mobile */
    .timeline-v2-left .timeline-v2-year,
    .timeline-v2-right .timeline-v2-year {
        display: none !important;
    }

    /* Show year inside the card on mobile */
    .timeline-v2-year-inline {
        display: block;
    }

    /* Remove pseudo-element year */
    .timeline-v2-card::before { display: none; }

    /* Hide connector lines */
    .timeline-v2-left .timeline-v2-card::after,
    .timeline-v2-right .timeline-v2-card::after { display: none; }
}  


/* ---- Mill Partner / Business Pages ---- */
.mill-hero-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0 60px;
}
.mill-info-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 20px 24px; border: 1px solid var(--border);
    box-shadow: var(--shadow); height: 100%;
}
.mill-info-card .info-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.mill-info-card .info-value { font-size: 1rem; font-weight: 600; color: var(--primary); margin-top: 4px; }

/* USP card on mill overview */
/* Mill logo - hero banner */

.mill-hero-logo img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    border-radius: 18px;
    object-fit: contain;
}


@media (max-width: 991.98px) {
    .mill-hero-logo img { max-width: 180px; max-height: 90px;border-radius: 14px; }
}

@media (max-width: 767.98px) {
  .mill-hero-logo img { max-width: 150px; max-height: 80px; border-radius: 10px; }
}



.mill-usp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(35, 45, 54, 0.18);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mill-usp-card--hover:hover {
    background: rgba(230, 239, 242, 0.92);
    border-color: rgba(35, 45, 54, 0.32);
    transform: translateY(-2px);
}
.mill-usp-section .row.g-3 {
    align-items: stretch;
}
.mill-usp-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
}
.mill-usp-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(4, 36, 37, 0.08);
    color: var(--accent);
    font-size: 0.95rem;
}
.mill-usp-point p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.93rem;
    line-height: 1.75;
}
.mill-usp-title {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mill-usp-list {
    list-style: none;
    padding: 0; margin: 0;
}
.mill-usp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
    line-height: 1.5;
}
.mill-usp-list li:last-child { margin-bottom: 0; }
.mill-usp-list li i {
    color: var(--accent);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Product Cards (Mill Partner pages) ---- */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(224, 228, 220, 0.8);
    box-shadow: 0 4px 20px rgba(4, 36, 37, 0.06);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 169, 81, 0.4);
}

/* Image area */
.product-card-img {
    position: relative;
    /* height: 100%; */
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    overflow: hidden;
}
.product-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
    color: rgba(200, 169, 81, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
}
.product-card-mill-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.5);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

/* Body */
.product-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card-name {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 13px;
    line-height: 1.3;
}

/* Specs grid */
.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 13px;
}
.product-spec {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 8px 11px;
    border: 1px solid rgba(224, 228, 220, 0.6);
}
.product-spec-full { grid-column: span 2; }
.spec-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 3px;
}
.spec-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* Feature list */
.product-features {
    list-style: none;
    padding: 0; margin: 0 0 16px;
    flex: 1;
}
.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.5;
}
.product-features li:last-child { margin-bottom: 0; }
.product-features li i {
    color: var(--primary);
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* CTA button */
.product-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    transition: var(--transition);
    margin-top: auto;
}
.product-card-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(4, 36, 37, 0.22);
}
.product-tag {
    display: inline-block; background: var(--off-white);
    border: 1px solid var(--border); border-radius: 20px;
    padding: 6px 16px; font-size: 13px; color: var(--primary); margin: 4px 3px;
    font-weight: 500; transition: var(--transition);
}
.product-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ---- Contact Page ---- */
.contact-info-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px; border: 1px solid rgba(224,228,220,0.9);
    box-shadow: var(--shadow);
    display: flex; gap: 18px; align-items: flex-start;
    transition: var(--transition); height: 100%;
}
.contact-info-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.contact-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: var(--off-white); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--primary);
}
.contact-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--primary); }
.contact-value a { color: var(--primary); }
.contact-value a:hover { color: var(--primary-light); }
.contact-map-link {
    font-size: 12px; color: var(--accent); font-weight: 600;
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 10px; text-decoration: none;
}
.contact-map-link:hover { color: var(--primary); }
.contact-info-card--sm { padding: 16px 18px; }
.contact-icon--sm { width: 40px; height: 40px; min-width: 40px; font-size: 17px; border-radius: 10px; }
.contact-form-wrap {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-label-custom { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; display: block; }
.form-control-custom {
    width: 100%; padding: 12px 16px; border-radius: var(--radius);
    border: 1.5px solid var(--border); font-size: 14px; color: var(--text-dark);
    background: var(--off-white); transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.form-control-custom:focus {
    outline: none; border-color: var(--primary);
    background: var(--white); box-shadow: 0 0 0 3px rgba(15,61,46,0.1);
}
.form-control-custom::placeholder { color: #aaa; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 340px; border: none; display: block; }

/* ---- Careers ---- */
.job-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px; border: 1px solid rgba(224,228,220,0.9);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.job-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-3px); }
.job-dept { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.job-title { font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.job-meta { display: flex; gap: 15px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.job-meta i { color: var(--primary); margin-right: 4px; }
.job-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.btn-apply { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 9px 24px; border-radius: 25px; font-weight: 600; font-size: 14px; transition: var(--transition); }
.btn-apply:hover { background: var(--primary); color: var(--white); }

/* ---- Blog Detail ---- */
.blog-detail-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; }
.blog-detail-img img { width: 100%; max-height: 480px; object-fit: cover; }
.blog-detail-content h2 { font-size: 1.5rem; color: var(--primary); margin: 30px 0 15px; }
.blog-detail-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.blog-detail-content ul { color: var(--text-muted); padding-left: 20px; margin-bottom: 18px; }
.blog-detail-content ul li { margin-bottom: 8px; }
.blog-sidebar-widget { background: var(--off-white); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 22px; }
.blog-sidebar-title { font-size: 1.1rem; color: var(--primary); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.recent-post { display: flex; gap: 14px; align-items: center; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-post-img { width: 70px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.recent-post-title { font-size: 13px; font-weight: 600; color: var(--primary); line-height: 1.4; }
.recent-post-date { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* ---- Footer ---- */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); }

/* Map strip */
.footer-map-row {
    line-height: 0;
    border-bottom: 3px solid rgba(200,169,81,0.25);
    opacity: 0.92;
}
.footer-map-row iframe { display: block; }

.footer-top { padding: 52px 0 44px; }

/* ── Brand column layout ── */
.footer-brand-row {
    text-align: left;
    max-width: 100%;
    margin: 0 0 10px;
}
.footer-brand-row .footer-desc {
    font-size: 14px; line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.footer-brand-row .footer-social {
    justify-content: flex-start;
}

/* Thin divider between brand row and link columns */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 28px 0;
}

.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.footer-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    opacity: 0.85;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8); font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--primary-dark); }

.footer-title {
    font-family: 'Playfair Display', serif; font-size: 1rem;
    color: var(--white); margin-bottom: 18px;
    padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    color: rgba(255,255,255,0.6); font-size: 13px;
    display: flex; align-items: center; gap: 7px; transition: var(--transition);
}
.footer-links a i { font-size: 9px; color: var(--accent); flex-shrink: 0; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

/* ── Offices 2×2 grid ── */
.footer-offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-office {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.footer-office::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(200,169,81,0.16) 45%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 0;
}
.footer-office > * {
    position: relative;
    z-index: 1;
}
.footer-office:hover {
    border-color: rgba(200,169,81,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
.footer-office:hover::before {
    transform: translateX(120%);
}

.footer-office-badge {
    display: inline-block;
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    background: rgba(200,169,81,0.15);
    border: 1px solid rgba(200,169,81,0.35);
    color: var(--accent);
    padding: 3px 10px; border-radius: 999px;
    margin-bottom: 7px;
}
.footer-office-badge--plant {
    background: rgba(23,77,80,0.4);
    border-color: rgba(23,77,80,0.7);
    color: rgba(255,255,255,0.7);
}
.footer-office-badge--branch {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.6);
}
.footer-office-name {
    font-size: 13px; font-weight: 600; color: var(--white);
    margin: 0 0 4px; line-height: 1.35;
}
.footer-office-addr {
    font-size: 12px; color: rgba(255,255,255,0.5);
    margin: 0 0 8px; line-height: 1.55;
}
.footer-map-link {
    font-size: 12px; font-weight: 600; color: var(--accent);
    display: inline-flex; align-items: center; gap: 5px;
    transition: var(--transition);
}
.footer-map-link:hover { color: var(--accent-light); gap: 7px; }

/* Contact chips */
.footer-contact-row {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.footer-contact-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}
.footer-contact-chip i { color: var(--accent); font-size: 13px; }
.footer-contact-chip:hover {
    background: rgba(200,169,81,0.15);
    border-color: rgba(200,169,81,0.4);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin: 0; }

/* Mobile */
@media (max-width: 767px) {
    .footer-offices-grid { grid-template-columns: 1fr; }
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 9999;
    width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #1ea952); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    transition: var(--transition);
    overflow: visible;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
.whatsapp-tooltip {
    position: absolute; right: 70px; background: #25D366;
    color: var(--white); padding: 7px 14px; border-radius: 25px;
    font-size: 13px; white-space: nowrap; opacity: 0;
    pointer-events: none; transition: var(--transition);
    font-family: 'Inter', sans-serif;
    z-index: 10000;
    overflow: visible;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.back-to-top {
    position: fixed; bottom: 170px; right: 32px; z-index: 9997;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    border: none; cursor: pointer; font-size: 16px;
    display: none; align-items: center; justify-content: center;
    box-shadow: var(--shadow); transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---- Scroll Reveal Enhancements ---- */
[data-aos="fade-up"] {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}
[data-aos="zoom-in"] {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}

/* ---- Float Button Entrance ---- */
@keyframes floatEntrance {
    0% { opacity: 0; transform: translateY(20px) scale(0.85); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.whatsapp-float {
    animation: floatEntrance 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) 0.8s both;
}
.contact-float {
    animation: floatEntrance 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) 1.0s both;
}

/* ---- Alert / Status ---- */
.alert-success-custom { background: #d4edda; border: 1px solid #b8ddc5; color: #1a5c34; border-radius: var(--radius); padding: 14px 18px; margin-bottom: 20px; }
.alert-error-custom { background: #f8d7da; border: 1px solid #f5c2c7; color: #842029; border-radius: var(--radius); padding: 14px 18px; margin-bottom: 20px; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed !important;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(320px, 100%) !important;
        max-width: 320px !important;
        margin: 0;
        padding: 30px 20px;
        background: #ffffff;
        transform: translateX(-100%);
        transition: transform 0.3s ease !important;
        z-index: 1002 !important;
        overflow-y: auto !important;
        border-radius: 0;
        box-shadow: var(--shadow);
        display: block !important;
        height: 100vh !important;
        min-height: 100vh !important;
        box-sizing: border-box;
    }
    .navbar-collapse.collapse {
        display: block !important;
        height: 0;
        overflow: hidden;
        transform: translateX(-100%) !important;
    }
    .navbar-collapse.collapsing {
        display: block !important;
        height: auto !important;
        overflow: auto !important;
        transform: translateX(-100%) !important;
    }
    .navbar-collapse.show {
        transform: translateX(0) !important;
        height: 100vh !important;
        overflow-y: auto !important;
        z-index: 1003 !important;
    }
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    .mobile-nav-title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary);
    }
    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-radius: var(--radius);
    }
    .navbar-nav .nav-item.ms-lg-2 {
        margin-left: 0 !important;
    }
    .navbar-nav .btn {
        width: 100%;
    }
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }
    .dropdown-menu .dropdown-item {
        padding: 10px 15px !important;
        border-radius: 0 !important;
        margin: 0;
        background: transparent !important;
        color: var(--primary);
    }
    .dropdown-menu .dropdown-item:hover {
        background: rgba(200,169,81,0.08) !important;
        color: var(--primary);
    }
    .hero-image-wrap { display: none; }
    .hero-section { min-height: auto; padding: 80px 0; }
    .about-exp-badge { position: relative; bottom: auto; right: auto; margin-top: 20px; display: inline-block; }
    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1050;
        pointer-events: none;
    }
    .mobile-nav-backdrop.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}
@media (max-width: 767px) {
    .section-pad { padding: 52px 0; }
    .section-pad-sm { padding: 38px 0; }
    .topbar-left { gap: 12px; }
    .topbar { display: none; }
    .hero-stats { gap: 20px; }
    .footer-top { padding: 40px 0 28px; }
    .footer-map-row iframe { height: 200px; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .contact-float { bottom: 90px; right: 20px; }
    .back-to-top { bottom: 155px; right: 22px; }
    .contact-form-wrap { padding: 22px; }
    .feature-card { padding: 20px 15px; }
    .industry-card { padding: 18px 12px; }
    .timeline-v2-card { padding: 18px 16px; }
}

/* ============================================================
   Notebook Manufacturing Page - Process, Gallery & Vriddhi
   ============================================================ */

/* ---- Manufacturing Process Steps ---- */
.process-step-card {
    background: var(--white);
    border: 1px solid rgba(224, 228, 220, 0.8);
    border-radius: var(--radius-lg);
    padding: 28px 20px 24px;
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: 0 3px 14px rgba(4, 36, 37, 0.05);
    transition: var(--transition);
    overflow: visible;
}
.process-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 169, 81, 0.4);
}
.process-step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(200, 169, 81, 0.35);
    letter-spacing: 0;
}
.process-step-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, rgba(4,36,37,0.06) 0%, rgba(4,36,37,0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 8px auto 16px;
    transition: var(--transition);
}
.process-step-card:hover .process-step-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent);
    transform: scale(1.08);
}
.process-step-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}
.process-step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}
.process-step-arrow {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 14px;
    z-index: 2;
    background: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(200,169,81,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Cover Gallery ---- */
.cover-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}
.cover-gallery-filter {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}
.cover-gallery-filter:hover,
.cover-gallery-filter.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.cover-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px dashed rgba(255,255,255,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: default;
    transform: translateZ(0);
    contain: layout paint;
}
.cover-gallery-item:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 10px 24px rgba(4,36,37,0.14);
    border-color: rgba(200, 169, 81, 0.35);
}
/* Photo variant - real images */
.cover-gallery-item--photo {
    background: var(--off-white);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;        /* anchor needs this explicitly */
    text-decoration: none;
}
.cover-gallery-item--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: transform 0.25s ease;
    /* Image loading optimization */
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
.cover-gallery-item--photo:hover img {
    transform: scale(1.03) translateZ(0);
}
.cover-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 36, 37, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}
.cover-gallery-item--photo:hover .cover-gallery-overlay {
    opacity: 1;
}
.cover-gallery-overlay i {
    font-size: 28px;
    color: var(--accent);
}
/* Badge for subcategory labels */
.cover-gallery-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, #d4a63d 100%);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}
.cover-gallery-item--photo:hover .cover-gallery-badge {
    transform: scale(1.05);
}
.cover-gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 20px;
}
.cover-gallery-placeholder i {
    font-size: 36px;
    color: rgba(200, 169, 81, 0.6);
}
.cover-gallery-placeholder span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    font-family: 'Playfair Display', serif;
}
.cover-gallery-placeholder small {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
}

/* ---- Vriddhi Brand Section ---- */
.vriddhi-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}
.vriddhi-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%);
    pointer-events: none;
}
/* Override text colours for dark background */
.vriddhi-section .section-label  { color: var(--accent); }
.vriddhi-section .section-title  { color: var(--white); }
.vriddhi-section .section-title span { color: var(--accent); }
.vriddhi-section .section-divider { background: var(--accent); }
.vriddhi-section .text-muted     { color: rgba(255,255,255,0.7) !important; }
.vriddhi-section strong          { color: var(--white); }
.vriddhi-section .feature-item-card {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    border-left-color: transparent;
}
.vriddhi-section .feature-item-card:hover {
    background: rgba(255,255,255,0.12);
    border-left-color: var(--accent);
}
.vriddhi-section .feature-item-card .feature-icon {
    background: rgba(200,169,81,0.15);
    color: var(--accent);
}
.vriddhi-section .feature-item-card:hover .feature-icon {
    background: var(--accent);
    color: var(--primary-dark);
}
.vriddhi-section .feature-title  { color: var(--white); }
.vriddhi-section .feature-text   { color: rgba(255,255,255,0.65); }
.vriddhi-brand-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(4, 36, 37, 0.22);
    position: relative;
    overflow: hidden;
}
.vriddhi-brand-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 20%, rgba(200,169,81,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.vriddhi-logo-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.vriddhi-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px 24px;
    background: rgba(255,255,255,0.07);
    border: 2px dashed rgba(200,169,81,0.4);
    border-radius: 16px;
}
.vriddhi-logo-placeholder i {
    font-size: 44px;
    color: var(--accent);
}
.vriddhi-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}
.vriddhi-logo-placeholder small {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
}
.vriddhi-tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.vriddhi-story-block {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.vriddhi-story-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-dark);
    flex-shrink: 0;
}

/* ---- Responsive overrides ---- */
@media (max-width: 991px) {
    .process-step-arrow { display: none !important; }
    .cover-gallery-item { aspect-ratio: 4 / 3; }
}
@media (max-width: 767px) {
    .process-step-card { padding: 24px 16px 20px; }
    .vriddhi-brand-card { padding: 32px 20px; }
}

/* ---- Scroll indicator ---- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0;
    animation: heroLeadIn 0.9s ease 2s forwards;
}
.hero-scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(200,169,81,0.8), transparent);
    animation: scrollLinePulse 2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scrollLinePulse {
    0%   { transform: scaleY(0); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}


/* ============================================================
   People Behind Our Legacy - Section Styles
   ============================================================ */

.people-section {
    background: linear-gradient(180deg, #f7f8f3 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.people-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,169,81,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.people-section .container { position: relative; z-index: 1; }

/* Generation divider label */
.people-gen-label {
    text-align: center;
    margin-bottom: 32px;
}
.people-gen-label span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 22px;
    box-shadow: 0 2px 10px rgba(4,36,37,0.07);
}
.people-gen-label span i { color: var(--accent); font-size: 13px; }

/* ── Slim People Card ── */
.ppl-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(224,228,220,0.9);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
}
.ppl-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,169,81,0.35);
}

/* Photo area */
.ppl-card__photo-wrap {
    position: relative;
    /* height: 300px; */
    flex-shrink: 0;
}
.ppl-card__photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease;
}
.ppl-card:hover .ppl-card__photo { transform: scale(1.04); }

/* Placeholder */
.ppl-card__photo--ph {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ppl-card__photo--ph i { font-size: 52px; color: rgba(200,169,81,0.45); }
.ppl-card__photo--gold {
    background: linear-gradient(135deg, #2a5c5e 0%, #174d50 100%);
}

/* Generation badge */
.ppl-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: rgba(255,255,255,0.9);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
}
.ppl-card__badge--gold {
    background: var(--accent);
    color: var(--primary-dark);
}

/* Body */
.ppl-card__body {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.ppl-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
}
.ppl-card__desig {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin: 2px 0 8px;
    font-family: 'Inter', sans-serif;
}
.ppl-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--off-white);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    margin-top: auto;
}
.ppl-card__btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}
.ppl-card__btn i { font-size: 10px; transition: transform 0.25s ease; }
.ppl-card__btn:hover i { transform: translateX(3px); }

/* Closing legacy banner */
.people-legacy-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.people-legacy-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(200,169,81,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.people-legacy-banner__icon {
    width: 52px; height: 52px; min-width: 52px;
    background: rgba(200,169,81,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--accent);
    flex-shrink: 0; position: relative; z-index: 1;
}
.people-legacy-banner__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
    position: relative; z-index: 1;
}
.people-legacy-banner__text {
    font-size: 14px; color: rgba(255,255,255,0.75);
    line-height: 1.75; margin: 0;
    position: relative; z-index: 1;
}

/* ── People Modal ── */
.ppl-modal .modal-dialog { max-width: 720px; }

.ppl-modal__content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(4,36,37,0.22);
}

.ppl-modal__close {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 10;
    width: 36px; height: 36px;
    background: rgba(4,36,37,0.08);
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--primary);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.ppl-modal__close:hover { background: var(--primary); color: var(--white); }

.ppl-modal__inner {
    display: flex;
    min-height: 420px;
}

/* Left photo column */
.ppl-modal__photo-col {
    width: 240px;
    min-width: 240px;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 36px 20px;
    flex-shrink: 0;
}
.ppl-modal__photo {
    width: 150px; height: 185px;
    border-radius: 14px;
    object-fit: cover;
    object-position: top center;
    border: 3px solid rgba(200,169,81,0.4);
}
.ppl-modal__photo--ph {
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
}
.ppl-modal__photo--ph i { font-size: 52px; color: rgba(200,169,81,0.5); }
.ppl-modal__photo--gold { background: rgba(200,169,81,0.1); }

.ppl-modal__meta {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.ppl-modal__badge {
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    padding: 4px 14px; border-radius: 999px;
    font-family: 'Inter', sans-serif;
}
.ppl-modal__badge--gold { background: rgba(200,169,81,0.25); color: var(--accent); }
.ppl-modal__year {
    font-size: 12px; color: rgba(255,255,255,0.5);
    font-family: 'Inter', sans-serif;
}

/* Right detail column */
.ppl-modal__detail-col {
    padding: 36px 32px;
    flex: 1;
    overflow-y: auto;
}
.ppl-modal__gen-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.ppl-modal__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--primary); margin-bottom: 4px; line-height: 1.2;
}
.ppl-modal__desig {
    font-size: 13px; color: var(--text-muted);
    margin-bottom: 0; font-family: 'Inter', sans-serif;
}
.ppl-modal__divider {
    width: 40px; height: 3px;
    background: var(--accent); border-radius: 2px;
    margin: 16px 0;
}
.ppl-modal__bio {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.8; margin-bottom: 12px;
}
.ppl-modal__tag-row {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 8px;
}
.ppl-modal__tag {
    font-size: 11px; font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 5px 12px; border-radius: 999px;
}
.ppl-modal__tag i { color: var(--accent); font-size: 10px; }

/* Modal responsive */
@media (max-width: 600px) {
    .ppl-modal__inner { flex-direction: column; }
    .ppl-modal__photo-col {
        width: 100%; min-width: 0;
        flex-direction: row;
        padding: 20px 24px;
        justify-content: flex-start;
        gap: 16px;
    }
    .ppl-modal__photo { width: 72px; height: 72px; }
    .ppl-modal__meta { align-items: flex-start; }
    .ppl-modal__detail-col { padding: 24px 20px; }
    .ppl-modal__name { font-size: 1.2rem; }
    .ppl-modal .modal-dialog { margin: 12px; }
    .people-legacy-banner { flex-direction: column; gap: 14px; padding: 24px 20px; }
}

@media (max-width: 767px) {
    .ppl-card__photo-wrap { height: 260px; }
}


/* ============================================================
   Our Capabilities - Section Styles
   ============================================================ */

.capabilities-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8f3 100%);
    position: relative;
}

/* Capability card */
.cap-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(224,228,220,0.9);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.cap-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,169,81,0.4);
}

/* Image wrap - fixed height with overlay */
.cap-card__img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}
.cap-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.cap-card:hover .cap-card__img { transform: scale(1.07); }

/* Hover overlay */
.cap-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(4,36,37,0.82) 0%, rgba(4,36,37,0.92) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.38s ease;
    padding: 24px;
}
.cap-card:hover .cap-card__overlay { opacity: 1; }
.cap-card__overlay-inner {
    text-align: center;
    color: var(--white);
    transform: translateY(12px);
    transition: transform 0.38s ease;
}
.cap-card:hover .cap-card__overlay-inner { transform: translateY(0); }
.cap-card__overlay-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,169,81,0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin: 0 auto 14px;
}
.cap-card__overlay-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.cap-card__overlay-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 18px;
}
.cap-card__overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: var(--primary-dark) !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 999px;
    transition: background 0.25s ease, transform 0.25s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}
.cap-card__overlay-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    color: var(--primary-dark) !important;
}

/* Card body - visible on all devices */
.cap-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.cap-card__icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    transition: background 0.28s ease, color 0.28s ease;
    flex-shrink: 0;
}
.cap-card:hover .cap-card__icon {
    background: var(--primary);
    color: var(--white);
}
.cap-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.3;
}
.cap-card__desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.cap-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    margin-top: 4px;
    transition: gap 0.22s ease, color 0.22s ease;
    font-family: 'Inter', sans-serif;
}
.cap-card__link:hover {
    gap: 10px;
    color: var(--accent);
}
.cap-card__link i { font-size: 11px; }

@media (max-width: 767px) {
    .cap-card__img-wrap { height: 200px; }
    /* On touch devices overlay is less useful - show body */
    .cap-card__body { padding: 16px 18px 18px; }
}


/* ============================================================
   Trust Strip - Paper Wholesale Page
   ============================================================ */

.trust-strip-section {
    background: var(--white);
    padding: 36px 0 28px;
    border-bottom: 1px solid var(--border);
}

.trust-strip-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 20px;
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    position: relative;
    overflow: hidden;
}

.trust-strip-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 0 0 16px 16px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s ease;
}

.trust-strip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,169,81,0.35);
    background: var(--white);
}

.trust-strip-card:hover::before {
    transform: scaleX(1);
}

.trust-strip-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.28s ease;
}

.trust-strip-card:hover .trust-strip-icon {
    transform: scale(1.1) rotate(-4deg);
}

.trust-strip-body { flex: 1; }

.trust-strip-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.3;
}

.trust-strip-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 767px) {
    .trust-strip-section { padding: 24px 0 16px; }
    .trust-strip-card { padding: 18px 16px; }
}


/* ============================================================
   Notebook Product Cards
   ============================================================ */

.nb-product-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(224,228,220,0.9);
    box-shadow: var(--shadow);
    padding: 28px 24px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}
.nb-product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 18px 18px 0 0;
    transition: background 0.3s ease;
}
.nb-product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,169,81,0.3);
}
.nb-product-card:hover::after {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

/* "New" variant - gold top bar from the start */
.nb-product-card--new::after {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.nb-product-card--new:hover::after {
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
}

/* New badge */
.nb-product-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
}

.nb-product-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(4,36,37,0.07) 0%, rgba(4,36,37,0.12) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}
.nb-product-card:hover .nb-product-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    transform: scale(1.08);
}

.nb-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1.3;
}

.nb-product-divider {
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    margin: 12px 0;
    transition: width 0.3s ease;
}
.nb-product-card:hover .nb-product-divider { width: 52px; }

.nb-product-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 16px;
}

.nb-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}
.nb-product-tags span {
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 999px;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.nb-product-card:hover .nb-product-tags span {
    background: rgba(4,36,37,0.05);
    border-color: rgba(200,169,81,0.35);
}

@media (max-width: 767px) {
    .nb-product-card { padding: 22px 18px 20px; }
}
