/* Custom Styling */
body {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}


.header {
   
    background-color: #ffffff; /* White background for the header */
    background-size: cover; /* Ensures the image covers the entire header */
    background-position: center; /* Centers the image */
    border-bottom: 1px solid #eaeaea; /* Light border for separation */
    padding: 5px 0;
}


.header .navbar-brand img {
    height: 20px;
    max-height: 50px; /* Logo height */
}

.navbar-nav .nav-link {
    font-size: 0.8rem !important;
    color: #333;
    margin-right: 20px;
}

.brand-text {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 2.0rem;
}
.text-orange {
    color: orange; /* Use your desired orange color */
}






.hero-section {
    position: relative;
    height: 60vh; /* Adjust this value to increase or decrease height */
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Places the image behind the text */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the section */
}

.btn-purple {
    background-color: #6f42c1; /* Change this to your desired shade */
    color: white; /* Adjust text color if needed */
}

.btn-purple:hover {
    background-color: #5a3e9c; /* Darker shade for hover effect */
}

.btn-outline-purple {
    color: #6f42c1; /* Text color */
    border: 2px solid #6f42c1; /* Border color */
}

.btn-outline-purple:hover {
    background-color: #6f42c1; /* Background color on hover */
    color: white; /* Text color on hover */
}












.new-products-section {
    max-width: 1200px; /* Adjust body width */
    margin: auto; /* Center body */
    padding: 20px; /* Optional: Add padding */
}
.new-products-section-title {
    text-align: center; /* Center the heading and subheading */
    /*margin-bottom: 40px;*/ /* Space below the section title */
}

.new-products-section-title h3 {
    font-size: 2rem !important;
}

.new-products-section-title h4 {
    max-width: 800px; /* Adjust width to ensure it's not too wide */
    margin: 0 auto; /* Center horizontally */
    color: #666; /* Optional: Change color for contrast */
    font-size: 1.2rem; /* Resize the font size of the subheading */
    line-height: 1.5; /* Improve readability */
}














.product-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-img {
    object-fit: cover;
    height: 250px;
    width: 100%;
}

.hover-scale:hover .product-img {
    transform: scale(1.05);
    transition: transform 0.5s ease-in-out;
}

.btn-outline-dark {
    color: #333;
    border-color: #333;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #333;
    color: #fff;
}

.card-body {
    background-color: #f9f9f9;
    border-radius: 0 0 0.5rem 0.5rem;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.transition-background {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.card-text {
    font-size: 1rem;
}
















    /* Modern Gradient for Text and Badge */
.text-gradient {
    background: linear-gradient(45deg, #ff6f61, #ff9966);
    -webkit-background-clip: text;  /* For WebKit browsers (Safari, Chrome, etc.) */
    background-clip: text;          /* Standard for other modern browsers */
    -webkit-text-fill-color: transparent;  /* For WebKit browsers to make text transparent */
    
}


    /* Modern Banner Styling */
    .deal-banner {
        position: relative;
    }

    .banner-img {
        object-fit: cover;
        width: 100%;
        height: 350px;
    }

    .deal-info-overlay {
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .deal-banner:hover .deal-info-overlay {
        opacity: 1;
    }

    /* Modern Button Styling */
    .btn-primary {
        background-color: #3181e9;
        border: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #ff9966;
        transform: translateY(-5px);
    }

    .hover-scale {
        transition: transform 0.3s ease;
    }

    .hover-scale:hover {
        transform: scale(1.05);
    }

    /* Responsive Typography */
    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.2rem;
    }

    .display-6 {
        font-size: 1.75rem;
    }

    .bg-gradient {
        background: linear-gradient(45deg, rgba(255, 111, 97, 0.85), rgba(255, 153, 102, 0.85));
    }

    .rounded-lg {
        border-radius: 1rem;
    }

    .shadow-lg {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

















.trending-products-section {
    padding: 40px 0;
}

.trending-products-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.trending-products-section h3 {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.125rem;
    color: #666;
    text-align: center;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
    object-fit: cover;
    height: 300px;
}

.gradient-badge {
    background: linear-gradient(45deg, #f492f0, #a18dce); /* Modern gradient color */
    /* border-radius: 0.5rem 0 0 0.5rem; */
}

.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.product-card-title {
    font-size: 1.25rem;
    color: #333;
}

.product-card-price {
    font-size: 1.2rem;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.hover-scale:hover .product-image {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.transition-background {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Modern spacing for the card */
.card-body {
    padding: 0.7rem;
    background-color: #f9f9f9;
    border-radius: 0 0 0.5rem 0.5rem;
}










.clients-testimonials {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.clients-testimonials h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-item {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-item p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-item h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.testimonial-item h6 {
    font-size: 1rem;
    color: #999;
}

.testimonial-item img {
    border-radius: 50%;
    max-width: 80px;
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .testimonial-item {
        padding: 30px;
    }
}







.promotion-banner {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    text-align: center;
    color: #fff;
    background-color: #6f42c1; /* Purple background */
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.promotion-banner h2 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}

.promotion-banner p {
    font-size: 1.25rem;
    margin: 10px 0 0;
}

















