/* Standardized Typography */
:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F9F9F9;
    --heading-color: #D87058;
    --subheading-color: #7C3626;
    --body-color: #2B3840;
    --cta-bg: #2B3840;
    --footer-bg: #4C5B61;
    --highlight-color: #F47D3A;
}

/* Headings */
h1, h2, h3 {
    color: var(--heading-color);
    font-family: "Helvetica", sans-serif !important;
    font-weight: bold !important;
}

h1 {
    font-size: 40px ;
    line-height: 1.4 ;
}

h2 {
    font-size: 36px ;
    line-height: 1.3 ;
}

h3 {
    font-size: 24px ;
    line-height: 1.2;
}

/* Body Text */
body, p {
    font-size: 18px ;
    line-height: 1.6 ;
}

/* CTA Button */
.cta-button {
    font-size: 16px;
    color: #fff;
    background-color: var(--cta-bg);
    padding: 12px 24px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--highlight-color);
}


/* Section Title Styling */
.section-title {
    background-color: #d87058;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 30px;
}

/* Copy */



/* Container for Centering Content */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    padding: 0 20px;
}

/* Header and Navbar Styling */
.banner {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Scrolling Banner Styling */
.scrolling-banner {
    overflow: hidden;
    background-color: #000;
    color: #fff;
    white-space: nowrap;
    width: 100%;
    padding: 10px 0;
    position: relative;
}

.scrolling-banner p {
    display: inline-block;
    padding-left: 100%;
    /* Starts the text off-screen to the right */
    animation: scrollText 20s linear infinite;
    /* Adjust speed by changing '15s' */
    font-size: 16px;
    color: #fff;
    margin: 0;
}

/* Keyframes for scrolling effect */
@keyframes scrollText {
    from {
        transform: translateX(0);
        /* Start position */
    }

    to {
        transform: translateX(-100%);
        /* End position, scrolling off-screen to the left */
    }
}

.navbar {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

.navbar a {
    color: var(--heading-color);
}

.navbar a:hover {
    color: black;
}

.navbar-header {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 10px;
}

.brand-name {
    font-size: 16px;
    font-weight: bold;
    color: black;
    margin-left: -15px;
}

.navbar-links {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-grow: 1;
}

.navbar-links li {
    margin: 0 15px;
}

.navbar-links a {
    color: black;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.navbar-links a:hover {
    color: #d87058;
}

.navbar-icons {
    display: flex;
    gap: 15px;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    /* Ensures visibility */
    padding: 15px 0;
}

/* Dropdown menu styling
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
}

.dropdown-menu > li > a:hover {
    background-color: #D87058;
    color: #fff;
} */


.nav>li>a:hover{
    background-color: transparent;
}

.navbar-brand {
    padding: 0;
    margin-top: 15px;
}

.navbar-brand img {
    border-radius: 8px;
    width: 150px;
    height: auto;
    
}

/* End of Copy */





























/* ABOVE ALL SETTLE */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0; /* Updated padding */
    background-color: #F5ECE3;
    height: 625px; /* Fixed height */
}

.container1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 90%;
    min-height: 500px; /* Ensure a consistent height for content */
}

.hero-text {
    max-width: 650px; /* Set a max-width for consistent alignment */
    flex-shrink: 0; /* Prevent text from shrinking if there's more content */
    animation: slideInLeft 1.5s ease-out;
    margin-left: 80px;
}

h1 {
    font-size: 40px; /* Main Heading */
    line-height: 1.2;
    color: var(--heading-color); /* Use variable */
    margin: 0; /* Remove margin to prevent shifting */
}

.tagline {
    max-width: 100%; /* Limit width to align consistently */
    font-size: 20px;
    color: var(--body-color); /* Use variable for consistency */
    margin-bottom: 10px;
}

.description {
    font-size: 18px; /* Body Text */
    line-height: 1.6;
    color: var(--body-color); /* Use variable */
    margin: 20px 0;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.cta-button {
    background-color: #2B3840 !important;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #f47d3a !important;
}

.hero-image {
    max-width: 500px;
    width: 100%;
    animation: slideInRight 1.5s ease-out;
    margin-right: -80px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.hero-image2 {
    max-width: 500px;
    width: 100%;
    animation: slideInRight 1.5s ease-out;
    margin-right: -200px;
}

.hero-image2 img {
    max-width: 400px; /* Set a smaller max-width for the image */
    width: 100%;
    height: 500px; /* Ensure the image scales proportionally */
}

/* Keyframe animations for text and image */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Swiper container and buttons styling */
.swiper-container {
    width: 80%;
    height: 80%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styling for Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--heading-color) !important; /* Use variable for consistency */
    opacity: 0.3 !important; /* Lower transparency */
    transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1; /* Fully visible on hover */
}


/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column; /* Stack elements vertically */
        padding: 20px; /* Reduce padding for smaller screens */
        height: auto; /* Adjust height to content */
    }

    .container1 {
        flex-direction: column; /* Stack text and image */
        align-items: center; /* Center align content */
        justify-content: center; /* Center content */
        min-height: auto; /* Adjust height to content */
    }

    .hero-text {
        margin: 0 20px; /* Add padding for smaller screens */
        max-width: 100%; /* Use full width */
        text-align: center; /* Center-align text */
        margin-left: 20px;
    }

    h1 {
        font-size: 28px; /* Reduce heading size */
        line-height: 1.3;
        margin-left: 60px;
    }

    .tagline {
        font-size: 16px; /* Adjust tagline font size */
        margin-left: 60px;
    }

    .description {
        font-size: 16px; /* Adjust body text size */
        line-height: 1.4;
        margin: 10px 0;
        margin-left: 60px;
    }

    .cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px; /* Adjust spacing */
    }

    .cta-button {
        width: 100%; /* Make buttons full width */
        justify-content: center; /* Center-align text in buttons */
        font-size: 14px; /* Adjust font size */
        padding: 10px 20px; /* Adjust padding */
        margin-left: 60px;
    }

    .hero-image {
        margin: 20px 0; /* Add spacing between image and text */
        max-width: 80%; /* Reduce image width */
        margin-right: 0; /* Remove negative margin */
        margin-left: 30px;
    }

    .hero-image img {
        max-width: 100%; /* Ensure image scales */
        height: auto; /* Maintain aspect ratio */
    }

    .hero-image2 {
        margin: 20px 0; /* Add spacing between image and text */
        max-width: 80%; /* Reduce image width */
        margin-right: 0; /* Remove negative margin */
    }

    .hero-image2 img {
        max-width: 100%; /* Ensure image scales */
        height: auto; /* Maintain aspect ratio */
    }

    /* Adjust Swiper container for smaller screens */
    .swiper-container {
        width: 100%; /* Use full screen width */
        height: auto; /* Adjust height to content */
    }

    .swiper-slide {
        flex-direction: column; /* Stack items vertically */
    }
}

