/* Welcome Page Styles */

:root {
    --imperial-blue: #00539C;
    --dark-blue: #002147;
    --white: #FFFFFF;
}

    .hero-slider {
        position: relative;
        overflow: hidden;
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;

        }

    .hero-slider:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .hero-slider img {
        width: 100%;
        height: 300px;
        object-fit: fill;
        transition: transform 0.5s ease;
    }

    .hero-slider:hover img {
        transform: scale(1.05);
    }

    .slide-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        padding: 2rem;
        color: white;
        text-align: center;
    }

    .slide-overlay h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .slide-overlay p {
        font-size: 1.1rem;
        margin-bottom: 0;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    @media (max-width: 768px) {
        .hero-slide img {
            width: 100%;
            height: 150px;
        }
        .slide-overlay h2 {
            font-size: 1.5rem;
        }
        .slide-overlay p {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .hero-slide img {
            width: 100%;
            height: 150px;
        }
        .slide-overlay {
            padding: 1rem;
        }
    }

    /* Store Card Styles */
    .store-card {
        transition: all 0.3s ease;
        height: 100%;
        border: none;
        border-radius: 0.75rem;
        overflow: hidden;
        /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
        text-align: center;
    }

    .store-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .store-image-container {
        height: 100px;
        overflow: hidden;
        position: relative;
    }

    .store-image {
        margin-top:  1rem;
        width: 150px;
        height:100px;
        object-fit: contain;
        transition: transform 0.5s ease;
    }

    .store-card:hover .store-image {
        transform: scale(1.1);
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-title {
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    .card-text {
        color: #6c757d;
        margin-bottom: 1.25rem;
    }

    /* Swiper Navigation */
    .swiper-button-prev,
    .swiper-button-next {
        background: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        opacity: 1;
        transform: scale(1.1);
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 1.25rem;
        color: #333;
        font-weight: bold;
    }

    /* Section Styles */
    .section-title {
        position: relative;
        padding-bottom: 1.25rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(to right, #3b82f6, #8b5cf6);
        border-radius: 2px;
    }

    .section-subtitle {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    /* Featured Coupons */
    .coupon-card {
        border: none;
        border-radius: 0.75rem;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        text-align: center;
    }

    .coupon-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .coupon-image-container {
        height: 180px;
        overflow: hidden;
        position: relative;
    }

    .coupon-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .coupon-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #3b82f6;
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .coupon-actions {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    /* General Spacing */
    .section-spacing {
        padding: 5rem 0;
    }

    @media (max-width: 768px) {
        .section-spacing {
            padding: 3rem 0;
        }
    }



.btn-code, .btn-deal, .btn-welcome {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

/* Code Button */
.btn-code {
    background-color: var(--imperial-blue);
    border: 2px dotted var(--dark-blue);
    color: white;
}

.btn-code:hover {
    background-color: var(--dark-blue);
    border-color: var(--imperial-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite;
}

/* Deal Button */
.btn-deal {
    background-color: var(--imperial-blue);
    color: white;
    border: 2px dotted var(--imperial-blue);
}

.btn-deal:hover {
    background-color: var(--imperial-blue);
    color: white;
    border-color: var(--dark-blue);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 83, 156, 0.3);
}

.btn-deal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

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

/* Welcome Button */
.btn-welcome {
    background-color: var(--imperial-blue);
    color: var(--white);
    border: none;
}

.btn-welcome:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    animation: bounce 0.5s;
}


/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 83, 156, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 83, 156, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 83, 156, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Ripple Effect */
.btn-code:after, .btn-deal:after, .btn-welcome:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s;
}

.btn-code:active:after, .btn-deal:active:after, .btn-welcome:active:after {
    transform: scale(0, 0);
    opacity: .3;
    transition: 0s;
}

    .blog-section {
        position: relative;
        overflow: hidden;
    }

    .blog-card {
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }

    .transition-scale {
        transition: transform 0.5s ease;
    }

    .blog-card:hover .transition-scale {
        transform: scale(1.05);
    }

    .blog-slider {
        padding-bottom: 40px;
    }

    .swiper-button-prev, .swiper-button-next {
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .swiper-button-next {
        right: 10px;
    }

    .swiper-button-prev:hover, .swiper-button-next:hover {
        background: #4e73df;
        color: white;
    }

    .object-cover {
        object-fit: cover;
    }

    .blog-share:hover {
        background: #4e73df;
        color: white;
    }

    .blog-bookmark:hover {
        background: #e74a3b;
        color: white;
    }

    @media (max-width: 768px) {
        .swiper-button-prev, .swiper-button-next {
            display: none;
        }
    }
    hr {
        border: dotted 2px #4e73df;
        height: 1px;
    }
