﻿/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* root variables */
:root {
    --primary-color: #0b0e11;
    /* Deep Luxury Black/Blue */
    --secondary-color: #d4af37;
    /* Premium Gold */
    --secondary-hover: #b4932a;
    /* Darker Gold for Hover */
    --text-dark: #333333;
    /* Dark text for white background */
    --text-light: #666666;
    /* Muted text */
    --white: #ffffff;
    --dark-bg: #0b0e11;
    --card-bg: #151a21;
    --light-grey: #f4f7f6;
    /* Back to light grey */
    --border-color: #e1e1e1;
    --transition: all 0.3s ease;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Ensure 20px padding on all sides always */
}

/* Header & Navigation */
header {
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    /* Slightly smaller to fit with image */
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo img {
    height: 70px;
    /* Slightly reduced to fit header nicely */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Ensure white background becomes transparent */
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.footer-col .logo {
    color: var(--white);
    display: flex;
    align-items: center;
    /* Center align items vertically */
    gap: 15px;
    margin-bottom: 25px;
    /* More space below logo */
}

/* Fix for footer text */
.footer-col .logo span {
    font-size: 1.2rem;
    line-height: normal;
    /* Normal line height for better centering */
    display: inline-block;
    color: var(--secondary-color);
    /* Ensure gold color */
    text-align: left;
}

.footer-col .logo img {
    mix-blend-mode: normal;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    height: 50px;
    /* Slightly smaller to match text */
    flex-shrink: 0;
    /* Prevent image shrinking */
}

.footer-col p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Mobile Menu */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: 0.4s;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    /* Add a dark overlay to each slide */
    box-shadow: inset 0 0 0 2000px rgba(13, 37, 56, 0.4);
    /* Reduced opacity from 0.7 to 0.4 */
}

/* Ensure first slide is visible immediately */
.hero-slide:first-child {
    opacity: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Ensure content is above the slider */
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--secondary-hover);
    color: var(--white);
    border-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    margin-left: 15px;
}

.btn.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: var(--white);
}

.about-preview .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-text-col {
    flex: 1;
    text-align: left;
}

.about-img-col {
    flex: 1;
}

.about-img-col img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Specific About Text Styling (Desktop) */
.about-text-col .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text-col .section-title h2::after {
    left: 0;
    width: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--secondary-color);
    bottom: 0;
    left: 20%;
    border-radius: 2px;
}

/* Category Grid */
.categories-preview,
.products-page {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    color: var(--white);
    /* Ensure text inside cards is light */
}

.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
    color: var(--white);
}

.card p,
.card li,
.card span {
    color: #e0e0e0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.card-content p {
    color: #a0a0a0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    background: var(--card-bg);
    /* Dark cards */
    color: var(--white);
}

.feature-item h3 {
    color: var(--white);
}

.feature-item p {
    color: #e0e0e0;
}

.feature-item:hover {
    border-color: var(--secondary-color);
    background: var(--primary-color);
    /* Kept dark on hover but slightly different? Or same? Let's make it darker */
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Stats Section */
.stats {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item h4 {
    color: var(--primary-color);
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.partners-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.7;
}

.partners-slider img {
    max-height: 50px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partners-slider img:hover {
    filter: grayscale(0);
}

/* Footer */
/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
    /* Softer border for white bg */
    border-bottom: 1px solid var(--border-color);
}

.cta-section h2 {
    color: var(--primary-color);
    /* Dark text on white bg */
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

footer {
    background-color: var(--primary-color);
    color: #b0b0b0;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    /* Helps with centering line later */
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    /* Start hidden */
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
    /* Animate width */
}

.footer-col h4:hover::after {
    width: 100%;
    /* Expand to full width on hover */
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    /* Align vertically center */
    flex-wrap: nowrap;
    gap: 0;
    /* Inline styles have margin, so gap is 0 or small */
    white-space: nowrap;
    /* Force one line */
    font-size: 0.9rem;
    /* Reduce size to fit */
}

.footer-col ul li i {
    flex-shrink: 0;
    /* Prevent icon from shrinking */
    margin-right: 12px !important;
    /* Standardize spacing */
    width: 20px;
    text-align: center;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: none;
    font-size: 0.9rem;
}

/* Forms */
.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    color: #333;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    /* prevent zoom on iOS */
    transition: var(--transition);
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-control:focus {
    border-color: var(--secondary-color);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        top: -100px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--text-dark);
}

/* Products Cards Grid Fix */
.grid-container-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    min-width: 30px;
}

/* Map */
.map-container {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(13, 37, 56, 0.7), rgba(13, 37, 56, 0.7)), url('https://images.unsplash.com/photo-1610348725531-843dff563e2c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 0 100px;
    /* Increased padding for larger size */
    text-align: center;
}



.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
}