/* Additional query for extra small devices */
@media (max-width: 480px) {
    h1 {
        font-size: 24px; /* Further reduce heading size */
    }

    .cta-button {
        font-size: 12px; /* Smaller font size */
        padding: 8px 16px; /* Reduce padding */
    }

    .description {
        font-size: 14px; /* Smaller text */
    }
}








/* Countdown Bar Component Styling */
.countdown-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: #D87058;  */
    background: linear-gradient(to left, #D87058, #eca696);
    color: #ffffff; /* White text color */
    padding: 10px 20px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Countdown Section Styling */
.countdown {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    margin-left: 100px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
}

.time-box span {
    font-weight: bold;
    font-size: 1.8rem;
}

.time-box p {
    margin-top: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: white;
}

/* Separator Styling */
.separator {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 5px;
    margin-top: -27px;
}

/* Deal Text Styling */
.deal-text {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
}


.vertical-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0.5;
}



/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .countdown-bar {
        flex-direction: column; /* Stack the countdown and deal text */
        text-align: center; /* Center-align text */
        padding: 15px; /* Increase padding for better spacing */
    }

    .countdown {
        justify-content: center; /* Center countdown on smaller screens */
        font-size: 1.2rem; /* Reduce font size */
        margin-left: 0;
    }

    .time-box {
        margin: 0 8px; /* Adjust spacing between time boxes */
    }

    .time-box span {
        font-size: 1.5rem; /* Adjust number font size */
    }

    .time-box p {
        font-size: 0.6rem; /* Adjust label font size */
    }

    .separator {
        font-size: 1.5rem; /* Adjust separator size */
        margin: 0 4px; /* Adjust margin around separators */
        margin-top: -20px; /* Slightly reduce top margin */
    }

    .deal-text {
        margin-top: 15px; /* Add spacing below the countdown */
        font-size: 1rem; /* Reduce font size */
        width: 100%;
        margin-left: -70px;
    }

    .vertical-divider {
        display: none; /* Hide vertical divider on smaller screens */
    }
}

/* Additional query for extra small devices */
@media (max-width: 480px) {
    .countdown-bar {
        padding: 10px; /* Reduce padding further */
        box-shadow: none; /* Simplify design for very small screens */
    }

    .countdown {
        flex-direction: column; /* Stack time elements vertically */
        gap: 10px; /* Add spacing between time sections */
    }

    .time-box span {
        font-size: 1.2rem; /* Further reduce font size */
    }

    .deal-text {
        font-size: 0.9rem; /* Adjust deal text size */
    }
}











/* Best Seller */
.new-arrivals {
    padding: 50px 0;
    text-align: center;
    background-color: var(--primary-bg); /* Use variable for background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header h2 {
    font-size: 48px; /* Main Heading */
    color: var(--heading-color); /* Use variable for heading color */
    margin-bottom: 10px;
}

.header p {
    font-size: 20px; /* Subheading */
    color: var(--body-color); /* Use variable for body text color */
    margin-bottom: 40px;
}

.new-arrivals h3 {
    font-size: 40px; /* Main Heading for individual products */
    color: var(--heading-color); /* Use variable for consistency */
}

.new-arrivals .description {
    font-size: 18px; /* Body Text */
    color: var(--body-color); /* Use variable for consistency */
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
}

.product-image {
    position: relative;
    opacity: 0;
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    transform: translateY(50px);
}


.product-image img {
    width: 450px; /* Increased width */
    height: 500px; /* Increased height */
    border-radius: 15px;
}


