
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BODY */
body {
    background: linear-gradient(
        to bottom,
        #f0f5f2,
        #e8efe9
    );
    color: #2e2e2e;
}




/* NAVIGATION BAR */
nav {
    background: linear-gradient(90deg, #2e7d32, #388e3c);
    padding: 14px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color:white;
    text-decoration: none;
    margin: 0 18px;
    font-weight: bold;
    font-size: 16px;
}

nav a:hover {
    color: #fbc02d;
}


/* MAIN CONTAINER */
.container {
    max-width: 900px;
    margin: 40px auto;
    background: #eef5fb;
    padding: 35px;
    border-radius: 14px;

    /* 3D EFFECT */
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);

    transform: translateZ(0);
}



/* BANNER IMAGE */
.banner {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 35px;
    border-radius: 14px;

    /* 3D DEPTH */
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);

    transform: perspective(800px) translateZ(20px);
}

.container h1 {
    padding-top: 10px;
}



/* HEADINGS */
h1 {
    color: #2e7d32;
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

h2 {
    color: #2e7d32;
    font-size: 26px;
    margin-top: 40px;
    border-left: 5px solid #fbc02d;
    padding-left: 10px;
}


/* TEXT */
p {
    font-size: 16px;
    line-height: 1.8;
    color: #2f2f2f;
}


/* LIST */
ul {
    margin-left: 20px;
    margin-top: 10px;
}

ul li {
    margin-bottom: 8px;
    padding-left: 5px;
}


/* MAP */
iframe {
    width: 100%;
    height: 350px;
    border: 0;
    margin-top: 20px;
    border-radius: 8px;
}

/* FOOTER (OPTIONAL) */
footer {
    background: #2e7d32;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 30px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #4F6F73; /* muted teal-grey */
    padding: 14px 22px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    color: #087381;   /* soft light grey */
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.nav-links a {
    color: #0d6863;   /* clean off-white */
    text-decoration: none;
    margin-left: 18px;
    font-weight: 500;
    font-size: 15px;
}


.nav-links a:hover {
    color: #8FBFD9; /* lighter blue on hover */
}


.nav-links a:hover {
    color: #6BAACE; /* deeper blue on hover */
}

.nav-links a:hover {
    color: #C2D0C8; /* light accent on hover */
}

.nav-links a:hover {
    color: #d4e1e8; /* very soft light grey-blue */
}


.nav-links a:hover {
    color: #ffe08a; /* very soft yellow on hover */
}

.nav-links a:hover {
    color: #fbc02d;
}

/* Mobile navbar */
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 8px;
    }

    .nav-links a {
        margin: 0 10px;
    }
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25d366, #1ebc57);
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.35);

    transform: perspective(500px) translateZ(30px);
}

.whatsapp-btn:hover {
    background-color: #1ebc57;
}
footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 15px 10px;
    margin-top: 40px;
    font-size: 14px;
}

footer p {
    margin: 0;
    line-height: 1.6;
}
.container p,
.container li {
    color: #2f2f2f;
}
.banner {
    margin-bottom: 30px;
}
h2 {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
    padding: 14px 18px;
    border-radius: 12px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);

    margin-top: 45px;
    color: #2e7d32;
}

.container:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background: linear-gradient(
        145deg,
        #ffffff,
        #f6f9f6
    );
    border-radius: 20px;
    padding: 20px;
    text-align: center;

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.14);

    transition: all 0.35s ease;
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;

    background: linear-gradient(
        to bottom,
        #ffffff,
        #f4f7f3
    );

    padding: 14px;
    border-radius: 16px;

    box-shadow:
        inset 0 0 6px rgba(0,0,0,0.04),
        0 8px 18px rgba(0,0,0,0.18);
}


.product-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.26);
}

html {
    scroll-behavior: smooth;
}
.container {
    animation: fadeUp 0.8s ease-in-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    margin-top: 25px;
}

.product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 22px;
    border-radius: 16px;
    text-align: center;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.18);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card h3 {
    margin: 10px 0 6px;
    color: #2e7d32;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.28);
}
html {
    scroll-behavior: smooth;
}
.container {
    animation: fadeUp 0.8s ease-in-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    margin-top: 30px;
}

/* Product Card */
.product-card {
    background: linear-gradient(
        145deg,
        #ffffff,
        #f3f8f4
    );
    border-radius: 18px;
    padding: 18px;
    text-align: center;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.product-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Product Image */
.product-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;

    background: linear-gradient(
        to bottom,
        #ffffff,
        #f1f5f2
    );

    padding: 12px;
    border-radius: 14px;

    box-shadow:
        inset 0 0 8px rgba(0,0,0,0.05),
        0 8px 20px rgba(0,0,0,0.18);
}


