:root {
    /* Colors - Organic Red Theme */
    --primary-color: #C62828;
    --primary-dark: #B71C1C;
    --secondary-color: #2E7D32;
    --dark-bg: #2C3E50;
    --light-bg: #FFF8E1;
    --gray-100: #ecf0f1;
    --gray-200: #bdc3c7;
    --gray-800: #34495e;
    --text-main: #3E2723;
    --text-light: #5D4037;
    --white: #ffffff;

    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #FFF8E1 0%, #FFEBEE 100%);
    --accent-gradient: linear-gradient(135deg, var(--primary-color) 0%, #EF5350 100%);
    --card-gradient: linear-gradient(145deg, #ffffff, #FDFBF7);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-width: 1200px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Language Toggle */
.lang-hi {
    display: none;
}

body.show-hindi .lang-en {
    display: none;
}

body.show-hindi .lang-hi {
    display: unset;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--dark-bg);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.lang-btn:hover {
    background: var(--dark-bg);
    color: var(--white);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--white);
    /* White border for dark bg */
    color: var(--white);
    /* White text */
    font-weight: 600;
    border-radius: 50px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
}

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

.btn-green:hover {
    background: #1B5E20;
    /* Darker green */
    transform: translateY(-2px);
}

.hero-btns .btn-whatsapp {
    border: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary-color);
}

.logo i {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--gray-800);
}

.nav-links .btn-primary {
    color: var(--white);
}

.nav-links a:hover {
    color: var(--primary-dark);
}

/* Specific fix for contact button hover */
.nav-links .btn-primary:hover {
    color: var(--white);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    /* Ensure space at bottom */
    min-height: 90vh;
    /* More height */
    display: flex;
    align-items: center;
    /* Parallax Background with Overlay */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('assets/hero imagex.png') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 900px;
    /* Limit width for readability */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* --- Hero Refinements --- */

.hero-text h1 {
    font-size: 3.5rem;
    /* Slightly smaller base to fit 2 lines better */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}


.badge {
    background: rgba(0, 0, 0, 0.6);
    /* Premium dark glass */
    color: #FDD835;
    /* Gold text */
    border: 1px solid rgba(253, 216, 53, 0.4);
    /* Elegant gold border */
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
    letter-spacing: 2px;
    /* Adding spacing makes it look expensive */
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.highlight-text {
    color: #ffd700;
    /* Gold/Yellow for high contrast on dark bg */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hero-text p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 800px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-text p b {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-underline-offset: 4px;
}

/* Hero Features (Icons) */
.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
}

.feature-item i {
    color: #4CAF50;
    /* Green icon */
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text>* {
    opacity: 0;
    /* Initially hidden */
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text .badge {
    animation-delay: 0.2s;
}

.hero-text h1 {
    animation-delay: 0.4s;
}

.hero-text p {
    animation-delay: 0.6s;
}

.hero-text .hero-features {
    animation-delay: 0.8s;
}

.hero-text .hero-btns {
    animation-delay: 1s;
}


/* Floating WhatsApp Button (FAB) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    /* remove hover line */
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
    color: #FFF;
    /* ensure icon stays white */
}

.whatsapp-float i {
    line-height: 60px;
}


.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .hero {
        background-attachment: scroll;
        /* Disable parallax on mobile */
    }

    .hero-text h1 {
        font-size: 2.2rem;
        /* Adjusted for mobile */
    }

    .hero-features {
        gap: 0.8rem;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Generic Sections */

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .subtitle {
    display: block;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.6s ease-out;
    /* Match animation timing */
    border: none;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover transition reset after reveal */
.product-card.visible:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.product-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Stronger, taller gradient for better text readability */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
    padding: 5rem 1.5rem 1.5rem;
    color: var(--white);
    transform: translateY(0);
    z-index: 5;
    pointer-events: auto;
}

.helper-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.8rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.helper-text:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.card-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.card-content p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.card-link {
    display: none;
}



/* Location Section */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.location-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s ease;
}

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

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-card .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(198, 40, 40, 0.15);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
    position: relative;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.location-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    /* Slightly reduced gap for "little left" feel */
    align-items: center;
}

.location-btns .btn-secondary {
    border-color: var(--dark-bg);
    color: var(--dark-bg);
}

.location-btns .btn-secondary:hover {
    background: var(--dark-bg);
    color: var(--white);
}

.contact-actions {
    display: flex;
    gap: 0.8rem;
    margin: 0.8rem 0;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary.map-link-secondary {
    margin-left: 0.5rem;
}

.location-map {
    border: 0;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gray-200);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-200);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
}

.footer-addr {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    color: var(--gray-200);
}

.footer-addr i {
    margin-top: 0.2rem;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-phones p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    color: var(--gray-200);
    white-space: nowrap;
    flex-wrap: nowrap;
}

.footer-phones p a {
    flex-shrink: 0;
}


.footer-contact a {
    color: var(--gray-100);
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}


/* --- Mobile & Tablet Overrides --- */

/* Unified Mobile Styles (max-width: 900px covers tablets & mobile) */
@media (max-width: 900px) {

    /* Navbar Optimizations */
    .navbar {
        padding: 0.5rem 0;
        /* Minimized padding */
    }

    .logo {
        font-size: 1.1rem;
        /* Compact logo */
        max-width: 70%;
        /* Prevent overlap with hamburger */
        line-height: 1.2;
    }

    .nav-links {
        display: none;
        /* Hide desktop links */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .mobile-toggle {
        display: block;
        color: var(--dark-bg);
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Hero Layout - Centered & Stacked */
    .hero {
        padding-top: 6rem;
        min-height: 60vh;
        /* Adjust height for mobile */
        padding-bottom: 3rem;
    }

    .hero-content {
        /* Already centered from main styles, just ensuring width */
        width: 100%;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        /* Slightly larger for impact */
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        /* Full width buttons on mobile */
        justify-content: center;
    }

    /* Footer & General */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-contact p,
    .footer-addr,
    .footer-phones p {
        justify-content: center;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 300px;
    }
}

/* Extra Small Screens (max-width: 480px) */
@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
        /* Even smaller for very small phones */
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }
}