.product-details {
    text-align: left;
    max-width: 600px; /* Increased max-width */
}

.featured {
    font-size: 20px; /* Increased from 16px */
    color: #D87058;
    margin-bottom: 30px;
    font-weight: bold;
    margin-top: -25px;
}

.product-details h3 {
    font-size: 42px; /* Increased from 36px */
    color: #2B3840;
    margin-bottom: 30px;
    line-height: 1.2;
}

.product-details .description {
    font-size: 20px; /* Increased from 16px */
    color: #7C3626;
    margin-bottom: 30px;
    line-height: 1.6; /* Slightly increased line height for readability */
}

.cta-button3 {
    display: inline-block;
    background-color: #2B3840; /* Blue background color */
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button3:hover {
    background-color: #003d80; /* Darker blue on hover */
    color: #ffffff;
}


/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .new-arrivals {
        padding: 30px 10px; /* Reduce padding for smaller screens */
        text-align: center; /* Center align content */
    }

    .container {
        padding: 0 10px; /* Reduce side padding */
    }

    .header h2 {
        font-size: 36px; /* Reduce heading size */
        margin-bottom: 15px; /* Adjust spacing */
    }

    .header p {
        font-size: 16px; /* Adjust subheading size */
        margin-bottom: 30px; /* Reduce margin */
    }

    .content {
        flex-direction: column; /* Stack product details and image */
        gap: 30px; /* Add spacing between stacked elements */
    }

    .product-image img {
        width: 100%; /* Full width for smaller screens */
        height: auto; /* Maintain aspect ratio */
        max-width: 300px; /* Limit image size */
        border-radius: 10px; /* Slightly smaller border-radius */
        /* margin-left: -50px; */
    }

    .product-details {
        max-width: 100%; /* Allow full width for text */
        text-align: center; /* Center-align text */
    }

    .product-details h3 {
        font-size: 28px; /* Reduce heading size */
        margin-bottom: 20px;
    }

    .product-details .description {
        font-size: 16px; /* Adjust body text size */
        line-height: 1.4; /* Slightly reduce line height */
        margin-bottom: 20px;
        margin-left: 0px;
    }

    .featured {
        font-size: 16px; /* Adjust feature text size */
        margin-bottom: 20px;
        margin-top: 0; /* Remove negative margin */
    }

    .cta-button3 {
        font-size: 16px; /* Adjust button text size */
        padding: 8px 16px; /* Adjust padding */
        margin-left: -10px;
    }
}

/* Additional query for extra small devices */
@media (max-width: 480px) {
    .header h2 {
        font-size: 28px; /* Further reduce heading size */
    }

    .header p {
        font-size: 14px; /* Adjust subheading size */
    }

    .product-image img {
        max-width: 250px; /* Limit image width further */
    }

    .product-details h3 {
        font-size: 24px; /* Reduce heading size */
    }

    .product-details .description {
        font-size: 14px; /* Reduce text size */
    }

    .cta-button3 {
        font-size: 14px; /* Adjust button text size */
        padding: 6px 12px; /* Further reduce padding */
    }
}

































/* Product features */

.product-feature-section4 {
    padding: 60px 20px;
    background-color: var(--primary-bg); /* Use variable for background */
    text-align: center;
}

.container4 {
    max-width: 1200px;
    margin: 0 auto;
}

.header4 .subtitle {
    font-size: 16px; /* Subtitle font size */
    color: var(--heading-color); /* Subtitle color */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.header4 h2 {
    font-size: 36px; /* Section Heading */
    color: var(--heading-color); /* Use variable for heading */
    margin-bottom: 40px;
}

.content4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.features4 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    max-width: 300px;
}

.feature-item4 {
    display: flex;
    align-items: center; /* Ensure vertical alignment */
    gap: 15px;
}

.feature-item4.left .icon4 {
    order: 2; /* Icon comes after text for left-aligned */
}

.feature-item4.left .text4 {
    order: 1;
    text-align: right;
}

.feature-item4.right .icon4 {
    order: 1; /* Icon comes before text for right-aligned */
}

.feature-item4.right .text4 {
    order: 2;
    text-align: left;
}

.icon4 {
    font-size: 30px; /* Icon size */
    color: var(--subheading-color); /* Icon color matches subheading */
    min-width: 50px; /* Ensures consistent icon alignment */
}

.text4 h3 {
    font-size: 24px; /* Feature Subheading */
    color: var(--subheading-color); /* Use variable for subheading */
    margin: 0;
}

.text4 p {
    font-size: 18px; /* Feature Description */
    color: var(--body-color); /* Use variable for body text */
    margin: 0;
}

.product-image4 {
    max-width: 400px;
    flex: 1;
    position: relative;
}

.product-image4 img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Stagger animations for list items */
.features4 > .feature-item4 {
    animation-delay: calc(var(--index) * 0.2s);
}





