/* ============ COLOR VARIABLES ============ */
:root {
    --mango-yellow: #F5A623;
    --mango-orange: #E8860C;
    --dark-green: #006B3C;
    --bright-green: #00CC00;
    --gold: #C8A951;
    --light-yellow: #FFF8E1;
    --white: #FFFFFF;
    --dark-text: #333333;
    --light-text: #666666;
    --dark-bg: #1A1A1A;
    --green-bg: rgb(5, 85, 5);
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--green-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: var(--dark-green);
}

a:hover {
    color: var(--mango-orange);
}

ul {
    list-style: none;
}

/* ============ NAVBAR ============ */
.navbar {
    background-color: var(--bright-green);
    width: 100%;
}


.logo a {
    display: flex;
    flex-direction: column;
    padding: 8px 20px;
    color: var(--white);
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.logo span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}
/* logo left push */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center; /* ⭐ center everything */
    position: relative;
}

/* logo ko left pe fix karo */
.logo {
    position: absolute;
    left: 0;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box img {
    width: 45px;   /* size adjust kar sakti ho */
    height: 45px;
    object-fit: cover;
    border-radius: 50%; /* optional round logo */
}

.logo-text {
    display: flex;
    flex-direction: column;
}
/* nav links center me rahenge */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li a {
    display: block;
    color: var(--white);
    padding: 15px 22px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

.nav-links li a.active {
    background-color: var(--mango-orange);
    color: var(--white);
}
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}


/* ============ FOOTER ============ */
.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-box img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}

.footer-logo {
    margin: 0;
    font-size: 22px;
    color: #fff; /* ya jo tumhara footer color ho */
}

.footer {
    background-color: var(--dark-bg);
    color: #ccc;
    padding: 40px;
    border-top: 3px solid var(--mango-yellow);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Columns */
.footer-col {
    display: flex;
    flex-direction: column;   /* 👈 ye sab kuch vertical kar dega */
}
/* Logo */
.footer-logo {
    color: var(--mango-yellow);
    font-size: 22px;
    margin-bottom: 10px;
     color: var(--white);
}

/* Headings */
.footer-col h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Text */
.footer-col p {
    font-size: 14px;
    margin: 5px 0;
}
.footer-col .footer-links li a {
    color: #fff !important;
}

/* Links */
.footer-col a {
    display: block;   /* 👈 ye main fix hai */
    color: var(--white);
    font-size: 14px;
    margin: 6px 0;
    text-decoration: none;
}
.footer-col .footer-links li a:hover {
    color: var(--mango-yellow) !important;
}

/* Bottom space */
.footer-bottom-space {
    height: 40px;
    background-color: var(--green-bg);
}

/* ============ MAIN CONTENT ============ */
.main-content {
    flex: 1;
    padding: 30px 40px;
}
.content-card {
    background-color: var(--white);
    border-radius: 0 px;
    padding: 40px 50px;

    width: 100%;
    max-width: 1300px;

    margin: 0 auto; /* IMPORTANT: center */
    
    border-top: 3px solid var(--mango-yellow);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* ============ PRODUCTS SECTION ============ */

.section-title {
    text-align: center;
    margin-top: 40px;   /* 👈 upar se space */
    margin-bottom: 35px; /* 👈 neeche gap */
    font-size: 28px;
    color: var(--dark-green);
    position: relative;
}

/* optional stylish underline */
.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--mango-yellow);
    margin: 10px auto 0;
    border-radius: 5px;
}

/* Grid (4 per row) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--light-yellow);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;

 border: 1px solid #a09c9c; /* black/grey line */   box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Image */
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

/* Title */
.product-card h3 {
    margin: 10px 0;
    font-size: 16px;
}

/* Price */
.price {
    color: var(--dark-green);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Sale Badge */
.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 4px;
}

