/* =====================================================
   1. RESET & BASE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
     color: #333;
}
/* =============================
   COMMON HOME PAGE WRAPPER
============================= */
/* Push content below fixed header */
.main-content {
    padding-top:50px;
}

.home-page-wrapper {
     background:
        linear-gradient(
            135deg,
            rgba(247, 248, 250, 0.95),
            rgba(236, 239, 243, 0.95)
        );
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;         /* prevent unwanted horizontal scroll */
  
}

/* keep sections visually separated */
.home-page-wrapper section {
    padding: 20px 0;
}

/* carousel should stay edge-to-edge */
.home-page-wrapper .carousel {
    margin-bottom: 10px;
}


/* =====================================================
   2. COMMON CONTAINER
===================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =====================================================
   3. FIXED HEADER
===================================================== */
.home-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #202122;
    z-index: 1000;
}

.home-header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}
.logo-big {
    height: 44px;
    opacity: 1;
    transform: scale(1) translateX(0);
}

.home-nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 15px;
}

/* =====================================================
   4. HERO / CAROUSEL
===================================================== */
.hero {
    margin-top: 70px;          
}

.carousel {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-track img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
}


/* =====================================================
   ABOUT – ENGLISH + HINDI CARD LAYOUT
===================================================== */

.about-dual-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 10px !important;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.about-lang-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-lang-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.about-lang-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2e7d32;
}

.about-lang-card p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 12px;
}

/* Hindi card subtle accent */
.about-lang-card.hindi {
    background: linear-gradient(135deg, #f8fafc, #eef7f1);
    border-left: 6px solid #2e7d32;
}

/* Responsive */
@media (max-width: 768px) {
    .about-dual-cards {
        grid-template-columns: 1fr;
    }

    .about-lang-card {
        text-align: center;
    }
}
/* =====================================================
   GLOBAL CARD HOVER EFFECT (PRODUCTION STANDARD)
===================================================== */

.card-hover {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}


/* =====================================================
   6. PRODUCTS SECTION
===================================================== */
.products {
    padding: 60px 0;
     /* background: transparent; */
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-body {
    padding: 15px;
}

.product-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-body p {
    font-size: 14px;
    color: #555;
}

/* =====================================================
   7. FOOTER
===================================================== */
.home-footer {
    background: #080b13;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 0px;
    font-size: 14px;
}

/* =====================================================
   8. RESPONSIVE
===================================================== */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .home-nav a {
        margin-left: 12px;
        font-size: 14px;
    }
}
/* =====================================================
   ABOUT – ADVANCED STYLING
===================================================== */
/* =====================================================
   5. ABOUT SECTION
===================================================== */
.about {
    padding: 60px 0;
    text-align: center;
}

.about p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    color: #555;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.about h3 {
    margin-top: 40px;
    font-size: 24px;
    text-align: center;
}

.about-text {
    max-width: 900px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.about-divider {
    margin: 40px auto;
    width: 80px;
    border-top: 3px solid #2e7d32;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.about-card {
    background: #f9fafb;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.about-card h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.about-card ul {
    padding-left: 18px;
}

.about-card ul li {
    margin-bottom: 8px;
}

.about-card.highlight {
    background: #2e7d32;
    color: #fff;
    text-align: center;
}

.tagline {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

/* USAGE */
.usage {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
   
}

.usage ul {
    padding-left: 18px;
}
/* =====================================================
   USAGE & STORAGE – CARD STYLE
===================================================== */
.usage {
    margin-top: 50px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

.usage-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,.1);
}

.usage-card h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #2e7d32;
    padding-bottom: 8px;
}

.usage-card ul {
    padding-left: 18px;
}

.usage-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.usage-card.warning {
    border-left: 5px solid #f59e0b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .usage-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   COMPANY INFO SECTION (ABOVE FOOTER)
===================================================== */
/* .company-info {
    background: #111827;
    color: #e5e7eb;
    padding: 60px 20px 40px;
} */
/* ================= COMPANY INFO ================= */
.company-info {
    background: #111827;
    color: #e5e7eb;
    padding: 40px 0 30px;   /* REDUCED bottom padding */
    margin-bottom: 0;      /* IMPORTANT */
}


.company-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.company-block h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.company-block h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
}

.company-full-form {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.company-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #d1d5db;
}

.tagline {
    margin-top: 10px;
    font-style: italic;
    color: #22c55e;
}

/* CONTACT LIST */
.company-contact {
    list-style: none;
    padding: 0;
}

.company-contact li {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.company-contact i {
    color: #22c55e;
    margin-right: 8px;
}

.company-contact a {
    color: #e5e7eb;
    text-decoration: none;
}

.company-contact a:hover {
    text-decoration: underline;
}

/* SOCIAL ICONS */
.company-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.company-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.company-social a:hover {
    background: #22c55e;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .company-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .company-social {
        justify-content: center;
    }
}
/* ================= MAP ================= */
.company-map iframe {
    width: 100%;
    height: 220px;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
}
/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 1200;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* =================================================== */
            /* product model css */
/* ==================================================== */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: rgba(255,255,255,0.95);
    width: 90%;
    max-width: 420px;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    animation: zoomIn .3s ease;
}

.modal-content img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.modal-actions .btn {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}
.modal-close {
    position: absolute;
    top: 3px;
    right: 6px;

    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    font-size: 15px;
    font-weight: bold;

    color: #dc2626;             
    border-radius: 50%;

    background: transparent;
    transition: 
        background-color 0.25s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

/* Hover Effect */
.modal-close:hover {
    background-color: rgba(245, 158, 11, 0.18); /* soft amber */
    box-shadow: 0 0 1px 1px rgba(245, 158, 11, 0.15);
}

/* Click / Press Effect */
.modal-close:active {
    transform: scale(0.88);
    background-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2) inset;
}
/* ===================================================
   COMMON FORM INPUT STYLE (LOGIN / REGISTER MODAL)
==================================================== */

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.modal-content input {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    outline: none;
    transition: all 0.25s ease;
    background: #ffffff;
}

.modal-content input::placeholder {
    color: #9ca3af;
}

.modal-content input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

/* LOGIN BUTTON */
.modal-content button[type="submit"] {
    margin-top: 10px;
    padding: 11px;
    background: #22c55e;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content button[type="submit"]:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

/* ERROR MESSAGE */
#msg {
    margin-top: 8px;
    font-size: 13px;
    color: #dc2626;
}

/* ================= TOOLTIP ================= */
.tooltip1 {
    position: relative;
}

/* Tooltip text */
.tooltip1::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);

    background: #111827;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

/* Tooltip arrow */
.tooltip1::before {
    content: "";
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%);

    border-width: 6px;
    border-style: solid;
    border-color: #111827 transparent transparent transparent;

    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Show on hover */
.tooltip1:hover::after,
.tooltip1:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.wish.tooltip1::after { background: #dc2626; }
.cart.tooltip1::after { background: #e442c1; }
.buy.tooltip1::after  { background: #16a34a; }

.wish.tooltip1::before { border-top-color: #dc2626; }
.cart.tooltip1::before { border-top-color: #e442c1; }
.buy.tooltip1::before  { border-top-color: #16a34a; }

.home-nav {
    display: flex;
    align-items: center;
}
.home-nav a,
.home-nav form {
    margin-left: 20px;
}

    .sidebar-link-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    padding: 0;
}
.sidebar-link-btn:hover {
    text-decoration: underline;
}