/* Hover 3D Effect */
.product-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25);
}


.product-card h3 {
    margin: 12px 0 6px;
    color: #2e7d32;
}

.product-card p {
    font-size: 14px;
}

/* Highlight ACTOP */
.product-card.highlight {
    border: 2px solid #fbc02d;
    background: rgba(255, 255, 255, 0.95);
}
.section-title {
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2e7d32;
    font-size: 20px;
}
/* FORCE NAVBAR TEXT COLORS */

.navbar .nav-logo {
    color: #E8ECEC !important;   /* Ayush Khad Beej Bhandar */
    font-size: 20px !important;
    font-weight: 600 !important;
}

.navbar .nav-links a {
    color: #F6F8F8 !important;   /* Home, About, Products, Contact */
    font-weight: 500 !important;
}

.navbar .nav-links a:hover {
    color: #D0E2DE !important;   /* hover colour */
}
/* ===== FORCE NAVBAR FONT COLORS (FINAL FIX) ===== */

nav.navbar .nav-logo {
    color: #E3E8E7 !important;   /* Ayush Khad Beej Bhandar */
    font-size: 20px !important;
    font-weight: 600 !important;
}

nav.navbar .nav-links a {
    color: #F2F4F4 !important;   /* Home, About, Products, Contact */
    font-weight: 500 !important;
}

nav.navbar .nav-links a:hover {
    color: #CFE0DC !important;   /* hover effect */
}
/* NAVBAR FONT COLOR FIX */
.navbar .nav-logo,
.navbar .nav-links a {
    color: #FFD84D !important;
}
/* ===== NAVBAR SAFE STYLING ===== */

/* 2️⃣ Navbar background (soft & clean) */
.navbar {
    background-color: #5f737a;   /* soft grey-blue */
}

/* 1️⃣ Menu text color */
.nav-links a {
    color: #f5f5f5;              /* off-white */
}

/* 3️⃣ Hover effect */
.nav-links a:hover {
    color: #ffd54f;              /* soft yellow on hover */
}
/* Section Headings - Mobile Friendly */
.section-title {
    font-size: 22px;
    text-align: center;
    padding: 12px 10px;
    margin: 35px 0 20px;

    background: #eef3f1;
    color: #2f5f5b;

    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Mobile tap effect */
.product-card:active {
    transform: translateY(-8px) scale(1.03);
}
/* Scroll animation base */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.product-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.product-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* Section Title – Darker + Full Width Box */
.section-title {
    width: 100%;
    background: linear-gradient(
        to right,
        #cfded9,
        #e6efec
    );

    padding: 16px 18px;
    margin: 45px 0 25px;

    border-radius: 12px;

    color: #2f5f5b;
    font-size: 21px;
    font-weight: 600;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 10px;
}

.product-card h3 {
    margin: 12px 0 6px;
    font-size: 17px;
    color: #2f5f5b;
}

.product-card p {
    font-size: 14px;
    color: #555;
}

/* Desktop hover */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}

/* Mobile tap feel */
@media (max-width: 768px) {
    .product-card:active {
        transform: scale(0.97);
    }
}
/* ===== NAVBAR COLOR UPDATE ===== */

.navbar {
    background-color: #546E7A;
}

.navbar .nav-logo {
    color: #F3F6F7;
}

.navbar .nav-links a {
    color: #F3F6F7;
}

.navbar .nav-links a:hover {
    color: #FFD54F;
}
/* ===== PRODUCT SECTION COLORS ===== */

.section-title {
    padding: 14px 18px;
    margin: 40px 0 22px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1f2d2b;
}