/* Button */
.order-btn {
    background: var(--bright-green);
    color: white;
    border: none;
    padding: 10px 20px; /* height normal rakho */
    border-radius: 5px;
    cursor: pointer;
    width: 250px; /* yahan width set karo */
}
.order-btn:hover {
    background: var(--dark-green);
     color: white;
}
.mango-info {
    margin-top: 30px;
    padding: 25px;
    background-color: #FFF8E1;
    border-left: 5px solid #F5A623;
    border-radius: 10px;

    text-align: center; /* 🔥 yeh main cheez hai */
}

.mango-info p strong {
    display: block;
    font-size: 28px;
    color: #006B3C;
    margin-bottom: 10px;
}

.mango-info p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.mango-info ul {
    padding-left: 20px;
}

.mango-info ul li {
    margin-bottom: 8px;
}
.image-center {
    text-align: center;
    margin-top: 20px;
}

.mango-image {
    display: block !important;
    margin: 20px auto !important;
}


.faq-section {
    margin-top: 30px;
    padding: 25px;
    background-color: #FFF8E1;
    border-radius: 10px;
    text-align: center;

    /* 🔥 Initial hidden state */
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;

    position: relative;
    overflow: hidden;
}

/* ✅ Jab scroll pe visible ho */
.faq-section.show {
    opacity: 1;
    transform: translateX(0);
}

/* 🔥 Animated golden line */
.faq-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #F5A623;

    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s ease;
}

/* ✅ Jab show ho to line grow kare */
.faq-section.show::before {
    transform: scaleY(1);
}
.faq-section h1{
    color: var(--dark-green);
    margin-bottom: 10px;
}

.faq-section p {
    margin-bottom: 20px;
}
.faq-btn {
    background: var(--bright-green);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 320px;
    font-size: 16px;
}

.faq-btn:hover {
    background: var(--dark-green);
}

/* Full Screen Modal */
.faq-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 999;
}

/* Content Box */
.faq-content {
    background: white;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

/* ===== ACCORDION STYLING (UPDATED) ===== */

.faq-container {
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

/* Question row */
.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: bold;
    color: var(--dark-green);
    font-size: 15px;
}

/* + / - icon */
.icon {
    font-size: 20px;
    font-weight: bold;
}

/* Answer hidden */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 14px;
    color: #333;
    margin-top: 0;
}

/* Open state */
.faq-item.active .faq-answer {
    max-height: 150px;
    margin-top: 10px;
}

/* Optional box style (if you still use old faq-box anywhere) */
.faq-box {
    margin-top: 15px;
    padding: 15px;
    background: #FFF8E1;
    border-radius: 8px;
}

/* ================= FULL SCREEN HERO ================= */

.intro-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* IMAGE FULL SCREEN */
.intro-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* DARK OVERLAY (SHADOW EFFECT) */
.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55); /* grey shadow */
    z-index: 1;
}

/* TEXT OVER IMAGE */
.intro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
}

/* TEXT STYLING */
.intro-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #eee;
}

.highlight {
    color: var(--mango-yellow);
    font-weight: bold;
}



/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .intro-text h2 {
        font-size: 28px;
    }

    .intro-text p {
        font-size: 14px;
    }
}

@media (max-width: 468px) {

    .intro-text {
        width: 90%;
    }

    .intro-text h2 {
        font-size: 22px;
    }

    .intro-text p {
        font-size: 13px;
    }

    .intro-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}


/* ================== TABLET (≤ 900px) ================== */
@media (max-width: 900px) {

  .content-card {
        padding: 30px 20px;
    }

    .main-content {
        padding: 20px;
    }

    .footer-inner {
        gap: 20px;
    }}

/* ================== MOBILE (≤ 768px) ================== */
@media (max-width: 768px) {

    .nav-container {
        justify-content: space-between;
        padding: 10px 15px;
    }

    .logo {
        position: static;
    }

    /* HAMBURGER SHOW */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: var(--bright-green);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 14px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

   .main-content {
        padding: 15px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }
}