.breadcrumb {
    color: #ddd;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--secondary-color);
}

/* Product Showcase Section */
.product-showcase {
    position: relative;
    height: 400px;
    background-color: #333;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.showcase-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.showcase-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
}

.showcase-slide.active {
    opacity: 1;
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* New Dark Category Cards (Homepage) */
.dark-category-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Content at bottom */
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    /* Text aligned left as per ref */
}

.dark-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark-cat-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    /* Transparent white circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.dark-category-card:hover .dark-cat-icon {
    background: var(--secondary-color);
    color: var(--white);
}

.dark-category-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    /* Simulating the clean serif/sans mix */
}

.dark-category-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.view-collection {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.dark-category-card:hover .view-collection {
    opacity: 1;
    transform: translateY(0);
}

/* Product Page Reference 2 Layout */
.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 60px 0;
    align-items: start;
}

@media (max-width: 900px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
}

.sidebar-categories {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-categories h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-color);
}

.sidebar-categories ul li a {
    display: block;
    padding: 12px 15px;
    color: var(--text-light);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.sidebar-categories ul li a:hover,
.sidebar-categories ul li a.active {
    color: var(--secondary-color);
    background-color: var(--light-grey);
    border-left-color: var(--secondary-color);
    font-weight: 600;
}

.clean-product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.clean-product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.clean-card-img {
    height: 200px;
    background-color: var(--light-grey);
    /* Placeholder gray if image missing */
    overflow: hidden;
}

.clean-card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.clean-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.clean-card-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.clean-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.clean-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.clean-card-link:hover {
    color: var(--secondary-color);
}


/* Product Details Modal (View Details) */
.details-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    backdrop-filter: blur(5px);
}

.details-modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    position: relative;
    animation: slideDown 0.4s ease;
}

.sub-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.sub-product-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.sub-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sub-product-img {
    height: 150px;
    overflow: hidden;
}

.sub-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-product-info {
    padding: 15px;
    text-align: center;
}

.sub-product-info h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.sub-product-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}


/* Updated Dark Category Card with Background Image */
.dark-category-card {
    /* Existing base styles will be overridden or augmented */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.dark-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.2), rgba(10, 25, 47, 0.9));
    /* Gradient for visibility + text readability */
    z-index: -1;
    border-radius: 12px;
    transition: var(--transition);
}

.dark-category-card:hover::before {
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.1), rgba(10, 25, 47, 0.8));
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    /* Video at bottom */
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 37, 56, 0.4);
    /* Reduced opacity just in case */
    z-index: 1;
    /* Above video */
}

/* Update hero-content z-index to sit on top */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Fallback background for hero if video fails */
.hero {
    background-color: #0d2538;
}


/* About Layout Update */
.about-preview .container {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.about-text-col {
    flex: 1;
}

.about-img-col {
    flex: 1;
}

.about-img-col img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .about-preview .container {
        flex-direction: column;
        text-align: center;
    }
}


/* Call Float Button */
.call-float {
    position: fixed;
    bottom: 110px;
    /* Above WhatsApp (30px + 60px + 20px gap) */
    right: 30px;
    background-color: #007bff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.call-float:hover {
    transform: scale(1.1);
    color: white;
}


/* Global Presence & Certifications */
.global-map-section {
    background-color: var(--light-grey);
    padding: 80px 0;
    text-align: center;
}

.map-container {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
}

.map-img {
    width: 100%;
    opacity: 0.8;
}

.certifications-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
}

.cert-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    color: var(--white);
}

