@media (max-width: 480px) {
    .main-content {
        height: 500px;
    }
}
.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}
.main-content {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, rgba(30, 95, 133, 0.8) 0%, rgba(37, 122, 171, 0.8) 100%),
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover; */
    /* background: linear-gradient(135deg, rgb(48 48 48 / 70%) 0%, rgb(56 67 74 / 80%) 100%), url(../images/conveyors/conveyors.jpg) center / cover; */
    background: url(../images/conveyors/conveyors.jpg) 50% / cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    z-index: 99;
}

/* .main-content:after{
    content: "";
    display: block;
    height: 100%;
    background: url(../images/conveyors/Bg_06.png) bottom no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    z-index: -1;
} */

.main-content .overlay {
    opacity: 0.6;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: linear-gradient(-29deg, #616d86, #1f1c2c) !important;
}

.container-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 var(--spacing-sm);
}

.container-title {
    /* font-size: 3.5rem; */
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.container-subtitle {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

/* .overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 63, 92, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.trolley-product-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: var(--off-white);
}

.trolley-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .trolley-product-image img {
    transform: scale(1.1);
}

.trolley-product-image:hover .overlay{
    transform: translateY(0);
}
.overlay h3{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white !important;
}

.overlay p{
    margin-top: 5px;
    font-size: 0.9rem;
    opacity: 0.9;
    color: white !important;
} */