/* style.css */
:root {
    --primary-color: #B4835B;
    --primary-light: #D9B597;
    --primary-dark: #8A6143;
    --text-dark: #333;
    --text-light: #777;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Make all images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(180, 131, 91, 0.1) 0%, rgba(180, 131, 91, 0.05) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: -1;
    border-radius: 50px;
    transform: scale(0);
    transition: var(--transition);
}

.btn:hover::before {
    transform: scale(1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 1rem;
}

.btn-outline::before {
    background: var(--primary-color);
}

.btn-outline:hover {
    color: var(--white);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-img-container {
    width: 500px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transform: rotate(-5deg);
    transition: var(--transition);
    position: relative;
}

.hero-img-container:hover {
    transform: rotate(0deg);
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--white);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(180, 131, 91, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Brands Section */
.brands {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    height: 60px;         /* Set a consistent height for all brand logos */
    width: auto;          /* Maintain aspect ratio */
    object-fit: contain;  /* Ensure the logo fits within the height */
    display: block;
    max-width: 160px;     /* Optional: limit max width for very wide logos */
    margin: 0 1rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: var(--white);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-category {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: block;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Product Filter Buttons Styling */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2.5rem 0 2rem 0;
}

.filter-btn {
    background: #fff;
    color: #B4835B;
    border: 2px solid #B4835B;
    border-radius: 30px;
    padding: 0.6rem 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: 
        background 0.2s,
        color 0.2s,
        box-shadow 0.2s,
        border 0.2s;
    outline: none;
    box-shadow: 0 2px 8px rgba(180, 131, 91, 0.06);
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #B4835B;
    color: #fff;
    border-color: #B4835B;
    box-shadow: 0 4px 16px rgba(180, 131, 91, 0.13);
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.solution-img {
    height: 220px;
    overflow: hidden;
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-card:hover .solution-img img {
    transform: scale(1.1);
}

.solution-content {
    padding: 1.8rem;
}

.solution-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.solution-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
}

.solution-features li,
p.solution-applications {
    color: var(--text-light);
    font-size: 0.9rem;
}

.solution-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.solution-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-desc {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.stats {
    display: flex;
    margin-top: 2rem;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-slider {
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide::before {
    content: '\201C';
    font-size: 6rem;
    color: var(--primary-light);
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 0;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 40px;
}

.contact-details h4 {
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-details p, .contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(180, 131, 91, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Map */
.map {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

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

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .whatsapp-float {
    text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 7rem; /* Increased from 5rem to 7rem for more space below navbar */
    }

    .hero-content {
        margin-bottom: 3rem;
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-img-container {
        width: 400px;
        height: 320px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
            }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-container {
        padding-top: 8rem; /* Even more space for smaller screens */
    }

    .hero-img-container {
        width: 350px;
        height: 280px;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }

    .btn-outline {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 600px; /* Ensure hero section is tall enough for content and image */
        height: auto;
        /*padding-bottom: 2.5rem; /* Add space below hero section */
    }
    .hero-container {
        padding-top: 8rem; /* Space for navbar/logo */
        flex-direction: column;
        text-align: center;
        margin-bottom: 0; /* Remove margin-bottom here to avoid double spacing */
    }
    .hero-title {
        font-size: 2rem;
        margin-top: 0;
    }
    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        margin-bottom: 2.5rem; /* More space below image */
    }
    .hero-img-container {
        width: 100%;
        max-width: 400px;
        height: 260px; /* Slightly taller for mobile */
        min-height: 180px;
        border-radius: 16px;
        box-shadow: var(--shadow-hover);
        overflow: hidden;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }
    .hero-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .features {
        padding-top: 2.5rem; /* Ensure features section starts after hero image */
    }
    .about-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .stats {
        gap: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .solutions-container {
        padding: 0 1rem;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }

}
/* Clients Section */
.clients {
    padding: 5rem 0;
    background-color: var(--white);
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.clients-carousel {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    width: 200%;
    animation: scroll 20s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 150px;
    max-height: 100px;
    /*filter: grayscale(100%); 
    opacity: 0.7; */
    transition: all 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Animation for scrolling */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-logo {
        padding: 1rem;
    }
    
    .client-logo img {
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .client-logo img {
        max-width: 100px;
    }
    
    .clients {
        padding: 3rem 0;
    }
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.dark-mode-toggle:hover {
    color: var(--primary-color);
    background-color: rgba(0,0,0,0.05);
}

.dark-mode-toggle .fa-sun {
    display: none;
}

body.dark-mode .dark-mode-toggle .fa-sun {
    display: block;
}

body.dark-mode .dark-mode-toggle .fa-moon {
    display: none;
}

body.dark-mode .dark-mode-toggle {
    color: var(--text-dark);
}

body.dark-mode .dark-mode-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Dark Mode Styles */
body.dark-mode {
    --text-dark: #f8f9fa;
    --text-light: #adb5bd;
    --white: #121212;
    --gray-light: #1e1e1e;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.4);
}

body.dark-mode .navbar {
    background: rgba(18, 18, 18, 0.85);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body.dark-mode .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

@media (max-width: 768px) {
    body.dark-mode .nav-menu {
        background: rgba(24, 24, 24, 0.98);
    }
}

body.dark-mode .hero {
    background: linear-gradient(135deg, rgba(180, 131, 91, 0.05) 0%, rgba(180, 131, 91, 0.02) 100%);
}

body.dark-mode .hero::before {
    opacity: 0.1;
}

body.dark-mode .feature-card,
body.dark-mode .product-card,
body.dark-mode .solution-card,
body.dark-mode .testimonial-slide,
body.dark-mode .contact-form {
    background: #1e1e1e;
    border-color: rgba(180, 131, 91, 0.2);
}

body.dark-mode .filter-btn {
    background: #1e1e1e;
    color: var(--primary-light);
    border-color: var(--primary-light);
}

body.dark-mode .filter-btn:hover,
body.dark-mode .filter-btn.active {
    background: var(--primary-color);
    color: #121212;
    border-color: var(--primary-color);
}

body.dark-mode .form-control {
    background-color: #2d2d2d;
    border-color: #444;
    color: var(--text-dark);
}

body.dark-mode .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(180, 131, 91, 0.25);
}

body.dark-mode .footer {
    background: #0a0a0a;
    color: var(--text-light); /* Set a base light color for footer text */
}

body.dark-mode .footer-col h3 {
    color: var(--text-dark); /* Make headings brighter */
}

body.dark-mode .footer-links a {
    color: var(--text-light); /* Ensure links are light */
}

body.dark-mode .footer-links a:hover {
    color: var(--primary-light); /* Brighter hover for links */
}

body.dark-mode .social-links a {
    background: #222;
    color: var(--text-light); /* Make social icons visible */
}

/*
body.dark-mode .client-logo img {
    filter: invert(1) grayscale(100%) brightness(1.5);
    opacity: 0.7;
}*/
body.dark-mode .client-logo img:hover {
    filter: none;
    opacity: 1;
}