/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .product-feature-section4 {
        padding: 30px 10px;
    }

    .header4 {
        order: 1; /* Ensure header comes first */
        text-align: center;
    }

    .header4 h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .header4 .subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .content4 {
        flex-direction: column; /* Stack content vertically */
        gap: 20px;
    }

    .features4 {
        order: 3; /* Ensure product features come second */
        max-width: 100%; /* Use full width */
        flex-direction: column; /* Stack features vertically */
        align-items: center;
    }

    .product-image4 {
        order: 2; /* Ensure product images come third */
        max-width: 300px; /* Limit image size */
        margin: 0 auto; /* Center align the image */
    }

    .product-image4 img {
        border-radius: 10px;
    }

    /* General Styling for Centering */
    /* General Styling for Features */
    .feature-item4 {
        display: flex;
        flex-direction: column; /* Stack icon above text */
        align-items: center; /* Center-align icon and text */
        justify-content: center; /* Ensure vertical centering if needed */
        text-align: center; /* Center-align text */
        gap: 10px; /* Add spacing between icon and text */
        margin: 20px 0; /* Add spacing between features */
        width: 100%; /* Full width for consistent alignment */
    }

    /* Styling for the Icons */
    .icon4 {
        font-size: 30px; /* Set uniform size for icons */
        color: var(--subheading-color); /* Consistent icon color */
        margin: 0 auto; /* Center icon horizontally */
        display: flex; /* Flexbox for centering */
        justify-content: center; /* Ensure horizontal centering */
        align-items: center; /* Ensure vertical centering */
    }

    /* Styling for Subheading (h3) */
    .text4 h3 {
        font-size: 24px; /* Adjust heading size */
        color: var(--subheading-color); /* Consistent heading color */
        margin: 0; /* Remove default margin */
        text-align: center; /* Center text */
    }

    /* Styling for Description (p) */
    .text4 p {
        font-size: 16px; /* Adjust description size */
        color: var(--body-color); /* Consistent description color */
        margin: 0; /* Remove default margin */
        line-height: 1.4; /* Adjust line height for readability */
        text-align: center; /* Center text */
    }


}

/* Additional query for extra small devices */
@media (max-width: 480px) {

    
    .header4 h2 {
        font-size: 24px;
    }

    .header4 .subtitle {
        font-size: 12px;
    }

    .icon4 {
        font-size: 24px; /* Further reduce icon size */
    }

    .text4 h3 {
        font-size: 18px; /* Reduce heading size */
    }

    .text4 p {
        font-size: 14px; /* Reduce description size */
    }

    .product-image4 {
        max-width: 250px;
    }
}






















/* Benefit */

.product-feature-section3 {
    padding: 60px 0;
    background-color: var(--primary-bg); /* Use variable for background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container3 {
    max-width: 1200px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.text-content3 {
    max-width: 500px;
    text-align: left;
    flex: 1;
}

.text-content3 h2 {
    font-size: 36px; /* Section Heading */
    color: var(--heading-color); /* Use variable for heading */
    margin-bottom: 20px;
}

.text-content3 p {
    font-size: 20px; /* Body Text */
    color: var(--body-color); /* Use variable for body text */
    margin-bottom: 30px;
}

.features-list3 {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Consistent spacing between items */
}

.feature-item3 {
    display: flex;
    align-items: flex-start;
    gap: 20px; /* Consistent gap between icon and text */
}

.feature-icon3 {
    font-size: 36px; /* Icon size */
    color: var(--icon-color); /* Use variable for icon color */
    min-width: 50px; /* Ensures consistent alignment */
}

.feature-text3 h3 {
    font-size: 24px; /* Feature Subheading */
    color: var(--subheading-color); /* Use variable for subheading */
    margin: 0;
}

.feature-text3 p {
    font-size: 18px; /* Feature Description */
    color: var(--body-color); /* Use variable for body text */
    margin: 0;
}

.product-image3 {
    max-width: 450px; /* Consistent max-width */
    flex: 1;
}

.product-image3 img {
    width: 100%;
    height: auto;
    border-radius: 15px; /* Adds rounded corners */
}


/* Default hidden state */
.animate {
    opacity: 0;
    transform: translateY(50px); /* Adjust based on animation effect */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Initial hidden state for animations */
.animate-fade-up,
.animate-fade-left,
.animate-fade-right,
.animate-scale {
    opacity: 0;
    transform: translateY(50px); /* Default transform for fade-up */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-left {
    transform: translateX(-50px); /* Move from left */
}

.animate-fade-right {
    transform: translateX(50px); /* Move from right */
}

.animate-scale {
    transform: scale(0.8); /* Scale down initially */
}

/* Visible state when the animation triggers */
.visible {
    opacity: 1;
    transform: translateY(0); /* Reset transform */
}

/* Initial state for animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px); /* Move elements slightly down */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Visible state to trigger animation */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0); /* Reset to the original position */
}


/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide-in-left animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Example usage */
.animate.slide-in-left {
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
}


/* Stagger delay for child elements */
.animate.stagger:nth-child(1) {
    animation-delay: 0.1s;
}
.animate.stagger:nth-child(2) {
    animation-delay: 0.2s;
}
.animate.stagger:nth-child(3) {
    animation-delay: 0.3s;
}





