@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&family=Noto+Sans+Arabic:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');








/* Base state for all animated elements */
.animate-on-scroll {
    opacity: 0;
    filter: blur(5px) grayscale(100%);
    transition: all 1s ease;
}

/* Triggered when in view */
.animate-on-scroll.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* Directions */
.animate-on-scroll.from-left {
    transform: translateX(-40px);
}

.animate-on-scroll.from-right {
    transform: translateX(40px);
}

.animate-on-scroll.from-bottom {
    transform: translateY(40px);
}

/* Optional: override transform only when visible */
.animate-on-scroll.from-left.in-view,
.animate-on-scroll.from-right.in-view,
.animate-on-scroll.from-bottom.in-view {
    transform: translate(0, 0);
    filter: blur(0) grayscale(0);
}








@keyframes modalopen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0% {
        opacity: 1;
        transform: translateY(-3px) translateX(-50%);
    }

    100% {
        opacity: 0;
        transform: translateY(40px) translateX(-50%);
    }
}










/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Baloo Bhaijaan 2", sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    direction: rtl;
}

/* Header Styles */
header {
    background-color: #2c3e50;
    color: white;
    padding: clamp(10px, 3vw, 20px) clamp(10px, 3vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-icons {
    display: flex;
    gap: clamp(20px, 3.5vw, 30px);
}

.header-icons i {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    cursor: pointer;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.favorites-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* WhatsApp Icon */
.whatsapp-button {
    position: fixed;
    bottom: clamp(40px, 4vw, 40px);
    left: clamp(10px, 2vw, 20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.05);
}

.whatsapp-icon {
    width: clamp(50px, 5vw, 50px);
    height: clamp(50px, 5vw, 50px);
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-text {
    margin-top: 5px;
    background: white;
    padding: 2px 5px;
    color: #075E54;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: clamp(12px, 2vw, 15px);
    border-radius: 3px;
    text-align: center;
}

/* Animation for pulse effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-icon.pulse {
    animation: pulse 1.5s infinite;
}










/* Website Intro Section */
.intro-section {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height, 80px));
    min-height: calc(100vh - var(--header-height, 80px));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.intro-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    top: 0;
    left: 0;
}

.intro-image.active {
    opacity: 1;
}

.intro-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 2;
    top: 0;
    left: 0;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 3;
    color: white;
    padding: clamp(0px, 2vw, 10px) clamp(0px, 2vw, 10px);
}

.intro-headline {
    font-size: clamp(1.1rem, 5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    opacity: 0;
    filter: blur(5px);
    transform: translateY(30px);
    transition: all 0.8s ease;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.intro-headline.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.intro-subhead {
    font-size: clamp(0.8rem, 4vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    filter: blur(5px);
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.intro-subhead.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.intro-cta {
    font-size: clamp(0.8rem, 3.5vw, 1.2rem);
    opacity: 0;
    filter: blur(5px);
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.intro-cta.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* New Scroll Indicator Styles */
.scroll-hint {
    width: 100%;
    position: absolute;
    bottom: clamp(0px, 2vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    color: white;
    opacity: 0;
    filter: blur(5px);
    transition: all 0.8s ease 0.9s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-hint.active {
    opacity: 0.8;
    filter: blur(0);
}

.scroll-text {
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.scroll-arrow {
    width: clamp(2rem, 2.5vw, 1.5rem);
    height: clamp(2.5rem, 2.5vw, 1.5rem);
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: scrollPulse 2s infinite;
}





/* Highlighted Offer Section */
.highlighted-offer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: clamp(40px, 2vw, 20px) clamp(3px, 2vw, 15px);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}



.highlighted-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}


.highlighted-offer-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.highlighted-offer-content {
    flex: 1;
    color: white;
}

.highlighted-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: clamp(1rem, 2.5vw, 1rem);
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.highlighted-offer-badge i {
    color: #ffd700;
}

.highlighted-offer-title {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlighted-offer-description {
    font-size: clamp(0.9rem, 1vw, 2.2rem);
    margin-bottom: 20px;
    line-height: 1.5;
}

.highlighted-offer-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.highlighted-offer-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 120px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.highlighted-offer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.highlighted-offer-btn:hover::before {
    left: 100%;
}

.highlighted-offer-btn.primary {
    background: rgb(0, 165, 0);
    color: white;
}

.highlighted-offer-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 1px 5px rgba(255, 107, 107, 0.6);
}

.highlighted-offer-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.highlighted-offer-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

#highlighted-offer-image {
    width: 80vw;
    object-fit: cover;
    border-radius: 5px;
    border: 4px solid #ffd700;
    box-shadow: 0 8px 32px 0 #ffd70033, 0 2px 8px #0002;
    position: relative;
    background: #fffbe6;
    overflow: hidden;
}

/* Special Offer Ribbon */
.special-offer-ribbon {
    position: absolute;
    top: 0px;
    right: -20px;
    background: linear-gradient(90deg, #ffd700 60%, #fffbe6 100%);
    color: #b8860b;
    font-weight: bold;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    padding: clamp(0.5rem, 0.4vw, 1rem) clamp(1rem, 1vw, 2rem);
    box-shadow: 0 4px 16px #ffd70055;
    border-radius: 8px;
    z-index: 3;
    letter-spacing: 1px;
    border: 2px solid #fffbe6;
    text-shadow: 0 1px 4px #fff8;
    transform: rotate(-20deg);
}

@media (min-width: 550px) {
    #highlighted-offer-image {
        width: clamp(15rem, 25vw, 35rem);
    }
}

#highlighted-offer-image:hover {
    box-shadow: 0 12px 48px 0 #ffd70066, 0 4px 16px #0003;
    border-color: #ffec80;
}

#highlighted-offer-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.0) 60%, rgba(255, 255, 255, 0.25) 80%, rgba(255, 255, 255, 0.0) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

#highlighted-offer-image:hover::after {
    opacity: 1;
}



/* Intro CSS */
/* Updated Header Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: clamp(60px, 7vw, 200px);
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
}













/* Testimonials Section - Mobile First */
#testimonials {
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
}



/* Testimonials Container - Mobile (horizontal scroll) */
#user_clint_rate_area {
    width: 90%;
    display: flex;
    align-self: center;
    gap: 15px;
    padding: clamp(10px, 2vw, 15px) clamp(10px, 2vw, 10px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}


#user_clint_rate_area::-webkit-scrollbar {
    display: none;
}

/* Testimonial Cards - Mobile */
.user_card_rate_div {
    width: 5rem;
    position: relative;
    flex: 0 0 85%;
    scroll-snap-align: start;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: clamp(5px, 2vw, 12px);
}

.card_clint_rate_date_div h3 {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: clamp(0.85rem, 2vw, 0.85rem);
    color: #6b7280;
}

.card_clint_rate_info_div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card_clint_rate_info_div img {
    width: clamp(45px, 2vw, 45px);
    height: clamp(45px, 2vw, 45px);
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgb(255, 61, 61);
}

.card_clint_rate_info_div h4 {
    font-size: clamp(1rem, 2vw, 1rem);
    color: var(--text-color);
}

.card_clint_rate_comment_div h5 {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    line-height: 1.5;
    color: #4b5563;
    font-weight: 400;
}

.card_clint_rate_star_div {
    position: absolute;
    bottom: 0;
    left: 15px;
    color: #f59e0b;
    font-size: 1.1rem;
}

/* Tablet Styles (min-width: 600px) */
@media (min-width: 600px) {
    #testimonials {
        padding: 50px 0;
    }

    .user_card_rate_div {
        flex: 0 0 50%;
    }
}

@media (min-width: 991px) {
    #user_clint_rate_area {
        width: 80%;
        gap: 25px;
    }
}

