.hero {
    position: relative;
    background-image: url('/assets/images/hero-section.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-top: -80px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 80px);
    background-color: rgba(255, 255, 255, 0.5); /* Adjust the alpha value to control the opacity of the blur */
    backdrop-filter: blur(10px); /* Adjust the blur radius as needed */
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.parallax-container img {
    transition: transform 0.5s ease; /* Adjust the transition duration for smoother movement */
}

.parallax-move {
    transform: translateX(20px); /* Adjust the amount of movement here */
}

/* Features Section Styles */
.features {
    padding: 80px 0;
    background-image: url('/assets/images/features.webp');
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: center; /* Move the image to the bottom */
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Adjust the alpha value to control the opacity of the blur */
    backdrop-filter: blur(10px); /* Adjust the blur radius as needed */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff); /* Gradient from transparent to white */
    z-index: 1;
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: bold;
    color: #ff5400 !important;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    z-index: 2;
}

.features h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    z-index: 2;
}

.features p {
    font-size: 1.1rem;
    color: #666;
    position: relative;
    z-index: 2;
}

.feature {
    text-align: center;
    margin-bottom: 40px;
}

.feature i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff5400;
    position: relative;
    z-index: 2;
}

/* Services Section Styles */
.services {
    padding: 80px 0;
    background-image: url('/assets/images/services-IV.webp');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center; /* Move the image to the bottom */
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Adjust the alpha value to control the opacity of the blur */
    backdrop-filter: blur(5px); /* Adjust the blur radius as needed */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff); /* Gradient from transparent to white */
    z-index: 1;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5400 !important;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    z-index: 2;
}

.service {
    text-align: center;
    margin-bottom: 40px;
}

.service i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff5400;
    position: relative;
    z-index: 2;
}

.service h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    z-index: 2;
}

.service p {
    font-size: 1.1rem;
    color: #666;
    position: relative;
    z-index: 2;
}

/* Top Sellers Section */
.top-sellers {
    padding: 80px 0;
    background-image: url('https://images.unsplash.com/photo-1544376798-89aa6b82c6cd?q=80&w=1287&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center; /* Move the image to the bottom */
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-sellers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Adjust the alpha value to control the opacity of the blur */
    backdrop-filter: blur(20px); /* Adjust the blur radius as needed */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff); /* Gradient from transparent to white */
    z-index: 1;
}

.top-sellers h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.slick-carousel .slick-slide {
    display: flex;
    justify-content: center;
}

.seller-card {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.seller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.seller-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.seller-card h3 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin: 20px 15px 10px;
    position: relative;
    z-index: 2;
}

.seller-card p {
    font-size: 16px;
    color: #666;
    margin: 0 15px 20px;
    flex: 1;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.seller-card .btn {
    margin: 0 15px 20px;
    display: block;
    text-align: center;
    position: relative;
    z-index: 2;
}


/* Media query for smaller screens */
@media (max-width: 768px) {
    .services, .features, .hero {
        text-align: center;
        text-justify: auto;
        font-weight: bolder;
        background-position: center; /* Option 2: Move the image to the bottom */
        background-size: cover; /* Option 2: Cover the entire section */
    }

    .hero:before, .features:before, .services::before {
        backdrop-filter: blur(50px) !important; /* Adjust the blur radius as needed */
    }

    .hero p, .features p, .service p {
        color: #333 !important; /* Darker color for paragraph text */
    }
}

@media (max-width: 844px) {
    .services, .features, .hero {
        text-align: center;
        text-justify: auto;
        font-weight: bolder;
        background-position: center; /* Option 2: Move the image to the bottom */
        background-size: cover; /* Option 2: Cover the entire section */
    }

    .hero:before, .features:before, .services::before {
        backdrop-filter: blur(50px) !important; /* Adjust the blur radius as needed */
    }

    .hero p, .features p, .service p {
        color: #333 !important; /* Darker color for paragraph text */
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .seller-card {
        height: 520px;
    }

    .seller-image {
        height: 180px;
    }

    .seller-card p {
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 992px) {
    .seller-card {
        height: 400px;
    }

    .seller-image {
        height: 160px;
    }

    .seller-card p {
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 768px) {
    .seller-card {
        height: 350px;
    }

    .seller-image {
        height: 140px;
    }

    .seller-card p {
        -webkit-line-clamp: 6;
    }
}

@media (max-width: 576px) {
    .top-sellers h2 {
        font-size: 28px;
    }

    .seller-card {
        height: 400px;
    }

    .seller-image {
        height: 120px;
    }

    .seller-card h3 {
        font-size: 20px;
    }

    .seller-card p {
        font-size: 14px;
        -webkit-line-clamp: 7;
    }

    .seller-card .btn {
        margin: 0 10px 15px;
    }
}