@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@1,500;1,600&display=swap');

:root {
    --primary-green: #1f7a3e;
    --primary-yellow: #f5c400;
    --dark-green: #145229;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --bg-light: #f8fcf9;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.grid-1-2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.grid-2-1 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.grid-contact {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
}


.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}


@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
.grid-1-2, .grid-2-1, .grid-contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



@media (max-width: 576px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}


.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    text-align: center;
}

.btn-green {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-green:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 122, 62, 0.3);
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-yellow:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 196, 0, 0.3);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.3);
    /* High transparency for glass feel */
    backdrop-filter: blur(25px) saturate(180%);
    /* Strong blur + color boost */
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    /* Crisp glass edge */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    /* Subtle depth */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-green);
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

.nav-links a.active {
    border-bottom: 2px solid var(--primary-yellow);
}

/* Hero Section - Banner with Text Overlay */
.hero {
    padding: 0;
    overflow: hidden;
    background: #fff;
    height: 85vh;
    /* Increased slightly to account for the overlap */
    min-height: 550px;
    margin-top: -90px;
    /* Pulls hero up behind the glass header */
}

.hero-banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Ensure left alignment */
    z-index: 10;
}

.hero-text-box {
    max-width: 800px;
    padding-left: 50px;
    /* Aligns exactly with your marked blue line */
    padding-top: 130px;
    /* Pushes text down so it doesn't overlap with header */
}