/* Desktop Projects - Applies when screen is wider than 1199px */
@media (min-width: 1199px) {
    .projects-container {
        grid-template-columns: repeat(3, 1fr);
    }

    #testimonials {
        padding: 60px 0;
    }

    .user_card_rate_div {
        flex: 0 0 35%;
    }
}











/* Comment Form - Mobile */
.user_insert_comment_form_div {
    background: white;
    border-radius: 10px;
    padding: clamp(20px, 2vw, 20px);
    margin-top: clamp(20px, 2vw, 40px);
    box-shadow: var(--shadow);
    width: 100%;
    align-self: center;
    overflow: hidden;
}

/* Tablet Styles (min-width: 600px) */
@media (min-width: 500px) {
    .user_insert_comment_form_div {
        width: 80%;
    }
}

#user_comment_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#user_comment_form label {
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 0.95rem);
}

#user_comment_form input,
#user_comment_form textarea,
#user_comment_form select {
    width: 100%;
    padding: 10px 12px;
    font-size: clamp(0.95rem, 2vw, 0.95rem);
}

#user_comment_form textarea {
    min-height: 100px;
}

#user_comment_form button {
    background: #f0f0f0;
    color: black;
    border: 0.5px solid black;
    padding: 12px 20px;
    font-size: clamp(0.95rem, 2vw, 1rem);
    cursor: pointer;
}