/* Mobile Responsiveness */
@media (max-width: 768px) {
    .product-feature-section3 {
        padding: 40px 20px; /* Adjust padding for smaller screens */
        flex-direction: column; /* Stack content vertically */
    }

    .container3 {
        flex-direction: column; /* Stack text and image vertically */
        gap: 30px; /* Adjust spacing between elements */
        align-items: center; /* Center content on smaller screens */
    }

    .text-content3 {
        max-width: 100%; /* Use full width for text content */
        text-align: center; /* Center-align text for better readability */
    }

    .text-content3 h2 {
        font-size: 28px; /* Reduce heading size */
        margin-bottom: 15px; /* Adjust spacing */
    }

    .text-content3 p {
        font-size: 18px; /* Adjust body text size */
        margin-bottom: 20px; /* Adjust spacing */
    }

    .features-list3 {
        gap: 20px; /* Adjust spacing between feature items */
        align-items: center; /* Center-align features */
    }

    .feature-item3 {
        flex-direction: column; /* Stack icon and text vertically */
        align-items: center; /* Center-align content */
        text-align: center; /* Center-align text */
    }

    .feature-icon3 {
        font-size: 28px; /* Adjust icon size */
    }

    .feature-text3 h3 {
        font-size: 20px; /* Adjust subheading size */
    }

    .feature-text3 p {
        font-size: 16px; /* Adjust feature description size */
    }

    .product-image3 {
        max-width: 100%; /* Allow image to take full width */
        text-align: center; /* Center-align image */
        /* margin-left: -100px; */
    }

    .product-image3 img {
        max-width: 90%; /* Ensure the image scales properly */
        border-radius: 10px; /* Adjust border-radius for smaller screens */
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .text-content3 h2 {
        font-size: 24px; /* Further reduce heading size */
    }

    .text-content3 p {
        font-size: 16px; /* Reduce text size for smaller screens */
    }

    .feature-icon3 {
        font-size: 24px; /* Reduce icon size */
    }

    .feature-text3 h3 {
        font-size: 18px; /* Reduce subheading size */
    }

    .feature-text3 p {
        font-size: 14px; /* Reduce feature description size */
    }

    .product-image3 img {
        max-width: 100%; /* Ensure full width for images */
    }
}










/* Multiple Product Section Styling */
.product-section {
    text-align: center;
    padding: 50px 20px;
    color: #333;
}

.product-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: normal;
}

/* Product Grid Styling */
.product-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Product Card Styling */
.product-card {
    background-color: #fff;
    border-radius: 12px; /* Rounded corners */
    padding: 5px; /* Minimal padding */
    width: 400px;
    text-align: left;
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.product-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px; /* Rounded corners on image */
    margin-bottom: 15px;
}

/* Product Title Styling */
.product-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 15px 0 10px;
    text-align: left;
}

/* Price Styling */
.price {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
    display: block;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9rem;
    margin-right: 10px;
}

/* Button Styling */
.explore-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2B3840; /* Blue background for button */
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.explore-btn:hover {
    background-color: #003399; /* Darker shade on hover */
    color: #ffffff;
}

/* Ribbon Styling */
.ribbon {
    position: absolute;
    top: 35px;
    left: -35px;
    background-color: #FFD700; /* Gold color for the ribbon */
    color: #333;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 20px;
    transform: rotate(-45deg); /* Rotates the ribbon */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    z-index: 1; /* Ensures it appears on top */
}

/* Add initial state for animation */
.product-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When the product card is visible */
.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Initial state for the heading animation */
.product-section h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Visible state for the heading */
.product-section h2.visible {
    opacity: 1;
    transform: translateY(0);
}


















@media (max-width: 768px) {
    .customer-reviews-section {
        padding: 40px 10px; /* Reduce padding for smaller screens */
        text-align: center; /* Center-align content */
    }

    .container-reviews {
        max-width: 100%; /* Allow full width on smaller screens */
    }

    .customer-reviews-section h2 {
        font-size: 28px; /* Reduce heading size */
        margin-bottom: 30px; /* Reduce margin for smaller screens */
    }

    .reviews-grid {
        gap: 20px; /* Reduce gap between cards */
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory; /* Maintain snapping for smooth scrolling */
    }

    .review-card {
        flex: 0 0 calc(50% - 20px); /* Show 2 cards at a time */
        max-width: calc(50% - 20px); /* Ensure consistent width for 2 cards */
        text-align: left; /* Retain left-aligned text */
        margin: 0; /* Remove extra margins */
    }

    .customer-details {
        flex-direction: column; /* Stack avatar and text vertically */
        align-items: center; /* Center-align content */
        text-align: center; /* Center text */
    }

    .customer-details img {
        width: 40px; /* Adjust avatar size */
        height: 40px; /* Adjust avatar size */
        margin-right: 10px; /* Space between avatar and text */
    }

    .customer-details h3 {
        font-size: 16px; /* Adjust heading size */
    }

    .customer-details p {
        font-size: 12px; /* Adjust subtext size */
    }

    .review-text {
        font-size: 14px; /* Adjust review text size */
        line-height: 1.4; /* Adjust line height */
    }

    .carousel-prev,
    .carousel-next {
        display: none; /* Hide navigation buttons in mobile view if not needed */
    }
}