/* ================== SMALL MOBILE (≤ 468px) ================== */
@media (max-width: 468px) {

    body {
        font-size: 14px;
    }

 .main-content {
        padding: 15px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .logo-box img {
        width: 35px;
        height: 35px;
    }

    .logo h1 {
        font-size: 16px;
    }

    .logo span {
        font-size: 9px;
    }


    .footer {
        padding: 20px 10px;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 13px;
    }
}/* ================== PRODUCTS RESPONSIVE ================== */

/* TABLET */
@media (max-width: 900px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card {
        padding: 12px;
    }

    .product-card img {
        height: 200px;
    }

    .order-btn {
        width: 100%;
    }
}


/* MOBILE */
@media (max-width: 768px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* ⭐ 2 products in one row */
        gap: 15px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card img {
        height: 160px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .price {
        font-size: 14px;
    }

    .order-btn {
        width: 100%;
        padding: 10px;
        font-size: 13px;
    }

    .sale-badge {
        font-size: 11px;
        padding: 4px 7px;
    }
}


/* SMALL MOBILE */
@media (max-width: 468px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* ⭐ still 2 in row */
        gap: 10px;
    }

    .product-card {
        padding: 8px;
        border-radius: 8px;
    }

    .product-card img {
        height: 130px;
    }

    .product-card h3 {
        font-size: 12px;
    }

    .price {
        font-size: 12px;
    }

    .sale-badge {
        font-size: 9px;
        padding: 3px 5px;
    }

    .order-btn {
        width: 100%;
        padding: 8px;
        font-size: 11px;
    }
}/* ================== EXTRA SMALL MOBILE (≤ 468px) ================== */
@media (max-width: 468px) {

    /* PRODUCTS GRID */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* PRODUCT CARD */
    .product-card {
        padding: 8px;
        border-radius: 8px;
    }

    /* PRODUCT IMAGE */
    .product-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 6px;
    }

    /* PRODUCT TITLE */
    .product-card h3 {
        font-size: 12px;
        margin: 8px 0;
        line-height: 1.4;
    }

    /* PRICE */
    .price {
        font-size: 12px;
        margin-bottom: 8px;
    }

    /* SALE BADGE */
    .sale-badge {
        top: 8px;
        left: 8px;
        font-size: 9px;
        padding: 3px 5px;
    }

    /* BUTTON */
    .order-btn {
        width: 100%;
        padding: 8px;
        font-size: 11px;
        border-radius: 5px;
    }
}
/* ================== MANGO IMAGE RESPONSIVE ================== */

@media (max-width: 768px) {

    .mango-image {
        width: 100%;
        max-width: 100%;
        height: auto;

        display: block;
        margin: 15px auto;

        object-fit: contain;
    }
}


/* EXTRA SMALL MOBILE */
@media (max-width: 468px) {

    .mango-image {
        width: 100%;
        max-width: 100%;
        height: auto;

        margin: 10px auto;
        border-radius: 8px;
    }
}
/* ============ TOP SCROLL BAR ============ */

.top-scroll-bar{
    width:100%;
    background:#111;
    color:white;
    overflow:hidden;
    white-space:nowrap;
    padding:10px 0;
    border-bottom:2px solid var(--mango-yellow);
    position:relative;
}

/* MOVING TEXT */
.scroll-text{
    display:inline-flex;
    align-items:center;
    gap:80px; /* ⭐ text ke darmiyan space */
    
    animation:scrollLoop 18s linear infinite;
}

/* TEXT STYLE */
.scroll-text span{
    font-size:14px;
    font-weight:bold;
    color:white;
}

/* SMOOTH INFINITE LOOP */
@keyframes scrollLoop{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* MOBILE */
@media(max-width:768px){

    .top-scroll-bar{
        padding:8px 0;
    }

    .scroll-text{
        gap:50px;
    }

    .scroll-text span{
        font-size:12px;
    }
}