/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scrollbar-color: #007bff #fff;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Video Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
}

.cta-button {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Content Sections */
.section {
    padding: 3rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.head-section{
    margin-top: 5rem;
}

/* FAQ Styles */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin: 1rem 0;
}

.faq-question {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    width: 55%;
}

.contact-info{
    width: 35%;
    float: right;
    margin-right: 25px;
}

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

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button[type="submit"] {
    background: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.more {
    background: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 2rem;
    margin-right: 1rem;
}

/* About Section Styling */
.value-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.badge {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.badge i {
    color: #2a5a8d;
    margin-bottom: 1rem;
}

.services-cta {
    text-align: center;
    padding: 3rem;
    background: #2a5a8d10;
    border-radius: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.service-list li {
    margin: 0.8rem 0;
}

.badge .fa-puzzle-piece { color: #4285f4; } /* Google blue */
.badge .fa-tools { color: #ff9900; } /* Maintenance orange */

/* Optional: Partner logo floats */
.badge .partner-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.badge .partner-logos img {
    height: 30px;
    width: auto;
}

.lang-toggle {
background: #007bff;
color: white;
border: none;
padding: 0.5rem 1rem;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s;
min-width: 60px;
}

.lang-toggle:hover {
    background: #0056b3;
}

.inline-form{
display: inline-block;
}

footer {
background: #2c3e50;
color: white;
padding: 2rem 1rem;
margin-top: auto;
}

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

.footer-section h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #007bff;
}

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

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    margin-top: 2rem;
}

.hamburger {
    display: none; /* Hidden by default */
}

.hamburger span {
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Newsletter Popup Styles */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

.newsletter-popup.show {
    display: flex;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: popupSlide 0.3s ease-out;
}

@keyframes popupSlide {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

#newsletterForm input {
    width: 100%;
    margin: 1rem 0;
    padding: 0.8rem;
}

#products {
    margin-top: 40px;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

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

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#popupImage{
    width: 100%;
    height: 375px;
}

.product-info {
    padding: 1rem;
}

.product-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: white;
    background-color: #ffd700;
}

.out-of-stock {
    background: #ff4757;
    filter: grayscale(0.8);
}

.coming-soon {
    background: #ffd700;
}

/* Product Popup */
.product-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
}

.product-popup.active {
    display: flex;
}

.popup-content-product {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.color-options {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
}

.color-btn.active {
    border-color: #007bff;
}

.nav-links,
.hero-content,
.section {
    transition: 0.3s ease-in-out;
}


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

::-webkit-scrollbar {
    -webkit-appearance: none;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem !important;
}

@media (max-width: 1200px) {
    .section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 992px) {
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        max-width: 300px;
        padding: 1rem;
        transition: 0.3s;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

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

    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        transition: 0.3s;
    }

    /* Language Switcher */
    .language-switcher {
        margin-left: auto;
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero-content {
        padding: 1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-form,
    .contact-info {
        width: 100%;
        float: none;
        margin: 1rem 0;
    }

    /* FAQ Section */
    .faq-question {
        padding: 0.75rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    /* Base Elements */
    html {
        font-size: 14px;
    }

    /* Buttons */
    .cta-button,
    .more {
        width: 100%;
        padding: 0.75rem;
    }

    /* Forms */
    input, textarea {
        font-size: 14px;
    }

    /* Brand Section */
    .brands-grid {
        /*grid-template-columns: repeat(2, 1fr);*/
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        margin: 2rem 0;
    }
}

@media (hover: hover) {
    .nav-links a:hover {
        color: #007bff;
    }

    .cta-button:hover {
        background: #0056b3;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}



.gallery-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 10px;
}

.gallery-slider {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slide 20s infinite;
}

.gallery-slider img {
    width: 25%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-25%); }
    45% { transform: translateX(-25%); }
    50% { transform: translateX(-50%); }
    70% { transform: translateX(-50%); }
    75% { transform: translateX(-75%); }
    95% { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .gallery-container {
        height: 300px;
    }
}