@media (max-width: 480px) {
    .customer-reviews-section h2 {
        font-size: 24px; /* Further reduce heading size */
    }

    .review-card {
        flex: 0 0 calc(50% - 15px); /* Keep 2 cards visible on very small screens */
        max-width: calc(50% - 15px); /* Adjust width for smaller screens */
    }

    .customer-details img {
        width: 30px; /* Further reduce avatar size */
        height: 30px;
    }

    .customer-details h3 {
        font-size: 14px; /* Further adjust heading size */
    }

    .customer-details p {
        font-size: 10px; /* Reduce subtext size */
    }

    .review-text {
        font-size: 12px; /* Further reduce review text size */
    }

    .carousel-prev,
    .carousel-next {
        top: auto; /* Allow buttons to float below */
        bottom: 10px; /* Position buttons at the bottom */
        left: 20px; /* Adjust left button position */
        right: 20px; /* Adjust right button position */
    }
}




/* Customer Reviews Section Styling */
.customer-reviews-section {
    padding: 60px 20px;
    background-color: var(--primary-bg); /* Matches the primary background */
    text-align: center;
}

.container-reviews {
    max-width: 1200px;
    margin: 0 auto;
}

.customer-reviews-section h2 {
    font-size: 36px; /* Section Heading */
    color: var(--heading-color);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.reviews-grid.scrollable {
    display: flex;
    gap: 30px;
    overflow-x: auto; /* Enable horizontal scrolling */
    flex-wrap: nowrap; /* Prevent wrapping */
    padding-bottom: 10px; /* Padding for scrollbar */
    scroll-snap-type: x mandatory; /* Enable snapping */
}

.review-card {
    scroll-snap-align: center; /* Align cards to the center */
    flex: 0 0 calc(33.333% - 20px); /* Ensure 3 reviews are shown at a time */
    max-width: calc(33.333% - 20px); /* Consistent card width */
    opacity: 0; /* Hidden initially */
    transform: translateY(20px); /* Animate from below */
    transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in animation */
}

.reviews-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar on Chrome, Safari, and Edge */
}

.reviews-grid::-webkit-scrollbar-thumb {
    background-color: #D87058; /* Scrollbar thumb color */
    border-radius: 10px;
}

.reviews-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto; /* Enable horizontal scrolling */
    flex-wrap: nowrap; /* Prevent wrapping */
    scroll-snap-type: x mandatory; /* Enable snapping */
    -ms-overflow-style: none; /* Hide scrollbar on IE and Edge */
    scrollbar-width: none; /* Hide scrollbar on Firefox */
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

/* Individual Review Card */
.review-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    scroll-snap-align: center; /* Align cards to the center */
    flex: 0 0 calc(33.333% - 20px); /* Show 3 reviews at a time */
    max-width: calc(33.333% - 20px); /* Consistent card width */
    opacity: 0; /* Hidden initially */
    transform: translateY(20px); /* Animate from below */
    transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in animation */
}

.review-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.review-card img {
    max-height: 350px;
}

.customer-details {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.customer-details img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.customer-details h3 {
    font-size: 18px;
    color: var(--subheading-color);
    margin: 0;
}

.customer-details p {
    font-size: 14px;
    color: var(--icon-color);
    margin: 5px 0 0;
}

.review-text {
    font-size: 16px;
    color: var(--body-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.customer-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    object-fit: cover;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D87058;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    border-radius: 50%;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}


/* Fade-in Animation for Elements */
.animate-fade-up,
.animate-fade-left,
.animate-fade-right {
    opacity: 0;
    transform: translateY(20px); /* Default animation direction */
    transition: opacity 1s ease, transform 1s ease;
}

.animate-fade-left {
    transform: translateX(-20px);
}

.animate-fade-right {
    transform: translateX(20px);
}

.animate-fade-up.visible,
.animate-fade-left.visible,
.animate-fade-right.visible {
    opacity: 1;
    transform: translateY(0);
}




/* Assembly Section Styling */
.assembly-ease-section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--primary-bg); /* Matches the primary background */
}