/* Success Notification - Mobile */
#new_comment_success_notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #4CAF50;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Show animation */
#new_comment_success_notification.show {
    opacity: 1;
    transform: translate(-50%, -50%);
}











/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    padding-top: 30px;
    margin-top: 30px;
    direction: rtl;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(10px, 2vw, 30px);
    padding: 0 20px 5px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: #e74c3c;
}

.footer-section p,
.footer-section li,
.footer-section a {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ecf0f1;
    margin-bottom: 8px;
    text-decoration: none;
    cursor: pointer;
}

.footer-section a:hover {
    color: #e74c3c;
}

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

.footer-section li i {
    margin-left: 8px;
    color: #e74c3c;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.social-icons a:hover {
    background-color: #e73ce7;
    color: white;
    transform: translateY(-2px);
}

.trusted-site-label {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: #27ae60;
    font-weight: 700;
}

.trusted-site-label i {
    color: #27ae60;
    font-size: 1.2em;
}

.footer-bottom {
    background-color: #1a252f;
    text-align: center;
    padding-top: 15px;
    font-size: clamp(0.85rem, 2vw, 0.85rem);
    color: #bdc3c7;
}

.payment-methods {
    background: white;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
}

.payment-methods img {
    transition: transform 0.3s ease;
}

/* Optional: add a subtle hover effect */
.payment-methods img:hover {
    transform: scale(1.05);
}


/* Tablet: 2 columns */
@media (min-width: 576px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 4 columns */
@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Categories Navigation */
.categories {
    overflow-x: auto;
    padding: 10px 0;
    background-color: white;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    z-index: 99;
    box-shadow: 0 2px 8px #0001;
}

.categories-container {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    width: max-content;
}

.category-btn {
    background-color: #f5f5f5;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
}

.category-btn.active {
    background-color: #2c3e50;
    color: white;
}

/* Offers Grid */
.offers-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-right: clamp(0.1rem, 2.5vw, 1.5rem);
}

.offers-category-title {
    display: inline-block;
    width: fit-content;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #2c3e509f;
    margin-bottom: clamp(0.8rem, 2.5vw, 1.5rem);
    margin-top: clamp(0.5rem, 2.5vw, 1.5rem);
    border-bottom: 2px solid #61616163;
    padding-bottom: 5px;
}



.offers-cards-group {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.offers-cards-group::-webkit-scrollbar {
    display: none;
}

.offer-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 80vw;
    max-width: 14rem;
    min-width: 220px;
    margin: 0;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

@media (min-width: 700px) {
    .offer-card {
        width: 15rem;
        max-width: 15rem;
    }
}

.offer-card:hover {
    transform: translateY(-3px);
}

.offer-image-wrapper {
    position: relative;
}

.offer-label-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #e75480;
    color: #fff;
    padding: 2px 6px;
    border-bottom-left-radius: 16px;
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 8px #e7548033;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.offer-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.offer-info {
    padding: 10px;
}

