:root {
    --base-font-size: 35.15625%;
}

html {
    font-size: var(--base-font-size); /* 1rem = 10px */
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Google Translate Element Styling */
#google_translate_element {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    z-index: 99999;
}

/* Ensure body doesn't get pushed down by google translate bar */
body {
    top: 0 !important;
}

/* Hide the Google Translate toolbar */
.skiptranslate iframe {
    display: none !important;
}

/* Header and Navigation */
header {
    background-color: #cf4104;
    box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: static;
    padding: 0 2rem;
}

.logo {
    margin-left: 2cm;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    z-index: 2;
    position: static;
    left: auto;
    top: auto;
    transform: none;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.nav-links li {
    position: relative;
    margin-left: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 2.4rem;
    transition: color 0.3s ease;
    padding: 1rem 0;
    display: block;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #f0f0f0;
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #cf4104;
    min-width: 30rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: all 0.3s ease;
    padding: 1rem 0;
    z-index: 1000;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    margin: 0;
    padding: 0;
}

.dropdown a {
    padding: 1.2rem 2rem;
    font-size: 2rem;
    color: #fff;
}

.dropdown a:hover {
    background: #a05252;
    color: #fff;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    position: relative;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 100001;
}

@media (max-width: 768px) {
    #google_translate_element {
        display: block;
        position: absolute;
        top: 50%;
        left: 1.2rem;
        right: auto;
        transform: translateY(-50%) scale(0.8);
        transform-origin: center left;
        background: rgba(255, 255, 255, 0.95);
        padding: 0.4rem 0.6rem;
        border-radius: 0.8rem;
        max-width: 12rem;
        overflow: hidden;
    }

    #google_translate_element .goog-te-combo {
        font-size: 1.5rem;
        max-width: 12rem;
    }

    header nav {
        justify-content: center;
        position: relative;
        padding: 0 1.6rem;
    }

    .logo {
        margin-left: 0;
    }

    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 1.6rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 80%;
        max-width: 40rem;
        height: 100vh;
        background: #cf4104;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: none;
        transition: right 0.4s ease;
        box-shadow: -0.5rem 0 2rem rgba(0,0,0,0.2);
        pointer-events: none;
    }

    .nav-links.show {
        right: 0;
        pointer-events: auto;
    }

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

    .nav-links li {
        margin: 2rem 0;
    }

    .nav-links a {
        font-size: 2.5rem;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
        min-width: 100%;
        display: none;
    }

    .nav-links li.active .dropdown {
        display: block;
    }
    
    .logo img {
        height: 8rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 80rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #219a52;
}

/* Products Section */
.products {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-0.5rem);
}

.product-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

.product-card p {
    padding: 0 1rem 1rem;
    color: #666;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 5rem 1rem;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-us-heading {
    font-size: 4.8rem;
    font-weight: bold;
    color: #800020;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.1rem;
}

.about-us-paragraph {
    max-width: 90rem;
    margin: 0 auto;
    font-size: 2.8rem;
    color: #222;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.05rem;
    padding: 0 2rem;
}

/* About Us Banner */
.about-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/about-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 8rem; /* Space for fixed header */
}

.about-banner-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.about-banner-content p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Welcome Section */
.welcome-section {
    padding: 8rem 1rem;
    background: #fff;
}

.welcome-container {
    max-width: 140rem;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: stretch;
}

.welcome-image {
    flex: 0 0 350px;
    width: 350px;
    min-width: 350px;
    display: flex;
}

.welcome-image img {
    width: 350px;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 0.8rem 3rem rgba(0,0,0,0.1);
}

.welcome-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-content h2 {
    font-size: 3.8rem;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.welcome-content p {
    font-size: 2.6rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.welcome-content p strong {
    display: block;
    font-size: 2.6rem;
    color: #222;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-vision-item {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 1.2rem;
    box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.05);
    text-align: center;
}

.mission-vision-icon {
    font-size: 5rem;
    color: #800020;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-vision-item h3 {
    font-size: 3.8rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.mission-vision-item p {
    font-size: 2.6rem;
    line-height: 1.7;
    color: #666;
}

/* Our Values Section */
.values-section {
    background: #f8f8f8;
    padding: 8rem 1rem;
    text-align: center;
}

.values-logo {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    margin-bottom: 2rem;
}

.values-heading {
    font-size: 3.2rem;
    color: #333;
    margin-bottom: 5rem;
    font-weight: 700;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto 5rem auto;
}

.values-item {
    background: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.08);
    text-align: center;
}

.values-icon {
    font-size: 5rem;
    color: #800020;
    margin-bottom: 1.5rem;
    display: block;
}

.values-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.values-item p {
    font-size: 2.4rem;
    line-height: 1.7;
    color: #666;
}

.values-final-paragraph {
    max-width: 90rem;
    margin: 0 auto 3rem auto;
    font-size: 2.8rem;
    line-height: 1.8;
    color: #444;
}

.values-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: #27ae60;
}