.container-assembly {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    text-transform: capitalize;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Content Layout */
.assembly-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Text Block Styling */
.text-block {
    flex: 1;
    max-width: 500px;
    font-size: 18px;
    color: var(--body-color);
    line-height: 1.8;
    text-align: left;
    border-left: 4px solid #D87058; /* Highlight border */
    padding-left: 20px;
}

/* Video Block Styling */
.video-block {
    flex: 1;
    max-width: 600px;
}

.video-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.video-wrapper iframe:hover {
    transform: scale(1.02); /* Subtle zoom effect on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .assembly-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .text-block {
        text-align: center;
        padding-left: 0;
        border-left: none;
    }
}


/* Animation Classes */
.animate-fade-up,
.animate-fade-left,
.animate-fade-right {
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Default animation direction (downwards) */
    transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in and movement */
}

.animate-fade-left {
    transform: translateX(-20px); /* Slide in from left */
}

.animate-fade-right {
    transform: translateX(20px); /* Slide in from right */
}

/* When Visible */
.animate-fade-up.visible,
.animate-fade-left.visible,
.animate-fade-right.visible {
    opacity: 1;
    transform: translateY(0); /* Reset position */
}

/* Utility for fade-left and fade-right */
.animate-fade-left.visible {
    transform: translateX(0); /* Reset horizontal position */
}

.animate-fade-right.visible {
    transform: translateX(0); /* Reset horizontal position */
}


















/* Featured Blogs Section */
.featured-blogs5 {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.container5 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header5 {
    margin-bottom: 40px;
}

.subtitle5 {
    color: #F05A28; /* Accent color */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title5 {
    font-size: 36px;
    color: #2B3840;
    margin: 0;
}

/* Blog Grid */
.blogs-grid5 {
    display: flex;
    gap: 30px;
    overflow-x: auto; /* Enable horizontal scrolling */
    padding-bottom: 10px; /* Padding for scrollbar */
    scroll-snap-type: x mandatory; /* Snap scroll for smooth experience */
    justify-content: center;
}

.blogs-grid5::-webkit-scrollbar {
    height: 8px; /* Custom scrollbar height */
}

.blogs-grid5::-webkit-scrollbar-thumb {
    background-color: #D87058; /* Scrollbar thumb color */
    border-radius: 10px;
}

/* Blog Card */
.blog-card5 {
    display: block; /* Ensures the entire card is clickable */
    text-decoration: none; /* Removes underline from links */
    color: inherit; /* Ensures text color matches parent styles */
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    width: 350px;
}

.blog-card5:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


.blog-card5 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content5 {
    padding: 20px;
}

.blog-content5 h3 {
    font-size: 20px;
    color: #2B3840;
    margin-bottom: 10px;
}

.blog-date5 {
    font-size: 14px;
    color: #7C3626;
    margin-bottom: 15px;
}

.blog-description5 {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}



@media (max-width: 768px) {
    .featured-blogs5 {
        padding: 40px 15px; /* Adjust padding for smaller screens */
    }

    .section-header5 {
        margin-bottom: 30px; /* Reduce spacing */
    }

    .subtitle5 {
        font-size: 14px; /* Reduce subtitle size */
        margin-bottom: 8px; /* Adjust spacing */
    }

    .section-title5 {
        font-size: 28px; /* Reduce title size */
        margin: 0;
    }

    .blogs-grid5 {
        display: flex;
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center align cards horizontally */
        gap: 20px; /* Add spacing between cards */
        overflow-x: hidden; /* Disable horizontal scrolling */
    }

    .blog-card5 {
        width: 90%; /* Take up most of the width */
        max-width: 400px; /* Add a max-width for consistent sizing */
        margin: 0 auto; /* Center align the card */
    }

    .blog-card5 img {
        width: 100%; /* Ensure it remains responsive */
        height: 150px; /* Reduce the height for smaller screens */
    }

    .blog-content5 {
        padding: 15px; /* Adjust padding inside the blog card */
    }

    .blog-content5 h3 {
        font-size: 18px; /* Adjust blog title size */
        margin-bottom: 8px; /* Reduce margin */
    }

    .blog-date5 {
        font-size: 14px; /* Adjust date font size */
        margin-bottom: 10px; /* Adjust spacing */
    }

    .blog-description5 {
        font-size: 14px; /* Adjust description size */
        line-height: 1.4; /* Adjust line height */
    }
}

@media (max-width: 480px) {
    .section-title5 {
        font-size: 24px; /* Further reduce title size */
    }

    .blogs-grid5 {
        gap: 15px; /* Reduce gap further for small screens */
    }

    .blog-card5 {
        width: 100%; /* Full width for very small screens */
        max-width: none; /* Remove max-width for tighter spaces */
    }

    .blog-content5 h3 {
        font-size: 16px; /* Further reduce title size */
    }

    .blog-description5 {
        font-size: 12px; /* Adjust description size for small screens */
    }

    .blog-card5 img {
        height: 120px; /* Further reduce the height for very small screens */
    }

}

















/* Trusted By */
.trusted-by {
    text-align: center;
    margin: 40px 0;
}

.trusted-by h2 {
    font-size: 1.5em;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px; /* Space between each logo */
}

.trusted-logos img {
    max-height: 100px; /* Uniform height for all logos */
    max-width: 200px; /* Prevent logos  being too wide */
    opacity: 1; /* Optional: adjust opacity for a subtle effect */
    transition: opacity 0.3s ease;
}

.trusted-logos img:hover {
    opacity: 1; /* Logo highlights when hovered */
}














.cta-section {
    background-color: #D87058; /* Background color for the section */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 250px; /* Adjust padding as needed */
    height: 300px;
}

.cta-content {
    color: white;
}

.cta-content h2 {
    font-weight: bold;
    margin: 0;
    color: #f7f3f3 !important;
}

.cta-content p {
    margin: 5px 0 0 0;
    color: #f7f3f3;
}

.cta-button4 {
    display: inline-block;
    background-color: #2B3840; /* Blue background color */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button4:hover {
    background-color: #003d80; /* Darker blue on hover */
    color: #ffffff;
}


@media (max-width: 768px) {
    .cta-section {
        flex-direction: column; /* Stack content vertically */
        justify-content: center; /* Center content vertically */
        align-items: center; /* Center content horizontally */
        padding: 40px 20px; /* Adjust padding for smaller screens */
        max-width: 100%; /* Remove max-width restriction */
        text-align: center; /* Center-align text */
    }

    .cta-content h2 {
        font-size: 20px; /* Reduce heading size */
        margin-bottom: 10px; /* Add spacing below heading */
    }

    .cta-content p {
        font-size: 14px; /* Maintain smaller text size */
        margin: 0 0 20px 0; /* Add spacing below paragraph */
    }

    .cta-button4 {
        font-size: 0.9em; /* Slightly reduce button font size */
        padding: 8px 16px; /* Adjust padding for smaller buttons */
        /* margin-left: -50px; */
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 30px 15px; /* Further reduce padding */
    }

    .cta-content h2 {
        font-size: 18px; /* Further reduce heading size */
    }

    .cta-button4 {
        font-size: 0.8em; /* Further reduce button font size */
        padding: 6px 12px; /* Adjust button padding */
    }
}












/* Footer Styling */
.footer {
    background-color: #4C5B61; /* Dark background color */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #ffffff; /* White text color */
}

.footer-content {
    display: flex; /* Flexbox layout */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-between; /* Equal space between columns */
    align-items: flex-start; /* Align items to the top */
    max-width: 1200px; /* Centered container width */
    margin: 0 auto;
    gap: 10px; /* Reduced gap between columns */
}

.footer-logo-section {
    flex: 1 1 300px;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ffffff;
    width: 90%;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social-icons a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 30px;
}

.footer-social-icons a:hover {
    color: #d1d5d8; /* Lighter hover effect */
}

.footer-links {
    display: flex;
    flex-wrap: wrap; /* Ensure wrapping for smaller screens */
    gap: 20px; /* Reduced space between columns */
    text-align: left;
    flex: 3 1 auto; /* Adjust size based on available space */
}

.footer-column {
    flex: 1 1 150px; /* Equal size columns */
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d1d5d8;
}

/* Move Legal Section Up */
.footer .footer-column:last-child {
    align-self: flex-start; /* Align "Legal" with other columns */
}

/* Bottom Section */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack items vertically on small screens */
        text-align: center;
        gap: 20px; /* Adjust gap for smaller screens */
    }

    .footer-column {
        text-align: center; /* Center-align columns */
    }

    .footer-social-icons {
        justify-content: center; /* Center social icons */
    }
}































/* Cart section */
/* Overall Cart Styling */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust opacity as needed */
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Initially hidden */
    transition: opacity 0.3s ease;
    z-index: 999;
    /* Make sure it's above other content */
}