.cert-item div {
    color: var(--white) !important;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item img {
    max-width: 100%;
    max-height: 80px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-bottom: 3px solid var(--secondary-color);
    color: var(--white);
}

.why-card h4 {
    margin-bottom: 15px;
    color: var(--white);
}

.why-card p {
    color: #e0e0e0;
}


/* --- Gold Slide & Wash Animation --- */
.card,
.feature-item,
.why-card,
.cert-item,
.sub-product-item,
.clean-product-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* Background Wash Effect */
.card::before,
.feature-item::before,
.why-card::before,
.cert-item::before,
.sub-product-item::before,
.clean-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    transition: width 0.5s ease;
    z-index: -1;
}

/* Left Gold Strip Indicator */
.card::after,
.feature-item::after,
.why-card::after,
.cert-item::after,
.sub-product-item::after,
.clean-product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--secondary-color);
    transform: translateX(-100%);
    /* Start hidden off-left */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

/* Hover States */
.card:hover,
.feature-item:hover,
.why-card:hover,
.cert-item:hover,
.sub-product-item:hover,
.clean-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card:hover::before,
.feature-item:hover::before,
.why-card:hover::before,
.cert-item:hover::before,
.sub-product-item:hover::before,
.clean-product-card:hover::before {
    width: 100%;
    /* Wash slides across */
}

.card:hover::after,
.feature-item:hover::after,
.why-card:hover::after,
.cert-item:hover::after,
.sub-product-item:hover::after,
.clean-product-card:hover::after {
    transform: translateX(0);
    /* Strip slides in */
}


/* Mobile Responsiveness Improvements */
@media screen and (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Fix Logo for Mobile */
    .logo {
        font-size: 1.2rem;
        gap: 10px;
    }

    .logo img {
        height: 55px;
    }

    /* Footer Center Alignment on Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li {
        justify-content: center;
    }

    .footer-col .logo {
        justify-content: center;
    }

    .footer-col .logo img {
        mix-blend-mode: normal;
    }

    .social-links {
        justify-content: center;
    }

    /* Global Reach Section Mobile Fix */
    .global-map-section div[style*='display: flex'] {
        flex-direction: column;
    }

    .global-map-section ul li {
        text-align: left;
        /* Keep list item content left-aligned for readability */
        padding: 15px !important;
    }

    .global-map-section ul li strong,
    .global-map-section ul li span {
        text-align: left;
    }
}

/* --- New Trade Inquiry Form Styles --- */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-heading {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 3px solid var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Global Reach List Items */
.global-list-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Slightly enhanced shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.global-list-item i {
    color: var(--secondary-color);
    margin-right: 20px;
    font-size: 1.5rem;
    /* Larger icon */
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.global-list-item div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensure left alignment */
    justify-content: center;
}

.global-list-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.global-list-item span {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left;
}

/* Hover Effects */
.global-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.global-list-item:hover i {
    transform: scale(1.1);
}

/* Gold Wash Animation */
.global-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    transition: width 0.5s ease;
    z-index: -1;
}

.global-list-item:hover::before {
    width: 100%;
}

.global-list-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
    transform: translateX(-4px);
    transition: transform 0.3s ease;
}

.global-list-item:hover::after {
    transform: translateX(0);
}

/* Custom Radio Buttons for Inquiry Type */
.inquiry-type-group {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    /* Support mobile */
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    background: var(--white);
    flex: 1;
    /* Stretch on mobile */
    min-width: 200px;
}

.radio-label:hover {
    border-color: var(--secondary-color);
    background-color: #fdfdfd;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    display: inline-block;
}

.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-label input[type="radio"]:checked~.radio-custom {
    background-color: transparent;
}

/* Active state for the whole label for better UX */
.radio-label:has(input:checked) {
    border-color: var(--secondary-color);
    background-color: rgba(212, 175, 55, 0.05);
    /* very subtle gold tint */
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1000;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    color: var(--secondary-color);
    background-color: var(--light-grey);
    padding-left: 25px;
}

@media screen and (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: transparent;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
        border-left: 2px solid var(--secondary-color);
    }

    .nav-links li:hover .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Sticky Sidebar & Layout */
.products-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    /* Important for sticky to work */
}

.sidebar-categories {
    flex: 0 0 280px;
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 100px;
    /* Height of header + padding */
    height: auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Sidebar Scrollbar Styling */
.sidebar-categories::-webkit-scrollbar {
    width: 6px;
}

.sidebar-categories::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sidebar-categories::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.sidebar-categories::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.sidebar-categories h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    font-size: 1.4rem;
}