/* 🌾 Fertilizers */
.section-title.fertilizer {
    background: linear-gradient(to right, #d9f2e6, #ecf9f2);
    border-left: 6px solid #2e8b57;
}

/* 🌿 Herbicide */
.section-title.herbicide {
    background: linear-gradient(to right, #dbe9f6, #eef5fb);
    border-left: 6px solid #2f6fa3;
}

/* 🐛 Insecticide */
.section-title.insecticide {
    background: linear-gradient(to right, #ffe5cc, #fff2e6);
    border-left: 6px solid #e67e22;
}

/* 🌱 Others */
.section-title.others {
    background: linear-gradient(to right, #ede7f6, #f6f3fb);
    border-left: 6px solid #6a5acd;
}
/* ===== PRODUCT SECTION – DARKER + FULL WIDTH ===== */

.section-title {
    width: 100%;
    padding: 18px 20px;
    margin: 45px 0 25px;
    border-radius: 14px;
    font-size: 21px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* 🌾 Fertilizers – Darker Green */
.section-title.fertilizer {
    background: linear-gradient(to right, #bfe3d0, #e0f3ea);
    color: #1f4f3d;
    border-left: 8px solid #2e8b57;
}

/* 🌿 Herbicide – Darker Blue */
.section-title.herbicide {
    background: linear-gradient(to right, #c7dbf2, #e6f0fb);
    color: #1f3f66;
    border-left: 8px solid #2f6fa3;
}

/* 🐛 Insecticide – Darker Orange */
.section-title.insecticide {
    background: linear-gradient(to right, #ffd2a6, #ffead6);
    color: #7a3e00;
    border-left: 8px solid #e67e22;
}

/* 🌱 Others – Darker Purple/Grey */
.section-title.others {
    background: linear-gradient(to right, #d6cdf0, #eeeaf9);
    color: #3f2f6d;
    border-left: 8px solid #6a5acd;
}
/* ===== PRODUCT HOVER ANIMATION ===== */

.product-card {
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Desktop hover effect */
.product-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Image zoom on hover */
.product-card img {
    transition: transform 0.35s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Mobile tap effect */
@media (max-width: 768px) {
    .product-card:active {
        transform: scale(0.97);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
}
/* ===== PRODUCT BOUNCE EFFECT ===== */

.product-card {
    transition: box-shadow 0.3s ease;
}

/* Bounce animation keyframes */
@keyframes bounceUp {
    0% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-16px) scale(1.04);
    }
    65% {
        transform: translateY(-10px) scale(1.03);
    }
    100% {
        transform: translateY(-12px) scale(1.04);
    }
}

/* Desktop hover bounce */
.product-card:hover {
    animation: bounceUp 0.45s ease-out forwards;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

/* Image zoom during bounce */
.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Mobile tap bounce */
@media (max-width: 768px) {
    .product-card:active {
        animation: bounceUp 0.35s ease-out forwards;
        box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
    }
}
/* Product Search Box */
.product-search {
    margin: 20px 0 30px;
    text-align: center;
}

.product-search input {
    width: 90%;
    max-width: 420px;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
}

.product-search input:focus {
    border-color: #2f6fa3;
}
/* ===== NAVBAR SEARCH + YELLOW MENU ===== */

.nav-links a {
    color: #FFD84D;
    margin-right: 14px;
    font-weight: 600;
}

/* Search box in navbar */
.nav-links input {
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
    width: 160px;
}

/* Placeholder color */
.nav-links input::placeholder {
    color: #555;
}

/* Hover effect */
.nav-links a:hover {
    color: #FFE88A;
}
/* ===== ABOUT & PRODUCTS SECTION COLORS ===== */

/* About Us */
.section-title.about-section {
    background: linear-gradient(to right, #eef6f3, #f8fbfa);
    color: #2e7d32;
    border-left: 6px solid #66bb6a;
}

/* Products */
.section-title.product-section {
    background: linear-gradient(to right, #f3f7ff, #fbfdff);
    color: #1f3f66;
    border-left: 6px solid #5c7cfa;
}
/* ===== FIX ABOUT & PRODUCT HEADING ===== */

/* Common fix */
.about-section,
.product-section {
    margin: 25px 0 12px !important;
    padding: 12px 16px !important;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* हमारे बारे में – soft green (fertilizer se different) */
.about-section {
    background: linear-gradient(to right, #d9efe2, #eef8f3);
    color: #1f4f3d;
    border-left: 6px solid #2e8b57;
}

/* हमारे उत्पाद – soft blue (herbicide se different) */
.product-section {
    background: linear-gradient(to right, #dbe9f6, #eef5fb);
    color: #1f3f66;
    border-left: 6px solid #2f6fa3;
}
/* ===== SIMPLE COLOR FILL FOR ABOUT & PRODUCTS ===== */

/* हमारे बारे में */
h2:not(#products) {
    background: linear-gradient(to right, #e6f4ea, #f3fbf6);
    padding: 12px 16px;
    border-left: 6px solid #2e7d32;
    border-radius: 10px;
    margin: 25px 0 15px;
}

/* हमारे उत्पाद */
h2#products {
    background: linear-gradient(to right, #e3effc, #f2f7fd);
    padding: 12px 16px;
    border-left: 6px solid #1e5aa8;
    border-radius: 10px;
    margin: 30px 0 20px;
}