.values-cta a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.values-cta a:hover {
    color: #219a52;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
}

#contact-form textarea {
    height: 15rem;
    resize: vertical;
}

.submit-button {
    padding: 1rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #219a52;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 2rem;
    font-size: 5.6rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 2rem;
    font-size: 4.0rem;
    line-height: 1.6;
}

.footer-section p {
    font-size: 4.0rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 0.1rem solid rgba(255,255,255,0.1);
    font-size: 3.6rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 6rem; /* Space for fixed header */
    margin-bottom: 8rem; /* Consistent spacing */
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    will-change: transform;
}

.slide.active img {
    animation: kenBurnsSmooth 8s ease-in-out forwards;
}

@keyframes kenBurnsSmooth {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -1%); }
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-button.prev {
    left: 1rem;
}

.slider-button.next {
    right: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: white;
}

/* Slider Text Overlays */
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    opacity: 0;
}

.slide.active .slide-text {
    animation: slideTextFadeIn 1s ease-in-out forwards;
    animation-delay: 0.2s;
    opacity: 1;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
    padding: 2rem 4rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.slide.active .slide-title {
    animation: titleSlideIn 1.2s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Corner positioning for slides 1-4 */


/* Special animation for the 5th slide (Bhoomi Global Exports) */
.slide-title.special-animation {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(0, 0, 0, 0.9));
    border: 3px solid #8B4513;
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.6);
    animation: specialTitleAnimation 2s ease-out forwards;
    animation-delay: 0.8s;
    position: relative;
    overflow: hidden;
}

.slide-title.special-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.slide-title.special-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.3), transparent);
    animation: borderGlow 2s ease-in-out infinite alternate;
}

