/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    margin: 20px;
    line-height: 1.6;
}

header {
    background-color: #333;
    padding: 20px;
    color: white;
}

header img {
    width: 130px;
    height: 100;
    margin-left: -120px;
}

.hamburger {
    display: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    height: 70px;
}

.logo {
    /* Makes sure logo takes up available space */
    margin-left: 170px;
    width: 150;
    HEIGHT:100;

}

nav {
    flex-grow: 1;
    /* Makes nav take the remaining space */
    text-align: right;
    /* Aligns nav items to the right */
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    /* Aligns the list items to the right */
    margin: 0;
    /* Removes default margin */
    padding: 0;
    /* Removes default padding */
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

/* home  */
.flexibility-section {
    /* position: relative; */
    padding: 90px 0;
    text-align: center;
    background-color: #f4f4f4;
}

.content-wrapper {
    display: flex;
    /* Use flexbox for layout */
    align-items: center;
    /* Center items vertically */
    justify-content: space-between;
    /* Space between text and image */
    max-width: 1200px;
    /* Set a max width for the whole section */
    margin: 0 auto;
    /* Center the section */
}

.text-container {
    flex: 1;
    /* Take up remaining space */
    padding-right: 100px;
    /* Space between text and image */
}

.text-container h1 {
    font-size: 47px;
    /* Adjust font size */
    color: #d33737;
}

.text-container h2 {
    font-size: 30px;
    /* Adjust font size */
    color: #333;
}

.text-container p {
    font-size: 20px;
    /* Adjust font size for paragraph */
    color: #666;
    /* Adjust color for paragraph */
}

.image-containerhome {
    position: relative;
    width: 60%;
    /* Set width for the image container */
    overflow: hidden;
    /* Hide overflow */
}

.image-containerhome .slide {
    display: none;
    /* Hide all slides initially */
}

.image-containerhome .slide.active {
    display: block;
    /* Show the active slide */
}

.image-containerhome img {
    width: 67%;
    /* Make images responsive */
    height: 705px;
    /* Set fixed height */
    object-fit: cover;
    /* Maintain aspect ratio */
}

.banner .banner-content {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* .dots {
    margin-top: 10px;
    text-align: center; 
} */

/* .dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
} */
/*home */
.image-marquee {
    position: relative;
    width: 100%;
    /* Full width of the viewport */
    height: 30vh;
    /* Adjust height of the marquee section */
    overflow: hidden;
    /* Hide overflowing content */
    background-color: black;
    /* Optional: Background color for contrast */
}

.image-containerr {
    display: flex;
    /* Display images in a row */
    animation: marquee 30s linear infinite;
    width: 200%;
}



.image-containerr img {
    height: 30vh;
    /* Set a fixed height for the images */
    width: auto;
    /* Keep aspect ratio */
    flex-shrink: 0;
    /* Prevent images from shrinking */
}

.trending {
    background-color: #f0f0f0;
    /* Light ash background color */
    padding: 20px;
    /* Add some padding for spacing */
}

.trending-items {
    display: flex;
    justify-content: center;
    /* Center all the items */
    gap: 30px;
    /* Add space between items */
    flex-wrap: wrap;
    /* Allows wrapping of items if needed */
    margin-left: 90px;
    /* Add left margin for extra space */
    margin-right: 90px;
    /* Add right margin for extra space */
}

.item {
    background-color: rgb(231, 231, 231);
    /* Background color for item */
    border: 1px solid #ddd;
    /* Optional border */
    border-radius: 10px;
    /* Rounded corners */
    padding: 20px;
    /* Padding inside item */
    width: 450px;
    /* Increase the size of the item */
    height: 500px;
    text-align: center;
    /* Center the text */
    margin: 2px;
    /* Spacing between items */
    position: relative;
}

.image-container {
    display: flex;
    /* Flexbox layout to center the image */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    height: 100%;
    /* Ensure the container takes up full height */
}

.item img {
    max-width: 370px;
    /* Set a specific width for the image */
    max-height: 367px;
    /* Ensure the image does not exceed the container */
    transition: transform 0.3s ease;
    /* Smooth zoom effect */
}

.item img:hover {
    transform: scale(1.5);
    /* Zoom in by 1.5 times */
}

/* New style for price */
.price {
    margin-top: 10px;
    /* Add some space above the price */
    font-size: 18px;
    /* Adjust the font size */
    color: #333;
    /* Set text color */
    font-weight: bold;
    /* Make price bold */
}

.featured-products {
    text-align: center;
    padding: 50px 0;
}

.featured-products h2 {
    margin-bottom: 0px;
    /* Adjusted for better spacing */
    font-size: 30px;
}

/* .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
} */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Changed to 5 columns */
    gap: 20px;
    max-width: 1400px;
    /* Adjusted for 5 items to fit */
    margin: 0 auto;
    margin-top: 20px;
}

.product-card {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.product-card h5 {
    margin-top: 10px;
    font-size: 15px;
}

.product-card p {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-card button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.product-card img {
    width: 100%;
    /* Makes the image responsive */
    max-width: 200px;
    /* Adjust the max width as needed */
    height: auto;
    /* Maintains aspect ratio */
    display: block;
    /* Ensures it behaves like a block element */
    margin: 0 auto;
    /* Centers the image horizontally */
}

/* Styles for the feature section */
.feature-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.left-content,
.right-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
}

.feature-item {
    margin-bottom: 20px;
}

.image-containers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    /* Adjust as necessary */
}

.image-containers h2 {
    font-size: 20px;
    margin-bottom: 160px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.image-containers img {
    width: 250%;
    height: auto;
    /* Keeps aspect ratio */
    max-height: 620px;
    /* Limits the max height */
}

.feature-item h3 {
    font-size: 25px;
    margin-bottom: 10px;
    color: rgb(219, 32, 32);
}

.feature-item p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.button-container {
    display: flex;
    /* Use flexbox for alignment */
    justify-content: center;
    /* Center the button horizontally */
    margin-top: 20px;
    /* Optional: Add space above the button */
    background-color: white;
    /* color: rgb(27, 27, 27); */
    margin-bottom: 40px;
}

.button-container button {
    padding: 10px 20px;
    /* Adjust padding as needed */
    font-size: 16px;
    /* Set font size */
    border: none;
    /* Remove default border */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    background-color: rgb(63, 62, 62);
    /* Button background color */
    color: rgb(245, 244, 244);
    /* Default text color */
    transition: color 0.3s ease;
    /* Smooth transition for color change */
}

.button-container button:hover {
    background-color: rgb(226, 32, 18);
    /* Change text color to orange on hover */
}


/*testimonial*/
/* Trusted Client Section */
.trusted-client {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.trusted-client h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.testimonial-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-logo {
    max-width: 100px;
    margin-bottom: 15px;
}

.client-review {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.client-name {
    font-size: 0.9rem;
    font-weight: bold;
    color: #666;
}

/*testimonial*/
.footer-section {
    background-color: #333;
    color: #fff;
    min-height: 150px;
    /* Set a specific height */
    padding: 100px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: 70px;
}

.footerhead {
    font-size: 17px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.footerhead1 {
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: -60px;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    max-width: 140px;
    margin-bottom: 15px;
    margin-top: -165px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  
}

.footer-social a {
    margin: 0 20px;
    padding-top: 10px;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-copyright {
    font-size: 14px;

    margin-top: 28px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        margin: 10px;
        /* Reduce margin for smaller screens */
    }

    header {
        flex-direction: column;
        align-items: center;
        padding: 0;
        /* Ensure no extra padding */
        margin: 0;
        /* Ensure no extra margin */
    }

    header img {
        margin-left: 8px;
        margin-bottom: 1px;
        margin-top: 8px;
        width: 90px;
        height: auto; 
        /* Adjust logo size for smaller screens */
    }

    .navbar {
        position: relative;
        padding: 0;
        /* Reduce padding to decrease navbar height */
        /* Optionally, add a background color */
        background-color: #333;
        /* Change if needed */
    }
    

    .hamburger {
        position: absolute;
        /* Change position to absolute */
        right: 20px;
        /* Align to the right */
        top: 20px;
        /* Align vertically as needed */
        display: block;
        /* Show on mobile (optional if you want to show it) */
        /* Optionally add styles for better visibility */
        color: white;
        font-size: 30px;
        cursor: pointer;
    }

    nav ul {
        position: absolute;
        top: 50px;
        /* Adjust top position to fit reduced height */
        right: 0;
        background-color: #333;
        width: 100%;
        flex-direction: column;
        display: none;
        /* Hide the nav links by default */
        padding: 0;
        /* Remove padding for ul */
        margin: 0;
        /* Remove margin for ul */
    }

    .logo {
        /* Makes sure logo takes up available space */
        margin-left: 70px;
        width: 165;
        HEIGHT:125;
    }

    nav ul.active {
        display: flex;
        /* Display nav links in column */
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }

    nav ul li a {
        padding: 10px;
        color: white;
        /* Set link color to white */
        text-decoration: none;
        /* Remove underline from links */
        display: block;
        /* Make the entire area clickable */
    }

    nav ul li a:hover {
        background-color: #444;
        /* Change background on hover for better visibility */
    }

    /* Show navigation when clicked */
    nav ul.active {
        display: flex;
        /* Display nav links in column */
    }

    .trending-items {
        flex-direction: column;
        /* Stack trending items vertically */
        align-items: center;
        /* Center items */
        margin-left: 0;
        /* Remove left margin */
        margin-right: 0;
        /* Remove right margin */
    }

    .item {
        width: 90%;
        /* Set width to 90% for smaller screens */
        margin: 10px auto;
        /* Add margin for spacing */
        text-align: center;
        height: 440px;
    }

    .item img {
        width: 100px;
        /* Set a specific width for the image */
        height: 100px;
        margin-bottom: 5px;
        margin-top: 1px;
        transition: transform 0.3s ease;
        /* Smooth zoom effect */
        margin-right: 40px;
    }

    /* Hover effect to move the image upwards */
    .item img:hover {
        transform: scale(1.5); /* Increase the size by 20% */
    }

    .price {
        font-size: 16px;
        /* Slightly reduce price font size for mobile */
        margin-top: 5px;
        /* Adjust margin for mobile */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Change to 2 columns on mobile */
        gap: 15px;
        /* Adjust gap between products */
    }

    .product-card {
        padding: 15px;
        /* Adjust padding */
    }

  
    .product-card img {
        max-width: 100%;
        /* Ensure images are responsive */
    }

    /* Responsive styles */
    .image-container img {
        width: 150%;
        /* Make image responsive to fit its container */
        height: auto;
        /* Maintain aspect ratio */
        max-width: 300px;
        /* Set a maximum width for large screens */
        max-height: 200px;
        /* Set a maximum height */
        margin-bottom: 15px;
        /* Add spacing below the image */
        margin-left: 40px;
        margin-top: 10px;
    }

    /* Responsive "Discover Now" button */
    .trending .item button {
        padding: 10px 50px;
        /* Adjust padding for smaller screens */
        font-size: 12px;
        /* Increase font size slightly */
        bottom: 10px;
        /* Adjust button's bottom position */
        margin-bottom: 20px;
        /* Adjust margin */
        width: auto;
        /* Ensure button width is flexible */
    }

    .feature-section {
        flex-direction: column;
        align-items: center;
    }

    .left-content,
    .right-content {
        width: 100%;
        margin-bottom: 20px;
    }

    .image-container {
        display: flex;
        /* Use flexbox for centering */
        justify-content: center;
        /* Center the image horizontally */
        align-items: center;
        /* Center the image vertically */
        width: 101%;
        /* Ensure full width */
        margin: 0;
        /* Remove any margins */
        margin-bottom: 10px;
        /* Add spacing below the container */
    }

    .image-containers {
        display: flex;
        /* Use flexbox for centering */
        justify-content: center;
        /* Center the image horizontally */
        align-items: center;
        /* Center the image vertically */
        width: 50%;
        /* Ensure full width */
        margin-bottom: 30px;
        /* Add spacing below the container */
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-social img {
        width: 18px;
        height: 18px;
    }

    .content-wrapper {
        flex-direction: column;
        /* Stack text and images vertically */
        align-items: center;
        /* Center items */
    }

    .text-container {
        padding-right: 0;
        /* Remove right padding */
        padding-bottom: 20px;
        /* Add space below text for separation */
        text-align: center;
        /* Center text */
    }

    .text-container h1 {
        font-size: 36px;
        /* Decrease font size for mobile */
    }

    .text-container h2 {
        font-size: 24px;
        /* Decrease font size for mobile */
    }

    .text-container p {
        font-size: 16px;
        /* Decrease font size for mobile */
    }

    .image-containerhome {
        width: 100%;
        /* Full width for image container */
        height: auto;
        /* Auto height for responsive */
    }

    .image-containerhome img {
        height: 400px;
        /* Set a smaller height for mobile */
    }
    .footer-logo img {
        width: 232px; /* Adjust logo size if needed */
        height: auto; /* Maintain aspect ratio */
        margin-bottom: 15px; /* Adjust margin */
        margin-top: 5px;
    }

    .footer-container {
        padding-top: 50px;
        /* Slightly reduce padding on mobile */
        margin-top: -100px;
    }

    .footer-section {
        max-height: 750px;
        /* Adjust height for mobile */
    }

    .footerhead,
    .footerhead1 {
        font-size: 18px; /* Increase font size for better visibility */
       padding-bottom: -10px;
    }

    .footer-copyright {
        font-size: 15px; /* Increase font size */
        margin-top: 20px; /* Adjust margin */
    }

    .footer-social img {
        width: 28px; /* Increase icon size */
        height: 28px; /* Maintain aspect ratio */
    }

    .testimonial-row {
        flex-direction: column;
        align-items: center;
        /* Center items vertically in column layout */
    }

    .testimonial {
        width: 90%;
        /* Take up 90% of the screen width on mobile */
        margin: 10px auto;
        /* Ensure the testimonial is centered on mobile */
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
        /* Start at the original position */
    }

    100% {
        transform: translateX(-50%);
        /* Move left by half the width of the container */
    }
}