.offer-title {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-price {
    color: rgb(0, 184, 0);
    font-weight: bold;
    margin-bottom: 5px;
}

.offer-dates {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: #777;
    margin-bottom: 5px;
}

.offer-rating {
    direction: ltr;
    color: #f39c12;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits {
    padding: 20px 15px;
    background-color: white;
    margin-top: 50px;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #2c3e50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-card {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-card h3 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 5px;
}

.benefit-card p {
    font-size: clamp(0.9em, 2vw, 1rem);
    color: #777;
}

/* Modal Styles */
.ready-to-use-offer-modal-class {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 200;
    overflow-y: auto;
}

.ready-to-use-offer-modal-content {
    background-color: white;
    margin: 20px auto;
    width: 95%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    animation: modalopen 0.5s;
    position: relative;
}



.close-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.close-modal:hover {
    background-color: #fff;
    transform: scale(1.1);
    color: #e74c3c;
}

/* Update the main image container to have relative positioning */
.main-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure the close button stays on top of the image */
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .main-image {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .main-image {
        height: 450px;
    }
}

.thumbnail-container {
    display: flex;
    gap: 5px;
    padding: 5px;
    overflow-x: auto;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: #e74c3c;
}

.offer-details {
    padding: 15px;
}

.modal-offer-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars {
    direction: ltr;
    color: #f39c12;
}

.price {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    color: rgb(0, 184, 0);
    font-weight: bold;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: clamp(1rem, 2.2vw, 1rem);
}

.dates {
    color: #777;
    margin-bottom: 10px;
}

.description {
    margin-bottom: 15px;
    line-height: 1.5;
}

.note {
    background-color: #fff8e1;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border-right: 3px solid #ffc107;
}

.offer-actions {
    display: flex;
    gap: clamp(0.1rem, 2vw, 1rem);
    margin-top: 20px;
}

.add-to-fav,
.add-to-cart,
.whatsapp-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.1rem, 2vw, 0.5rem);
}

.add-to-fav {
    background-color: #f5f5f5;
    color: #333;
}

.add-to-fav.active {
    background-color: #e74c3c;
    color: white;
}

.add-to-cart {
    background-color: #2c3e50;
    color: white;
}

.whatsapp-btn {
    background-color: rgb(0, 184, 0);
    color: white;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 370px;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 60%, #e3e6f3 100%);
    box-shadow: -4px 0 24px 0 rgba(44, 62, 80, 0.13), -1px 0 8px #0001;
    transition: right 0.3s;
    z-index: 300;
    overflow-y: auto;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    flex-direction: column;
}

.sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px 16px 10px;
    background: #2c3e50;
    color: white;
    position: sticky;
    top: 0;
    z-index: 2;
    border-top-left-radius: 10px;
    border-bottom: 1.5px solid #e3e6f3;
    box-shadow: 0 2px 8px #0001;
}

.sidebar-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.close-sidebar {
    font-size: 1.7rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: none;
}

.close-sidebar:hover {
    background: #e75480;
    color: #fff;
    transform: scale(1.1);
}

.sidebar-content {
    padding: 18px 16px 10px 16px;
    flex: 1 1 auto;
    overflow-y: auto;
}

.cart-item,
.fav-item {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
    padding: 16px 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 12px 0 #2c3e5012;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #f0f0f0;
    position: relative;
}

.cart-item:hover,
.fav-item:hover {
    box-shadow: 0 6px 24px 0 #2c3e5022;
    transform: translateY(-2px) scale(1.01);
}

.cart-item-img,
.fav-item-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    border: 2.5px solid #e3e6f3;
    box-shadow: 0 2px 8px #0001;
    background: #f8fafc;
    flex-shrink: 0;
}

.cart-item-details,
.fav-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cart-item-title,
.fav-item-title {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 700;
    margin-bottom: 2px;
    color: #2c3e50;
    letter-spacing: 0.2px;
}

.cart-item-price,
.fav-item-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 2px 8px;
    border: 1px solid #e3e6f3;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #2c3e50;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.quantity-btn:hover {
    background: #e75480;
    color: #fff;
    transform: scale(1.1);
}