@keyframes slideTextFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes cornerTextFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cornerTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    30% {
        opacity: 0.2;
        transform: translateX(-35px);
    }
    60% {
        opacity: 0.6;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes specialTitleAnimation {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: blur(5px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes borderGlow {
    0% {
        box-shadow: 0 0 20px rgba(139, 69, 19, 0.4);
    }
    100% {
        box-shadow: 0 0 40px rgba(139, 69, 19, 0.8), 0 0 60px rgba(0, 0, 0, 0.6);
    }
}

/* Responsive adjustments for slider text */
@media (max-width: 768px) {
    .slide-title {
        font-size: 3rem;
        padding: 1.5rem 2rem;
    }
    

    
    .slide-title.special-animation {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2.2rem;
        padding: 1rem 1.5rem;
    }
    

    

    
    .slide-title.special-animation {
        font-size: 2rem;
    }
}

/* Centered Logo and Title Section */
.centered-logo-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 4rem 0 8rem 0; /* Consistent spacing */
}

.center-logo, .premium-products-logo {
    width: 18rem;
    height: 18rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

.center-title {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1rem;
    margin-top: 0;
    background: linear-gradient(90deg, #800020, #111 60%, #800020 100%);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: lightning-maroon-black 3s linear infinite;
}

@keyframes lightning-maroon-black {
    0% {
        background-position: 0% 50%;
        filter: brightness(1.2) drop-shadow(0 0 2px #800020);
    }
    100% {
        background-position: 100% 50%;
        filter: brightness(2) drop-shadow(0 0 16px #111);
    }
}

.center-heading {
    font-size: 4.8rem;
    font-weight: 700;
    color: #800020;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2.4rem;
    letter-spacing: 0.05rem;
}

.center-paragraph {
    max-width: 120rem;
    margin: 0 auto;
    font-size: 2.6rem;
    color: #222;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.1rem;
}

/* Premium Products Section */
.premium-products-section {
    position: relative;
    background: #f3f3f3;
    padding-top: 0;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 8rem; /* Consistent spacing */
}

.premium-products-bg-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 10;
    pointer-events: none;
}

.premium-products-logo {
    position: relative;
    z-index: 11;
    margin-top: 31px;
    background: none;
}

.premium-products-title,
.product-card-list {
    position: relative;
    z-index: 3;
}

.premium-products-logo {
    z-index: 2;
}

.premium-products-title {
    font-size: 3.2rem;
    font-weight: bold;
    color: #800020;
    text-align: center;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
}

.product-card-list {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 6rem;
    flex-wrap: wrap;
}

.product-card-new {
    background: #fff;
    border-radius: 1.8rem;
    box-shadow: 0 0.4rem 2.4rem rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40.5rem;
    padding: 3.6rem 2.7rem 2.7rem 2.7rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.product-card-new:hover {
    box-shadow: 0 0.8rem 3.2rem rgba(0,0,0,0.16);
    transform: translateY(-1rem) scale(1.05);
}

.product-image-new {
    width: 30rem;
    height: 30rem;
    object-fit: contain;
    border-radius: 1.8rem;
    margin-bottom: 2.7rem;
    background: #f8f8f8;
}

.product-name-new {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 0.05rem;
}

.product-detail-container {
    max-width: 95%;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-detail-image {
    width: 100%;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.product-detail-title {
    font-size: 4rem;
    color: #800020;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(128,0,32,0.08);
}

.reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.8s forwards;
}

.product-detail-title::after {
    content: '';
    display: block;
    width: 6rem;
    height: 0.4rem;
    background: #800020;
    border-radius: 2px;
    margin: 1.2rem auto 0 auto;
    opacity: 0.8;
}

.product-detail-paragraph {
    font-size: 2.2rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.product-detail-paragraph ul {
    list-style-type: disc;
    padding-left: 20px;
}

.product-detail-paragraph ul > li {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    border: none;
    transition: none;
    font-size: inherit;
    font-weight: inherit;
}

.product-detail-paragraph ul > li:hover {
    background: none;
    color: inherit;
    box-shadow: none;
    border: none;
    transform: none;
}

.product-detail-paragraph ul > li b {
    color: #ffd700;
}

.flavored-makhana-section {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
    max-width: 140rem;
    margin: 0 auto;
}

.flavored-makhana-title {
    text-align: center;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.flavored-makhana-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.flavored-makhana-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.05);
    flex-basis: calc(50% - 1.5rem);
    transition: transform 0.3s ease-in-out;
}

.flavored-makhana-item:hover {
    transform: scale(1.05);
}

.flavored-makhana-item:nth-child(odd) {
    background-color: #333333;
    color: #ffffff;
}

.flavored-makhana-item:nth-child(even) {
    background-color: #a05252;
    color: #ffffff;
}

.flavored-makhana-item img {
    width: 15rem;
    height: 15rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.flavored-makhana-item div {
    flex: 1;
}

/* Why Choose Bhoomi Global Exports Section */
.why-choose-section {
    position: relative;
    padding: 7rem 0 6rem 0;
    background: linear-gradient(to right, #f58334 50%, #0F4C5C 50%);
    color: #fff;
    overflow: hidden;
    z-index: 0;
}

.why-choose-bg-question {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80rem !important;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.why-choose-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 4.8rem;
    letter-spacing: 0.1rem;
    color: #fff;
    text-shadow: none;
}

.why-choose-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 2.2rem;
}

.why-choose-badge {
    min-width: 8rem;
    min-height: 8rem;
    background: #fff;
    color: #800020;
    font-size: 2.8rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.08);
    margin-top: 0.2rem;
    margin-bottom: 0.6rem;
    border: 0.3rem solid #fff;
}

.why-choose-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
}

.why-choose-desc {
    font-size: 2.2rem;
    color: #f3e9ef;
    font-weight: 400;
    line-height: 1.7;
}

@media (max-width: 90rem) {
    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }
}

/* Why the Indian Market is Best Section */
.why-indian-market-section {
    background: #f8f8f8;
    padding: 7rem 0 6rem 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8rem; /* Consistent spacing */
}

.why-indian-market-logo {
    display: block;
    margin: 0 auto 2rem;
    height: 18rem;
    width: 18rem;
    object-fit: contain;
}

.why-indian-market-heading {
    text-align: center;
    font-size: 5.5rem;
    color: #800020;
    margin-bottom: 4rem;
}

.why-indian-market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.why-indian-market-card {
    background-color: #f58334;
    color: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
}

.why-indian-market-card.dark {
    background-color: #0F4C5C;
}

.why-indian-market-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.why-indian-market-badge {
    background-color: #fff;
    color: #a05252;
    border-radius: 50%;
    width: 6.5rem;
    height: 6.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

.why-indian-market-card.dark .why-indian-market-badge {
    color: #333;
}

.why-indian-market-title {
    font-size: 3rem;
    font-weight: 600;
}

.why-indian-market-desc {
    font-size: 2.2rem;
    line-height: 1.7;
}

@media (max-width: 90rem) {
    .why-indian-market-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .why-indian-market-grid > .why-indian-market-card:nth-child(odd) {
        background-color: #f58334 !important;
    }

    .why-indian-market-grid > .why-indian-market-card:nth-child(even) {
        background-color: #0F4C5C !important;
    }

    .why-indian-market-grid > .why-indian-market-card:nth-child(odd) .why-indian-market-badge {
        color: #f58334 !important;
    }

    .why-indian-market-grid > .why-indian-market-card:nth-child(even) .why-indian-market-badge {
        color: #0F4C5C !important;
    }
}

/* Responsive adjustments */
@media (max-width: 99.2rem) {
    .welcome-container {
        gap: 6rem;
    }

    .welcome-image img {
        width: 350px;
        margin-bottom: 0;
    }

    .mission-vision-grid {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .welcome-container {
        flex-direction: column;
        align-items: center;
    }

    .welcome-image {
        width: 300px;
        min-width: 0;
        flex: none;
    }

    .welcome-image img {
        width: 300px;
        height: auto;
    }

    .welcome-content {
        width: 100%;
    }
}

.enquiry-section {
    width: 100%;
    background: #07b324;
    padding: 5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.enquiry-container {
    width: 70%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}
.enquiry-text {
    min-width: 260px;
    margin-right: 2.5rem;
}
.enquiry-subtitle {
    color: #000000;
    font-size: 2.2rem;
    font-weight: 800;
    opacity: 0.85;
}
.enquiry-title {
    color: #000000;
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    display: block;
    margin-top: 0.2rem;
}
.enquiry-form {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 1.2rem;
}
.enquiry-input {
    flex: 1;
    padding: 1.5rem 2rem;
    border-radius: 2.5rem;
    border: none;
    font-size: 1.5rem;
    outline: none;
    box-shadow: 0 0.1rem 0.5rem rgba(0,0,0,0.08);
    background: #fff;
    color: #333;
    transition: box-shadow 0.2s;
}
.enquiry-input:focus {
    box-shadow: 0 0.2rem 1rem rgba(128,0,32,0.13);
}
.enquiry-btn {
    background: #8B5C2A;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 2.5rem;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0.1rem 0.5rem rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.enquiry-btn:hover {
    background: #A47551;
    box-shadow: 0 0.2rem 1rem rgba(139,92,42,0.13);
}
@media (max-width: 900px) {
    .enquiry-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .enquiry-text {
        margin-right: 0;
        text-align: center;
    }
    .enquiry-form {
        flex-direction: column;
        gap: 1rem;
    }
    .enquiry-btn, .enquiry-input {
        width: 100%;
    }
}

.content-width {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
}

.enquiry-btn:hover {
    background-color: #6a001a;
}

.cow-dung-section h3 {
    text-align: left;
}

.cow-dung-section p {
    text-align: justify;
    font-weight: normal;
}

.cow-dung-section {
    transition: transform 0.3s ease-in-out;
}

.cow-dung-section:hover {
    transform: scale(1.02);
}

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

.makhana-variety-box {
    background: #e8d5d8;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease-in-out;
}

.makhana-variety-box:hover {
    transform: scale(1.02);
}

.makhana-variety-title {
    font-size: 2.7rem;
    color: #800020;
    font-weight: 1000;
    margin-bottom: 1.5rem;
}

.flavored-makhana-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.flavored-makhana-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: 1rem;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

.flavored-makhana-card:hover {
    transform: scale(1.02);
}

.flavored-makhana-card.black {
    background: #111;
}

.flavored-makhana-card.maroon {
    background: #800020;
}

.flavored-makhana-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-right: 2rem;
    background: #fff;
    padding: 0.5rem;
}

.flavored-makhana-card .card-text h4 {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.flavored-makhana-card .card-text p {
    font-size: 1.8rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .flavored-makhana-grid {
        grid-template-columns: 1fr;
    }
}

.flavored-makhana-item {
    transition: transform 0.3s ease-in-out;
}
