/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333333;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    position: static;
    z-index: 1000;

}

.nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 2rem;
    gap: 2.5rem;                      
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 45px; /* Adjust based on your logo size */
    width: auto;
    transition: transform 0.3s ease;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #333333;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.5px;  
    transition: color 0.3s ease;
    font-size: 21px;     
    padding: 0.5rem 0.5rem;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #adadad;
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 1 auto;
    padding: 2rem;
}

main h1 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 1rem;
    margin-left: auto; /* This pushes buttons to the right */
}

.compliance-btn {
    background-color: transparent;
    color: rgb(30, 30, 30);
    border: 1px solid rgb(30, 30, 30);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.compliance-btn:hover {
    background-color: rgb(30, 30, 30);
    color: #ffffff;
}

.contact-btn {
    background-color: rgb(30, 30, 30);
    color: white;
    border: 1px solid rgb(30, 30, 30);
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #ffffff; /* Darker red on hover */
    color: rgb(30, 30, 30);
}

/* Consistent container for all sections */
.container {
    max-width: 100%;
    margin: 0 -1rem;          
}

/* Update hero content */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.cta-button {
    background-color: #1E1E1E;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.cta-button:hover {
    background-color: white;
    color: #1E1E1E;
    transform: translateY(-3px);
    box-shadow: 0 20px 20px rgba(0,0,0,0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-photo {
    max-width: 75%;
    height: auto;
}

/* Footer Styles */
/* Create a separate container for footer */
.footer-container {
    max-width: 100%;
    margin: 0 2rem;          /* Normal margin for footer */
}

.footer {
    background-color: #1E1E1E;
    color: white;
    padding: 3rem 0 1rem 5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #bdc3c7;
    font-weight: 300;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 0.5px solid #bdc3c7;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    font-weight: 300;
    font-size: 0.9rem;
}
/*///////////////////////////////////////////////*/
/* Products Section */


/* Products Section */
.products {
    padding: 5rem 0; /* Increased padding for more vertical space */
    background-color: transparent;
    position: relative;
}

.products h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1E1E1E;
    text-align: center;
    margin-bottom:1rem; /* Increased margin for more space */
}

/* Product Grid Container - KEY FIX */
.product-grid-container {
    position: relative;
    width: 100%;
    overflow: visible; /* Allow shadows to extend outside */
    min-height: 400px; /* Minimum height to ensure space */
}

/* Product Grid Wrapper - This handles the clipping */
.product-grid-wrapper {
    width: 100%;
    overflow: hidden; /* Only this element clips content */
    padding: 0 4rem; /* Space for side shadows */
}

/* Horizontal Scrollable Grid - INCREASED VERTICAL PADDING */
.product-grid {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    padding: 6rem 2rem; /* Increased top/bottom padding from 3rem to 4rem */
    scroll-behavior: smooth;
    margin: -3rem -2rem; /* Increased negative margin to compensate */
    align-items: center; /* Vertically center the cards */
    min-height: 350px; /* Ensure enough height for hover effects */
}

/* Product Cards with full shadow visibility */
.product-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1),
                0 5px 15px rgba(0,0,0,0.07);
    min-width: 300px;
    flex-shrink: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: fit-content; /* Let content determine height */
}

.product-card:hover {
    transform: translateY(-12px); /* Increased hover lift */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), /* Enhanced shadow on hover */
                0 15px 30px rgba(0,0,0,0.1);
    z-index: 5; /* Bring hovered card above others */
}

.product-card h3 {
    color: #1E1E1E;
    margin: 1rem 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.product-card p {
    color: #5d6d7e;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Status badges */
.status-badge {
    display: inline-block;
    background: #1E1E1E;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 400;
}

/* Navigation Arrows - Position outside the wrapper */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1E1E1E;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20; /* Higher z-index */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.nav-arrow:hover {
    background: #333333;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.nav-arrow.left {
    left: -50px; /* Position relative to viewport */
}

.nav-arrow.right {
    right: -50px; /* Position relative to viewport */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .products {
        padding: 3rem 0; /* Slightly less padding on mobile */
    }
    
    .product-grid-wrapper {
        padding: 0 1rem;
    }
    
    .product-grid {
        padding: 3rem 1rem; /* Adjusted for mobile */
        margin: -2rem -1rem;
        overflow-x: auto; /* Enable scroll on mobile */
        min-height: 300px; /* Slightly less on mobile */
    }
    
    .nav-arrow {
        display: none;
    }
    
    .product-card {
        min-width: 280px; /* Slightly smaller on mobile */
    }
    
    .product-card:hover {
        transform: translateY(-5px); /* Less lift on mobile */
    }
}