.remove-item,
.remove-fav-btn {
    color: #e74c3c;
    font-size: 0.95rem;
    cursor: pointer;
    background: #fff0f0;
    border: 1px solid #ffeaea;
    border-radius: 6px;
    padding: 4px 10px;
    margin-right: 4px;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.remove-item:hover,
.remove-fav-btn:hover {
    background: #e75480;
    color: #fff;
    border: 1px solid #e75480;
    transform: scale(1.05);
}

.add-to-cart-btn {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 0.97rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 6px;
    transition: background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.add-to-cart-btn:hover {
    background: #128c7e;
    transform: scale(1.05);
}

/* Empty State in Sidebar */
.sidebar-content .empty-state {
    text-align: center;
    padding: 50px 0 30px 0;
    color: #b0b0b0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sidebar-content .empty-state i {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #e3e6f3;
}

.sidebar-content .empty-state p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin: 0;
}

/* Cart Footer (unchanged, but add shadow for separation) */
.cart-footer {
    padding: 15px;
    border-top: 1.5px solid #e3e6f3;
    position: sticky;
    bottom: 0;
    background-color: #fff;
    box-shadow: 0 -2px 8px #0001;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: bold;
}

.checkout-btn {
    width: 100%;
    padding: clamp(0.5rem, 2vw, 1.2rem);
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1.08rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 700;
    box-shadow: 0 2px 8px #25d36622;
    transition: background 0.2s, transform 0.2s;
}

.checkout-btn:hover {
    background: #128c7e;
    transform: scale(1.03);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .offers-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Responsive Design for Highlighted Offer */
@media (max-width: 768px) {
    .highlighted-offer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlighted-offer-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }

    .highlighted-offer-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .highlighted-offer-actions {
        flex-direction: column;
        align-items: center;
    }
}

.custom-package-cta {
    width: 100%;
    background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.2rem 0 1.5rem 0;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 24px 0 rgba(252, 182, 159, 0.13);
    overflow: hidden;
}



.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.cta-text {
    font-size: 1.25rem;
    color: #b24e00;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px #fff6;
}

.cta-btn {
    background: linear-gradient(90deg, #ff512f 0%, #dd2476 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2.2rem;
    box-shadow: 0 4px 24px 0 rgba(221, 36, 118, 0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    outline: none;
    position: relative;
    z-index: 1;
}

.cta-btn i {
    font-size: 1.3em;
    margin-left: 0.3em;
}

.cta-btn:hover,
.cta-btn:focus {
    background: linear-gradient(90deg, #dd2476 0%, #ff512f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px 0 rgba(221, 36, 118, 0.25);
}



/* Highlighted Offer Pricing and Dates */
.highlighted-offer-pricing-dates {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.highlighted-offer-price {
    color: rgb(0, 184, 0);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: bold;
    background: #eaffea;
    padding: clamp(0.2em, 2vw, 0.7em);
    border-radius: 1em;
    box-shadow: 0 2px 8px #00b80022;
    margin-left: 0.5em;
}

.highlighted-offer-oldPrice {
    color: #ff0000;
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    text-decoration: line-through;
    margin-left: 0.5em;
    background: #f8f8f8;
    padding: clamp(0.2rem, 2vw, 0.7rem);
    border-radius: 1em;
}

.highlighted-offer-dates {
    color: #764ba2;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    background: #f3eaff;
    padding: clamp(0.2rem, 2vw, 0.7rem);
    border-radius: 1em;
    margin-right: 0.5em;
    font-weight: 500;
}

#fullscreen-image-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
}

#fullscreen-image-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

#fullscreen-image {
    max-width: 98vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 4px 32px #0008;
    background: #fff;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.96);
}

#fullscreen-image-overlay.active #fullscreen-image {
    opacity: 1;
    transform: scale(1);
}

.close-fullscreen-image {
    position: absolute;
    top: 30px;
    left: clamp(10px, 2vw, 30px);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: clamp(2rem, 3vw, 3rem);
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.close-fullscreen-image:hover {
    background: #e75480;
    transform: scale(1.1);
}

@media (max-width: 600px) {
    #fullscreen-image {
        max-width: 98vw;
        max-height: 70vh;
    }
}

/* Our Service Goals and Achievements Section */
.our-survice-gaols-and-achievements-numbers {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    overflow: hidden;
    margin-top: 50px;
}

/* Background Images Container */
.our-survice-gaols {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-goals-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.service-goals-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.service-goals-image.active {
    opacity: 1;
}

.service-goals-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-goals-content {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
}

.service-goals-content h2 {
    font-size: clamp(1rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Achievements Numbers Section */
.our-achievements-numbers-div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: clamp(5px, 2vw, 30px) clamp(10px, 2vw, 20px);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.achievement-card:hover::before {
    left: 100%;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.achievement-number {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #667eea;
    margin-bottom: 10px;
    display: block;
    position: relative;
}



.achievement-label {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}




/* Mobile Optimizations */
@media (max-width: 768px) {
    .our-survice-gaols-and-achievements-numbers {
        padding: 40px 15px;
    }

    .our-survice-gaols {
        height: 250px;
        margin-bottom: 30px;
    }

    .our-achievements-numbers-div {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .our-survice-gaols {
        height: 200px;
    }
}

/* Serial number badge for favorite and cart items */
.item-serial {
    position: absolute;
    top: clamp(-0.05rem, -5vw, -2rem);
    right: clamp(0.5rem, 2vw, 1rem);
    width: clamp(1.5rem, 2vw, 2em);
    height: clamp(1.5rem, 2vw, 2em);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1rem);
    font-weight: 700;
    color: #fff;
    background: #e75480;
    border-radius: 50%;
    z-index: 2;
    letter-spacing: 0.5px;
    border: 2px solid #fff;
}







/* Scroll Note Button Animation (like intro-headline/subhead/cta) */
.scroll-note-btn {
    margin: 10px 0;
    padding: clamp(6px, 2vw, 12px) clamp(12px, 2vw, 18px);
    background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
    color: #886100;
    font-weight: 700;
    border: none;
    border-radius: 20px;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    box-shadow: 0 2px 8px #ffd70033;
    cursor: pointer;
    outline: none;
    position: relative;
    z-index: 10;
    opacity: 0;
    filter: blur(5px);
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-note-btn.active,
.scroll-note-btn.in-view {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.scroll-note-btn:hover,
.scroll-note-btn:focus {
    background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
    color: #a67c00;
    box-shadow: 0 4px 16px #ffd70055;
    transform: translateY(-2px) scale(1.04);
}

/* Scroll Note Box Animation (fade/slide, no display:none) */
.scroll-note-box {
    opacity: 0;
    margin: 10px 0;
    background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
    color: #886100;
    font-weight: 600;
    border-radius: 12px;
    padding: clamp(5px, 2vw, 22px) clamp(10px, 2vw, 22px);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    box-shadow: 0 4px 24px #ffd70033, 0 1px 4px #0001;
    text-align: center;
    position: relative;
    z-index: 20;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    max-width: 90vw;
}

.scroll-note-box.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.modal-box {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
    min-width: 300px;
    text-align: center;
    transition: opacity 1.5s, transform 1.5s;
}

.modal-box.hide {
    opacity: 0;
    transform: scale(0.95) translateY(40px);
    pointer-events: none;
}

#welcome-animation {
    display: none;
    opacity: 0;
    filter: blur(7px);
    transform: translate(-50%, -50%) scale(0.98) translateX(-40px);
    transition: opacity 1.5s, filter 1.5s, transform 1.5s;
    font-size: clamp(1.1rem, 3.5vw, 1.3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10001;
    padding: 2px;
    border-radius: 1em;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);

    /* 👇 Gradient text setup */
    background: linear-gradient(270deg, #ff6ec4, #7873f5, #4ade80, #facc15);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextLoop 6s ease infinite;
}

@keyframes gradientTextLoop {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


#welcome-animation.active {
    display: block;
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1) translateX(0);
}

#welcome-animation.hide {
    opacity: 0;
    filter: blur(7px);
    transform: translate(-50%, -50%) scale(0.98) translateX(40px);
    transition: opacity 1.5s, filter 1.5s, transform 1.5s;
}

.blurred-by-modal {
    filter: blur(7px) !important;
    pointer-events: none !important;
    user-select: none !important;
}

.blurred-by-modal-hide {
    filter: blur(0) !important;
    pointer-events: none !important;
    user-select: none !important;
    transition: filter 1.5s;
}