.cart-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: white;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    padding: 20px;
    z-index: 1000;
    transition: right 0.3s ease;
    font-family: Arial, sans-serif;
}

.cart-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.cart-content {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    max-height: 60vh;
    overflow-y: auto;
}

/* Cart Item Styling */
.cart-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background-color: #fafafa;
}

.cart-item-img {
    width: 80px;
    height: auto;
    margin-right: 15px;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-color {
    color: #666;
    margin-bottom: 8px;
}

/* Quantity Styling */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}
.checkout-btn {
    background-color: #d87058;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Price Styling */
.cart-item-price {
    color: #333;
    font-weight: bold;
    margin-top: 10px;
}

/* Footer Styling */
.cart-footer {
    text-align: center;
    padding-top: 20px;
}

.cart-subtotal {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.cart-shipping-info {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 20px;
}

.view-cart-btn {
    background-color: #d87058;
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-cart-btn:hover {
    background-color: #b2573e;
}

/* Close Button Styling */
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #d87058;
}

/* Close Button Styling */
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #d87058;
}

/* Default settings for the hamburger menu (hidden for larger screens) */
.hamburger-menu {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

/* Navbar links styling for desktop */
#navbarMenu {
    display: flex;
    gap: 20px;
}

.excel-download {
    display: none;  /* Hide by default (only shown in mobile view) */
}

/* Mobile-specific styles */
@media (max-width: 767px) {

    /* Show hamburger menu button on mobile */
    .hamburger-menu {
        display: block;
        position: absolute;
        left: 10px;
        top: 15px;
        z-index: 1001;
    }

    /* Hide navbar links by default */
    #navbarMenu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding-top: 60px;
        /* Adjust for the menu icon */
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        margin: 0;
    }

    /* Menu open state */
    #navbarMenu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Style for links in the sliding menu */
    #navbarMenu li {
        margin: 15px 0;
        text-align: center;
    }

    #navbarMenu li a {
        font-size: 1.2rem;
        color: #333;
    }

    /* Optional: style for icons inside the mobile menu */
    #navbarMenu li a i {
        margin-right: 8px;
    }

    .cart-container {
        width: 90%;
        right: -90%;
    }

    .cart-footer {
        text-align: start;
    }
}







/* Search Modal Styling */
.search-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

.search-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.search-modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.search-modal-content input {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.search-modal-content button {
    padding: 10px 20px;
    background-color: #c4422a;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.search-modal-content button:hover {
    background-color: #a83224;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: black;
}

/* Error message styling */
.error-message {
    color: #d9534f; /* Red color for error text */
    margin-top: 10px;
    font-size: 14px;
    display: none; /* Initially hidden */
}