.hero-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5.5rem;
    color: var(--primary-green);
    font-weight: 800;
    line-height: 0.85;
    margin-bottom: 5px;
    letter-spacing: 2px;
    /* Strong spacing */
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 3px;
    /* Strong spacing */
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-script {
    font-family: 'Cambria Math', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-icons-row span {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-green);
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.h-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.h-feat i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Feature Strip */
.feature-strip {
    background: #C1E899; /* Exact green from your image */
    padding: 30px 0;
    border-top: 1px solid #b2d68d;
    border-bottom: 1px solid #b2d68d;
}

.strip-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.strip-item i {
    font-size: 2rem;
    color: var(--primary-green);
}

.strip-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.strip-item p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Products */
.products {
    padding: 35px 0 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title p {
    color: var(--primary-green);
    font-weight: 800; /* Standardized Bold */
    font-size: 1.1rem; /* Balanced size */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-family: 'Cambria Math', 'Cambria', 'Georgia', serif;
    font-size: 2.2rem; /* Decreased as requested */
    color: var(--text-dark);
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    /* Allows vertical alignment */
    height: 100%;
    /* Ensures all cards in a row are same height */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 180px;
    width: 180px;
    margin: 20px auto 0;
    overflow: hidden;
    background: #fdfdfd;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Ensures image is fully visible */
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Takes up remaining space */
    text-align: center;
}

.product-info h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 15px;
    flex-grow: 1;
    /* Pushes the next elements down */
}

.sizes {
    display: flex;
    justify-content: center;
    /* Center the tags */
    gap: 8px;
    margin-bottom: 20px;
}

.product-info .btn {
    margin-top: auto;
    /* Pushes button to the very bottom of the card */
}

.size-tag {
    background: #f0f9f1;
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Our Process Section */
.process {
    padding: 45px 0 30px;
    margin-bottom: 0;
    background: #fff;
}

.process-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
}

.process-info {
    flex: 0 1 350px;
    min-width: 0;
    max-width: 350px;
}

.cambria-font {
    font-family: 'Cambria Math', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif !important;
}

.process-info .section-tag {
    color: var(--primary-green);
    font-weight: 800; /* Made bolder */
    text-transform: uppercase;
    font-size: 1.1rem; /* Increased size */
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.process-info .section-heading {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    white-space: normal; /* Allow wrapping on small screens */
}

.process-info .section-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.process-visuals {
    flex: 1;
    overflow: hidden;
}

.process-visuals img {
    width: 100%;
    height: auto;
    max-height: 420px;  /* Prevents PNG whitespace from bloating the section */
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    display: block;
}

.process-steps-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.process-step {
    text-align: center;
}

.step-img {
    height: 140px; /* Vertical orientation */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-check {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: -25px; /* Pulls it over the image slightly */
    position: relative;
    z-index: 2;
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.process-step h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.btn-green {
    background: var(--dark-green);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-green:hover {
    background: var(--primary-green);
    color: #fff;
}

/* ===== WHY CHOOSE US SECTION (RECREATED) ===== */
.why-choose-us-new {
    background: linear-gradient(135deg, #0e3d20 0%, #145229 100%);
    position: relative;
    padding: 15px 0;
    color: #fff;
    overflow: hidden;
}

/* Falling solid light green leaves texture */
.why-choose-us-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C1E899' fill-opacity='0.25'%3E%3Cpath d='M40 20c20 30 20 60 0 90-20-30-20-60 0-90z' transform='rotate(15 40 65)'/%3E%3Cpath d='M150 40c18 25 18 50 0 75-18-25-18-50 0-75z' transform='rotate(45 150 77)'/%3E%3Cpath d='M260 30c22 32 22 64 0 96-22-32-22-64 0-96z' transform='rotate(-20 260 78)'/%3E%3Cpath d='M80 180c15 22 15 44 0 66-15-22-15-44 0-66z' transform='rotate(65 80 213)'/%3E%3Cpath d='M200 160c18 25 18 50 0 75-18-25-18-50 0-75z' transform='rotate(-35 200 197)'/%3E%3Cpath d='M280 200c12 18 12 36 0 54-12-18-12-36 0-54z' transform='rotate(10 280 227)'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 300px 300px;
    pointer-events: none;
    opacity: 1;
    animation: leafFall 20s linear infinite;
}

@keyframes leafFall {
    0% { background-position: 0 0; }
    100% { background-position: 0 300px; }
}

.why-choose-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.why-choose-content {
    flex: 1;
}

.why-label {
    color: var(--primary-yellow);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.why-heading {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.05;
}

.serif-font {
    font-family: 'Cambria Math', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.why-stats-grid {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding: 0 10px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item i {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2px;
    display: block;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.75rem;
    line-height: 1.3;
    opacity: 0.8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Yellow Card */
.why-choose-card-container {
    flex: 0 0 350px;
}

.export-card {
    background: var(--primary-yellow);
    color: #1a1a1a;
    padding: 15px 20px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-quotation {
    background: #145229;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    border: none;
    transition: all 0.3s ease;
}

.btn-quotation:hover {
    background: #0e3d20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
}

.card-heading {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.1;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-features i {
    font-size: 0.9rem;
    color: #1a1a1a;
}

.card-visuals {
    position: absolute;
    bottom: -15px;
    right: -25px;
    display: flex;
    align-items: center;
    gap: 0;
}

.box-icon {
    font-size: 4rem;
    color: #8b6b00;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.3));
    z-index: 2;
}

.globe-icon {
    font-size: 5rem;
    color: #145229;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
    margin-left: -25px;
    z-index: 1;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications {
    padding: 20px 0 20px;
    background: #fff;
}

.cert-header {
    text-align: center;
    margin-bottom: 20px;
}

.cert-label {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cert-heading {
    font-family: 'Cambria Math', Cambria, Georgia, serif;
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cert-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cert-logo-card {
    flex: 1 1 160px;
    max-width: 200px;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.cert-logo-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    border-color: #c8e6d0;
}

.cert-clickable {
    cursor: pointer;
}

.cert-clickable:hover {
    border-color: var(--primary-green);
}

/* FSSC Logo */
.cert-fssc {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fssc-ring {
    font-size: 2rem;
    color: var(--primary-green);
    line-height: 1;
}

.fssc-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #222;
    line-height: 1.2;
}

/* FSSAI Logo */
.cert-fssai {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.fssai-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #006400;
    font-weight: 700;
    line-height: 1;
}

.fssai-num {
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 0.5px;
}

/* Generic cert cards (MPIDC, APEDA, Make in India) */
.cert-generic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-generic span:first-child {
    font-size: 1.8rem;
}

.cert-sub {
    font-size: 0.7rem;
    color: #555;
    font-weight: 600;
}

/* ===== FSSC CERTIFICATE MODAL ===== */
.cert-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cert-modal-overlay.active {
    display: flex;
}

.cert-modal-box {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    max-width: 780px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cert-modal-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.cert-modal-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.cert-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #555;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}

.cert-modal-close:hover {
    color: #c00;
}

/* ===== NEW FOOTER ===== */
.footer-new {
    background-color: #0e3d20;
    /* Refined Pointed Leaf Texture */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 15c12 18 12 35 0 50-12-15-12-32 0-50z M50 15v50' stroke='%23ffffff' stroke-width='1.5' stroke-opacity='0.05' fill='none'/%3E%3Cpath d='M20 65c8 12 8 22 0 32-8-10-8-20 0-32z M20 65v32' stroke='%23ffffff' stroke-width='1.2' stroke-opacity='0.04' fill='none'/%3E%3Cpath d='M80 70c8 12 8 22 0 32-8-10-8-20 0-32z M80 70v32' stroke='%23ffffff' stroke-width='1.2' stroke-opacity='0.04' fill='none'/%3E%3C/svg%3E");
    background-size: 90px 90px;
    color: #e0e0e0;
    padding: 25px 0 0;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Brand Column */
.footer-col-brand {}

.footer-brand-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.25);
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.4;
}

.footer-brand-name strong {
    font-size: 1.05rem;
    font-weight: 800;
}

.footer-brand-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 10px;
}

/* Link Columns */
.footer-col-links {}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

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

.footer-nav-links li {
    margin-bottom: 6px;
}

.footer-nav-links a {
    font-size: 0.85rem;
    color: #b8d4bf;
    opacity: 0.9;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-nav-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Products list with arrow bullets */
.footer-products-list li::before {
    content: '❯ ';
    color: var(--primary-yellow);
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 2px;
}

/* Contact Column */
.footer-col-contact {}

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

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #b8d4bf;
}

.footer-contact-list i {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: inherit;
}

.footer-contact-list a:hover {
    color: #fff;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
}

.footer-bottom-bar a {
    color: var(--primary-yellow);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}


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

/* Desktop & Large Screens */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .hero-main-title {
        font-size: 4.5rem;
    }
}

/* Tablet & Smaller Desktop (992px) */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero {
        height: 75vh;
        min-height: 550px;
        padding-bottom: 0;
        margin-top: -70px;
    }

    .hero-overlay-content {
        justify-content: center;
    }

    .hero-text-box {
        padding: 100px 20px 30px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-main-title {
        font-size: 3.5rem;
        line-height: 1;
    }

    .hero-sub-title {
        font-size: 1.5rem;
    }

    .hero-icons-row, .hero-btns {
        justify-content: center;
    }

    /* Grids */
    .strip-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Sections */
    .process-layout, .why-choose-layout {
        flex-direction: column;
        text-align: center;
    }

    .process-info, .why-choose-content, .why-choose-card-container {
        max-width: 100%;
        flex: unset;
        width: 100%;
    }

    .logo img {
        height: 45px !important;
    }

    header {
        padding: 10px 0;
    }


    .stat-item {
        flex: 0 0 50%;
        border-right: none;
        margin-bottom: 20px;
    }

    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.8rem;
    }

    .section-title h2, .cert-heading, .why-heading, .process-info .section-heading {
        font-size: 1.8rem;
    }

    .footer-grid-new {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-top, .footer-contact-list li {
        justify-content: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-visuals img {
        max-height: 300px;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-sub-title {
        font-size: 1.2rem;
    }

    .hero-icons-row span {
        font-size: 0.7rem;
        padding: 8px 12px;
    }

    .strip-container, .product-grid, .process-steps-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .nav-links {
        width: 100%;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .card-visuals {
        display: none;
    }
    
    .why-choose-card-container {
        padding: 0 20px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    width: 55px;
    height: 55px;
    bottom: 25px !important;
    right: 25px !important;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF !important;
}

.whatsapp-float i {
    margin-top: 1px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 26px;
    }
}