/* Reset & Base Styles */
:root {
    --primary-color: #6B0F1A;
    /* Deep Maroon */
    --secondary-color: #C8A951;
    /* Muted Gold */
    --accent-color: #C8A951;
    /* Using Gold as accent */
    --text-color: #2B2B2B;
    /* Charcoal */
    --light-bg: #F7F7F5;
    /* Warm Off-White */
    --white: #ffffff;
    --muted-text: #6F6F6F;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
/* Navbar */
.navbar {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    justify-content: center;
    align-items: center;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    /* Changed from sticky to relative for better flow with large header */
    top: 0;
    z-index: 1000;
    min-height: auto;
    height: auto;
}

/* 1. Left: Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center logo */
    gap: 15px;
    /* Increased gap */
    text-decoration: none;
    flex: 0 0 auto;
    /* Don't grow, just take needed space */
    margin-bottom: 5px;
    /* Space between logo and menu */
}

.logo img {
    height: auto;
    max-height: 160px;
    /* Increased to allow wider logo */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.logo span {
    font-family: 'Playfair Display', serif;
    /* Premium font */
    font-weight: 700;
    font-size: 1.8rem;
    /* Increased size */
    color: var(--primary-color);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

/* 2. Center: Navigation */
.nav-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    gap: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle divider */
    padding-top: 10px;
}

.nav-center {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-center a {
    font-size: 1.1rem;
    /* Slightly larger for the new layout */
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 0;
    /* More padding */
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.nav-center a:hover {
    color: var(--primary-color);
}

.nav-center a:hover::after {
    width: 100%;
}

/* 3. Right: Actions */
.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
    /* flex: 1; Removed to fit content naturally */
}

/* Button Refinements */
.btn {
    padding: 10px 25px;
    /* Compact premium feel */
    font-size: 0.95rem;
}

.mobile-login-btn {
    display: none;
}

/* Responsive Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), #600000);
    /* Gradient */
    color: var(--white);
    border: none;
    border-radius: 50px;
    /* Pill shape */
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #b8962e);
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #b8962e, var(--secondary-color));
}

.btn-shop {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-weight: 700;
    box-shadow: none;
    animation: none;
    /* Removed pulse for cleaner look */
}

.btn-shop:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.section-title:hover::after {
    width: 100px;
}

/* Glassmorphism Classes */
.glass-effect {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 40px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
    margin-top: -30px;
    /* Overlap hero slightly */
    border-radius: 10px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.trust-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.trust-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.close-btn:hover {
    color: var(--secondary-color);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

/* Footer Buttons */
.btn-small {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s;
}

.btn-small:hover {
    opacity: 0.9;
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
}

.email-btn {
    background-color: #EA4335;
}

.indiamart-badge {
    display: inline-block;
    transition: transform 0.2s;
}

.indiamart-badge:hover {
    transform: scale(1.05);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

textarea.form-control {
    resize: vertical;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Contact Page Styles */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-box h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-row .icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
}

.info-row .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-row .details p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

.map-thumbnail {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 250px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.filter-btn i {
    font-size: 1.1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.2);
}

.contact-wrapper-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: stretch;
}

.contact-form-wrapper,
.contact-info-column {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-column {
    justify-content: space-between;
}

.contact-info-box {
    flex-grow: 1;
    margin-bottom: 30px;
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    margin-bottom: 0;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 300;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.leader-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 320px;
    transition: var(--transition);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leader-card:hover::before {
    transform: scaleX(1);
}

.leader-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.6rem;
    font-weight: 700;
}

.designation {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.leadership-note {
    font-size: 1.2rem;
    color: #555;
    margin-top: 40px;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Impact Section */
.impact-section {
    background: var(--primary-color);
    padding: 100px 0;
    color: var(--white);
    margin: 0;
    position: relative;
    overflow: hidden;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.impact-card .icon-box {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.impact-card:hover .icon-box {
    transform: scale(1.1);
}

.impact-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 800;
    color: var(--secondary-color);
}

.impact-card p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-card span {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 100px 0;
    background-color: #fdfbf7;
}

.infra-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.infra-text {
    flex: 1;
    min-width: 300px;
}

.infra-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-align: left;
}

.infra-text h2::after {
    left: 0;
    transform: none;
}

.infra-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.infra-image-grid {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 0;
    height: 400px;
}

.infra-img-1 {
    grid-column: 1 / 9;
    grid-row: 1 / 10;
    z-index: 1;
    height: 100% !important;
    border: 5px solid var(--white);
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.infra-img-2 {
    grid-column: 5 / 13;
    grid-row: 4 / 13;
    z-index: 2;
    height: 100% !important;
    border: 5px solid var(--white);
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.infra-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.infra-features li {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    margin-bottom: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.infra-features li::before {
    content: '\f058';
    /* FontAwesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 1.2rem;
    position: static;
    /* Reset absolute positioning */
}

.infra-features li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Product Range Section */
.product-range-section {
    padding: 100px 0;
    background-color: var(--white);
}

.product-range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.range-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.range-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--primary-color);
    transition: var(--transition);
}

.range-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.range-card:hover::before {
    width: 10px;
}

.range-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.range-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Media Queries */
@media (max-width: 992px) {
    .contact-wrapper-split {
        grid-template-columns: 1fr;
    }

    .contact-info-column {
        height: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .contact-wrapper-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .infra-content {
        flex-direction: column;
    }

    .infra-image-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

}

.infra-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.infra-features li {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    margin-bottom: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.infra-features li::before {
    content: '\f058';
    /* FontAwesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 1.2rem;
    position: static;
    /* Reset absolute positioning */
}

.infra-features li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Product Range Section */
.product-range-section {
    padding: 100px 0;
    background-color: var(--white);
}

.product-range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.range-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.range-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--primary-color);
    transition: var(--transition);
}

.range-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.range-card:hover::before {
    width: 10px;
}

.range-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.range-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Media Queries */
@media (max-width: 992px) {
    .contact-wrapper-split {
        grid-template-columns: 1fr;
    }

    .contact-info-column {
        height: auto;
    }
}

/* Mobile Navigation Fix */
@media (max-width: 968px) {
    .navbar {
        height: 70px;
        /* Reduced fixed height for mobile header */
        flex-direction: row;
        /* Row again for mobile header bar */
        justify-content: space-between;
        padding: 0 20px;
        align-items: center;
    }

    .logo {
        margin-bottom: 0;
        /* Reset margin */
        flex: 1;
        justify-content: flex-start;
        /* Reset justify */
    }

    .logo img {
        height: 45px;
        /* Smaller logo for mobile */
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hide the internal structure by default on mobile, but we style the wrapper */
    /* Nuclear Option: Full Screen Overlay */
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
        /* Space for close/logo */
        gap: 30px;
        box-shadow: none;
        display: none;
        overflow-y: auto;
        z-index: 99999;
        /* Maximum Z-Index */
        border-top: none;
    }

    .nav-wrapper.active {
        display: flex !important;
    }

    /* Reset individual container styles inside wrapper */
    .nav-center,
    .nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    /* Links styling in mobile */
    .nav-center a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    /* Button Action styling in mobile */
    .nav-actions {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .btn {
        width: 80%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Social Links */
.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ccc;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 500;
}

.social-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.social-link.instagram i {
    color: #E1306C;
}

.social-link.google i {
    color: #4285F4;
}

.social-link img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    /* Fixed to viewport, NOT footer */
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background-color: #20BA56;
    color: white;
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
        /* Reduced fixed height for mobile header */
        flex-direction: row;
        /* Row again for mobile header bar */
        justify-content: space-between;
        padding: 0 20px;
        align-items: center;
    }

    .logo {
        margin-bottom: 0;
        /* Reset margin */
        flex: 1;
        justify-content: flex-start;
        /* Reset justify */
        max-width: 70%;
        /* Ensure it doesn't get crushed */
    }

    .logo img {
        height: 45px;
        /* Slightly larger logo for mobile */
        max-width: 100%;
        /* Allow it to be wider */
        object-fit: contain;
    }

    /* Mobile Login Button */
    .mobile-login-btn {
        display: flex;
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-right: 15px;
        z-index: 1001;
    }

    .menu-toggle {
        display: flex;
        z-index: 2001;
        /* Higher than wrapper */
        position: relative;
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }



    /* Reset individual container styles inside wrapper */
    .nav-center,
    .nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    /* Links styling in mobile */
    .nav-center a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
        color: #333333 !important;
        /* Force black color */
    }

    /* Button Action styling in mobile */
    .nav-actions {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .btn {
        width: 80%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Social Links */
.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ccc;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 500;
}

.social-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.social-link.instagram i {
    color: #E1306C;
}

.social-link.google i {
    color: #4285F4;
}

.social-link img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: all 0.3s ease;
    text-decoration: none;
    /* Ensure no underline */
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background-color: #20BA56;
    color: white;
}

/* Wave Divider */
.wave-divider {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    margin: -1px 0;
    /* Fix potential pixel gaps */
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .wave-divider {
        height: 50px;
    }
}

/* B2B Revamp Specific Styles */

/* Hero B2B */
.hero-b2b {
    position: relative;
    height: 70vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content-b2b {
    max-width: 900px;
    padding: 20px;
}

.hero-content-b2b h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content-b2b p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0.95;
}

.proof-line {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary-solid {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary-solid:hover {
    background-color: #4a0a12;
    border-color: #4a0a12;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

/* Trust Strip */
.trust-strip {
    background: white;
    padding: 30px 0;
    border-bottom: 2px solid var(--secondary-color);
    margin-top: -5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item-b2b {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.trust-item-b2b i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.trust-item-b2b span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Products B2B */
.section-padding {
    padding: 80px 0;
}

.b2b-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
}

.b2b-section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.b2b-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.b2b-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.b2b-card-img {
    height: 250px;
    width: 100%;
    background-color: #f1f1f1;
    overflow: hidden;
    /* Ensure image doesn't spill out */
    position: relative;
}

.b2b-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Correctly crop image to fit container */
    display: block;
    transition: transform 0.3s ease;
}

.b2b-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b2b-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0;
    font-weight: 600;
}

/* Manufacturing */
.manufacturing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media(max-width: 768px) {
    .manufacturing-grid {
        grid-template-columns: 1fr;
    }
}

.manu-list {
    list-style: none;
    margin-top: 30px;
}

.manu-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.manu-list li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

/* Dealer Portal */
.dealer-promo {
    background-color: #F2E6E8;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
}

.dealer-promo h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dealer-promo p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #444;
}

/* Why Choose */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    background: white;
}

.benefit-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Dominance Product Grid */
.product-grid-dominance {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Horizontal gap */
    row-gap: 40px;
    /* Vertical gap */
    align-items: stretch;
}

@media (max-width: 1024px) {
    .product-grid-dominance {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid-dominance {
        grid-template-columns: 1fr;
    }
}

.section-header-b2b {
    text-align: center;
    margin-bottom: 50px;
    /* Reduce gap */
}

.section-subline {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-top: -40px;
    /* Pull closer to title */
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.b2b-card-dominance {
    background: var(--white);
    border: 1px solid rgba(107, 15, 26, 0.2);
    /* Thin maroon border 20% opacity */
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.b2b-card-dominance:hover {
    border-color: rgba(107, 15, 26, 0.5);
    /* Darken border slightly on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.b2b-card-img-dominance {
    height: 320px;
    /* Increased dominance (approx 20-30% more than before) */
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.b2b-card-img-dominance img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.b2b-card-dominance:hover .b2b-card-img-dominance img {
    transform: scale(1.04);
    /* Micro zoom 4% */
}

.b2b-card-body-dominance {
    padding: 20px 15px;
    text-align: center;
    flex: 1;
    /* Make it fill remaining space, though image is dominant */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.b2b-card-body-dominance h3 {
    font-size: 1.4rem;
    /* Larger font */
    font-weight: 600;
    color: var(--text-color);
    /* Charcoal */
    margin: 0;
}

/* Update section title with gold underline */
.b2b-section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
    font-size: 2.8rem;
    /* Increased size */
}

.b2b-section-title::after {
    background: var(--secondary-color);
    /* Gold */
    /* Maintain existing ::after dimensions or update if needed */
}

/* Updated Product Card Styles */
.b2b-card-body-dominance {
    padding: 25px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* Space between title and button */
}

.b2b-card-body-dominance h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
}

.btn-card-action {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    /* Clean rounded corners */
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.b2b-card-dominance:hover .btn-card-action {
    background-color: #4a0a12;
    /* Darker maroon on hover */
    transform: translateY(-2px);
    /* Slight lift */
    box-shadow: 0 4px 10px rgba(107, 15, 26, 0.2);
}

/* Manufacturing Capabilities B2B Redesign */
.manufacturing-grid-b2b {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Left visual column is slightly larger */
    gap: 60px;
    align-items: center;
}

@media(max-width: 968px) {
    .manufacturing-grid-b2b {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Visual Column */
.manu-visual {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(200, 169, 81, 0.2);
    /* Muted gold shadow */
}

.manu-img-b2b {
    width: 100%;
    height: 400px;
    /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

/* Content Column */
.manu-title-b2b {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    line-height: 1.1;
}

.manu-title-b2b::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin-top: 15px;
    border-radius: 2px;
}

.manu-intro {
    font-size: 1.2rem;
    color: #444;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* List Styling */
.manu-list-b2b {
    list-style: none;
    padding: 0;
}

.manu-list-b2b li {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.manu-list-b2b li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Card USP List Styles */
.card-usp-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px 0;
    width: 100%;
    text-align: left;
    /* lists read better left-aligned */
    flex-grow: 1;
    /* allow list to take available space */
}

.card-usp-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.card-usp-list li i {
    color: var(--secondary-color);
    /* Gold checkmarks */
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Adjust card body for new content */
.b2b-card-body-dominance {
    padding: 25px 20px;
    text-align: center;
    /* keep title and button centered */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* changed from center to accommodate variable height list */
    height: auto;
}

.b2b-card-dominance {
    height: auto;
    /* Allow card to grow with content */
    min-height: 100%;
}

.btn-card-action {
    width: 100%;
    /* Make button full width or substantial width */
    text-align: center;
    margin-top: auto;
    /* Push to bottom if flex container */
    background-color: var(--primary-color);
}

/* About Page B2B Redesign Styles */

/* 1. About Hero */
.about-hero-b2b {
    background: linear-gradient(rgba(43, 43, 43, 0.8), rgba(43, 43, 43, 0.8)), url('../images/hero_new_lifestyle.jpg');
    /* Reuse new hero image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* 2. Proof & Stats */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

@media(max-width: 768px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.proof-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
}

.proof-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.proof-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.proof-card p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* 4. Leadership B2B */
.leadership-grid-b2b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

@media(max-width: 768px) {
    .leadership-grid-b2b {
        grid-template-columns: 1fr;
    }
}

.leader-card-b2b {
    background: #f9f9f9;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.leader-card-b2b h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.designation-b2b {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.leader-card-b2b p {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* 5. Product Mini Grid */
.product-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media(max-width: 600px) {
    .product-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini-prod-card {
    background: var(--white);
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 5px;
}

.mini-prod-card:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* 6. Why Partner Grid */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media(max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

.partner-item {
    padding: 20px;
    border: 1px dashed #ccc;
    background: #fdfdfd;
}

.partner-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-item h4 i {
    color: var(--secondary-color);
}

.partner-item p {
    margin: 0;
    color: #555;
    padding-left: 32px;
    /* Align with text start */
}

/* Helper */
.bg-white {
    background-color: var(--white);
}

.btn-outline-dark {
    border: 2px solid var(--text-color);
    color: var(--text-color);
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: var(--text-color);
    color: var(--white);
}

/* Manufacturing Grid Restructuring */

/* Center the Section Title */
.manufacturing .section-header-b2b {
    text-align: center;
    margin-bottom: 50px;
}

/* Updated List Styling for Grid Layout */
.manu-list-b2b {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.manu-list-b2b li {
    display: grid;
    grid-template-columns: 30px 160px 1fr;
    /* Icon | Label | Desc */
    align-items: baseline;
    /* Align text to top/baseline for multi-line support */
    gap: 15px;
    font-size: 1.1rem;
    color: #333;
}

.manu-list-b2b li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* Center icon vertically relative to first line roughly */
    padding-top: 3px;
    /* Optical alignment */
}

.manu-label {
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
}

.manu-desc {
    color: #555;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .manu-list-b2b li {
        grid-template-columns: 25px 1fr;
        /* Icon | Content */
        grid-template-rows: auto auto;
        gap: 5px 15px;
    }

    .manu-label {
        grid-column: 2;
    }

    .manu-desc {
        grid-column: 2;
        padding-left: 0;
    }
}

/* Manufacturing Capabilities B2B Redesign - Refined Grid */
.manufacturing-grid-b2b {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
    /* Align to top */
}

@media(max-width: 968px) {
    .manufacturing-grid-b2b {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Visual Column */
.manu-visual {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(200, 169, 81, 0.2);
}

.manu-img-b2b {
    width: 100%;
    height: 450px;
    /* Slight height increase */
    object-fit: cover;
    display: block;
}

/* Content Column */
.manu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 10px;
    /* Align visual top */
}

.manu-title-b2b {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    line-height: 1.1;
    text-align: left;
    /* Explicitly left align */
}

.manu-title-b2b::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin-top: 15px;
    border-radius: 2px;
    margin-left: 0;
    /* Align left */
}

/* Center title ONLY when it's outside the grid (if ever needed via modifier) */
.section-header-b2b .manu-title-b2b {
    text-align: center;
}

.manu-intro {
    font-size: 1.2rem;
    color: #444;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* List Styling matches previous grid step */
.manu-list-b2b {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.manu-list-b2b li {
    display: grid;
    grid-template-columns: 30px 160px 1fr;
    align-items: baseline;
    gap: 15px;
    font-size: 1.1rem;
    color: #333;
}

.manu-list-b2b li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
}

.manu-label {
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
}

.manu-desc {
    color: #555;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .manu-list-b2b li {
        grid-template-columns: 25px 1fr;
        grid-template-rows: auto auto;
        gap: 5px 15px;
    }

    .manu-label {
        grid-column: 2;
    }

    .manu-desc {
        grid-column: 2;
        padding-left: 0;
    }
}

/* =========================================
   B2B Footer Redesign
   ========================================= */

/* A. Top CTA Strip */
.footer-cta-strip {
    background-color: var(--primary-color);
    /* Maroon */
    padding: 30px 0;
    margin-top: 60px;
    /* Separate from content */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.cta-actions {
    display: flex;
    gap: 15px;
}

.btn-gold {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn-gold:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.btn-outline-silver {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-silver:hover {
    border-color: #fff;
    background-color: #fff;
    color: var(--primary-color);
}

/* B. Main Footer */
.b2b-footer {
    background-color: #121212;
    /* Deep Black */
    color: #cdcdcd;
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.footer-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr 1fr;
    /* Custom widths */
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Highlight Column (B2B) */
.highlight-col {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: -20px;
    /* Slight pop effect */
    margin-bottom: -20px;
    padding-top: 20px;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 10px;
}

/* Links List */
.footer-links,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #aaaaaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Contact Specifics */
.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.business-hours {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.credibility-line {
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    margin-top: 5px;
}

/* Specific Buttons */
.btn-clean {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.whatsapp-b2b {
    background-color: #25D366;
    color: #fff;
    border: 1px solid #25D366;
}

.whatsapp-b2b:hover {
    background-color: #128C7E;
    color: #fff;
}

/* Indiamart Card */
.indiamart-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
    width: fit-content;
}

.indiamart-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.platform-icon img {
    height: 25px;
    width: auto;
}

.platform-info {
    display: flex;
    flex-direction: column;
}

.platform-info strong {
    color: #333;
    font-size: 0.95rem;
}

.verified-badge {
    color: #28a745;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-col {
        margin: 0;
        background: rgba(255, 255, 255, 0.02);
    }

    .footer-heading {
        margin-bottom: 15px;
    }
}

/* =========================================
   MOBILE RESPONSIVENESS OVERHAUL
   Strict Adherence to User "Master Prompt"
   ========================================= */

@media (max-width: 768px) {

    /* 1. GLOBAL MOBILE GRID SYSTEM (Non-Negotiable) */
    .container,
    .container-fluid,
    footer .container,
    header .container {
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }

    /* 2. MOBILE TYPOGRAPHY */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .section-title,
    .display-4,
    .hero-title,
    .b2b-section-title {
        text-align: center !important;
    }

    h1,
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    h2,
    .section-title {
        font-size: 1.75rem !important;
        margin-bottom: 20px !important;
    }

    p {
        text-align: left;
        /* Explicitly requested */
        line-height: 1.6;
        font-size: 1rem !important;
    }

    .section-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-left: 0 !important;
    }

    /* 3. HERO SECTION FIXES */
    .hero-section {
        text-align: center !important;
        padding: 60px 0 !important;
        /* Adjust spacing */
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 30px;
    }

    .hero-cta .btn {
        width: 100% !important;
        display: block;
        margin: 0 !important;
    }

    /* Hero Icons Grid: 2 columns */
    .hero-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        justify-content: center;
        margin-top: 40px;
    }

    .hero-feature-item {
        flex-direction: column;
        text-align: center;
        margin: 0 !important;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }

    /* 4. PRODUCT CATEGORY SECTIONS */
    .category-grid,
    .product-grid,
    .wholesale-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .product-card,
    .category-card {
        height: auto !important;
        display: flex;
        flex-direction: column;
    }

    /* Ensure image ratio consistency */
    .product-card img,
    .category-card img {
        height: 250px !important;
        object-fit: cover;
    }

    .product-card .btn,
    .category-card .btn {
        width: 100% !important;
        margin-top: 15px;
    }

    /* 5. PRODUCT LISTING (Single Column) */
    .products-page-grid {
        /* Assuming this class exists or generic grid */
        grid-template-columns: 1fr !important;
    }

    /* 6. PRODUCT DETAIL PAGE */
    .prod-main-grid {
        display: flex;
        flex-direction: column;
    }

    /* Order adjustment for Mobile Strict Order: Title -> Badges -> Image -> CTA */
    /* Handled by .mobile-order-1 etc classes in PHP if possible or Flex order here */
    /* Assuming standard row: Left(Image), Right(Summary) */

    .prod-detail-row {
        display: flex;
        flex-direction: column;
    }

    /* We need to use Order property carefully. */
    /* If Image is Col-1 and Info is Col-2 */

    /* Making Info appear FIRST */
    .prod-info-col {
        order: -1;
    }

    /* Inside Info Col, we need Button to appear AFTER Image (which is in other col). */
    /* This requires 'display: contents' on columns so children are siblings in the grid/flex parent. */
    .prod-img-col,
    .prod-info-col {
        display: contents;
        /* This flattens the columns so all children (Image, Title, Desc, Btn) become grid items of .row */
    }

    .prod-detail-row {
        display: flex;
        flex-direction: column;
    }

    /* NOW we can reorder everything! */

    .prod-title-block {
        order: 1;
        text-align: center !important;
    }

    .prod-badges {
        order: 2;
        margin-bottom: 20px;
        justify-content: center;
    }

    .prod-main-img {
        order: 3;
        width: 100%;
        margin-bottom: 20px;
    }

    .prod-enquiry-btn {
        order: 4;
        width: 100%;
    }

    .prod-desc {
        order: 5;
    }

    /* If desired */
    .prod-variants-section {
        order: 6;
    }

    .prod-specs-table {
        order: 7;
    }


    /* 7. FORMS (Contact / Enquiry) */
    .contact-wrapper-split {
        flex-direction: column !important;
    }

    .contact-form-column,
    .contact-info-column {
        width: 100% !important;
        min-width: 100% !important;
        flex: auto !important;
    }

    .contact-form .form-group {
        width: 100% !important;
        flex: 100% !important;
    }

    /* Undo the 2-col layout in form */
    .contact-form div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* 8. FOOTER (Stack) */
    .footer-grid-4 {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        /* Remove gap for accordion feel */
    }

    .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 20px 0;
        margin: 0 !important;
    }

    .footer-cta-strip .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-strip .btn {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }

    /* 9. SPACING & CONSISTENCY */
    .section-padding {
        padding: 40px 0 !important;
    }

    .mb-3,
    .mb-4,
    .mb-5 {
        margin-bottom: 20px !important;
    }

    /* 10. ALIGNMENT FIXES (REFINED) */

    /* Product Specs Table - STACKED for safety */
    .prod-layout-spec-grid,
    .prod-specs-grid {
        display: block !important;
    }

    .spec-item {
        display: flex;
        flex-direction: column;
        /* Stack Label and Value */
        align-items: flex-start !important;
        border-bottom: 1px solid #eee;
        padding: 15px 0;
        width: 100% !important;
        gap: 5px;
    }

    .spec-label {
        font-weight: 700;
        color: var(--primary-color);
        width: 100% !important;
        text-align: left;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .spec-value {
        width: 100% !important;
        text-align: left !important;
        color: #333;
        font-size: 1.05rem;
        padding-left: 0 !important;
    }

    /* Contact Info Alignment */
    .info-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .info-item .icon {
        margin-top: 4px;
        /* Align with first line of text */
        flex-shrink: 0 !important;
        /* Prevent icon squishing */
        width: 25px;
        /* Fixed width for alignment */
        text-align: center;
    }

    .info-item div {
        /* The text container */
        flex: 1;
        text-align: left !important;
    }

    .info-item h4,
    .info-item p {
        text-align: left !important;
        /* Override global centering */
    }

}

/* 11. PRODUCT IMAGE FIX (User Report: Top Cropped) */
.prod-master-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    /* Optional polish */
}

.prod-master-img img {
    width: 100%;
    height: auto;
    /* Allow natural height to prevent crop */
    max-height: 600px;
    /* Cap height for large screens */
    object-fit: contain;
    /* Ensure full image is visible */
    object-position: top;
    /* Align top if constraint hits */
}