.sidebar-categories ul li {
    margin-bottom: 12px;
}

.sidebar-categories .category-link {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}

.sidebar-categories .category-link:hover,
.sidebar-categories .category-link.active {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
}

.grid-container {
    flex: 1;
    /* Take remaining space */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Mobile Responsiveness for Layout */
@media screen and (max-width: 992px) {
    .products-layout {
        flex-direction: column;
    }

    .sidebar-categories {
        width: 100%;
        position: static;
        /* Disable sticky on mobile */
        max-height: none;
        overflow-y: visible;
        margin-bottom: 30px;
    }

    .sidebar-categories ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sidebar-categories ul li {
        margin-bottom: 0;
        flex: 1 1 auto;
    }

    .sidebar-categories .category-link {
        text-align: center;
        white-space: nowrap;
        font-size: 0.9rem;
    }
}

/* Others Modal Content */
.others-modal-content {
    text-align: center;
    padding: 20px;
}

.others-msg {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.others-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.others-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Contact Page Sticky Info */
.contact-info-box {
    position: sticky;
    top: 100px;
    /* Below header */
    height: fit-content !important;
}

/* =========================================
   Mobile Responsiveness (Global Fixes)
   ========================================= */

@media screen and (max-width: 768px) {

    /* Global Typography Reduction */
    body {
        font-size: 15px;
        /* Slightly smaller body text */
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.4rem !important;
    }

    h4 {
        font-size: 1.2rem !important;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Container Padding */
    .container {
        padding: 0 15px;
        /* More space for content */
        width: 100%;
    }

    /* Header & Nav */
    nav {
        height: 70px;
        /* Compact header */
    }

    .hero {
        padding-top: 70px;
        /* Match new header height */
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.2rem;
        /* Ensure hero title fits */
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-btns .btn {
        width: auto;
        /* Allow natural width */
        display: inline-block;
        /* Side by side */
        margin: 10px 5px !important;
        /* Spacing between buttons */
        padding: 10px 20px;
        /* Smaller padding */
        font-size: 0.9rem;
        /* Smaller font */
    }

    /* About Preview */
    .about-preview .container {
        display: flex;
        flex-direction: column;
    }

    .about-text-col,
    .about-img-col {
        width: 100%;
    }

    .about-img-col {
        margin-top: 30px;
    }

    /* Mobile Enhancements: Center 'Who We Are' & Box Content */
    .about-text-col {
        text-align: center;
    }

    .about-text-col .section-title {
        text-align: center;
    }

    .about-text-col .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    /* Boxed Content Style */
    .about-text-col p {
        background: #ffffff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
        text-align: justify;
        /* Keep justified alignment */
        margin-bottom: 25px;
    }

    .about-text-col .btn {
        margin: 0 auto;
        display: inline-block;
    }

    /* Mobile Company Overview (About Page) Box Formatting */
    .company-overview-text {
        background: #ffffff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        /* Consistent shadow */
        border: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 20px;
        text-align: center;
    }

    .company-overview-text h2 {
        text-align: center;
        /* Ensure heading is centered */
        margin-bottom: 20px;
        font-size: 1.6rem !important;
        /* Slightly reduce heading size on mobile */
    }

    .company-overview-text p {
        text-align: justify;
        /* Keep text justified */
        margin-bottom: 15px;
        /* Adjust spacing */
    }

    /* Product Grid Gaps */
    .grid-container {
        gap: 20px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        /* 2x2 grid on mobile */
        gap: 20px;
    }

    /* Features / Why Choose Us */
    .features-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    /* Forms */
    .form-container {
        padding: 20px;
    }

    .inquiry-type-group {
        flex-direction: column;
        gap: 15px;
    }

    .radio-label {
        width: 100%;
    }

    /* Modals */
    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 20px;
    }

    /* Hide decorative after elements if they cause layout issues */
    .section-title h2::after {
        width: 40%;
        left: 30%;
    }
}

@media screen and (max-width: 480px) {
    /* Extra Small Devices */

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        /* Stack stats fully on very small screens */
    }

    .partners-slider {
        gap: 20px;
    }

    .partners-slider img {
        max-height: 40px;
    }
}