
.main{
    animation: fadeIn 0.8s ease;
}
.authentication {
background-color:transparent; /* Softer red for a modern look */
color: #000000; /* Bold red for text */
padding: 0.5em 1em; /* Increased padding for better spacing */
border-radius: 0.5em; /* Larger border radius for smoother edges */
text-align: center; /* Center the text */
font-weight: bold; /* Make the text stand out */
font-size: 1.1rem; /* Slightly larger text size for emphasis */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for a lifted effect */
border: 3px solid purple; /* Add a border matching the text color */
transition: transform 0.2s, box-shadow 0.2s; /* Add hover animation */
}

.authentication:hover {
/* transform: scale(1.05); Slight zoom on hover */
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
/* cursor: pointer; Pointer cursor to indicate interactivity */
}
.store-name{
font-size: 1rem;
font-weight: bold;
}
.filter-h{
font-size: 1rem;
font-weight: bold;
}
.coupon-image {
width: 100%;
height: 150px;
object-fit: contain;
border-radius: 0.15em;
transition: transform 0.2s, box-shadow 0.2s;
}
.coupon-image:hover {
transform: scale(1.05);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);

}


.coupon-name {
    font-size: 1.2rem;
    color: rgb(0, 0, 0);
}

.ending-date {
    font-size: 0.875rem;
    color: #212121;
}
/* Responsive styles */
@media (max-width: 768px) {

    .coupon-name {
        font-size: 1rem;
    }
    .ending-date {
        font-size: 0.75rem;
    }
    .card {
        flex-direction: column;
    }
    .col-md-2 img {
        width: 80px;
        height: auto;
    }
    .col-md-3 {
        text-align: center;
        margin-top: 10px;
    }
    .code, .deal {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 14px;
    }
}
.bg-purple {
    background-color: #6f42c1;
}

.text-purple {
    color: #6f42c1;
}

.alert-purple {
    background-color: #f3e6ff;
    border-color: #d6b3ff;
    border-radius: 10px;
}

.bt-purple {
    background-color: #6f42c1;
    border: none;
    color: #fff;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.bt-purple:hover {
    background-color: #563d7c;
    transform: scale(1.05);
}

.modal-content {
    border-radius: 25px;
    overflow: hidden;
}

.modal-header {
    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.modal-footer {
    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.shadow-sm {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rounded-circle {
    border: 2px solid #f3e6ff;
}
@keyframes fadeIn {
from {
    opacity: 0;
    transform: scale(0.9);
}
to {
    opacity: 1;
    transform: scale(1);
}
}

@keyframes slideInCorner {
from {
    transform: translate(50%, -50%) rotate(45deg);
    opacity: 0;
}
to {
    transform: translate(0, 0) rotate(45deg);
    opacity: 1;
}
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-8px);
}
60% {
    transform: translateY(-4px);
}
}
.reveal-code {
    position: relative;
    padding: 15px 30px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    background-color:#7a1bb4;
    border: 2px dashed #fff; /* Dashed border to mimic a coupon */
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite; /* Add pulsating animation */
}

/* Pulsating Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

.reveal-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.reveal-code:hover {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.reveal-code:hover .coupon-code{
    display: block;
}

.reveal-code:hover::before {
    transform: scaleX(1);
}

.reveal-code:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.coupon-text {
display: inline-block;
font-weight: 500; /* Slightly bold */
letter-spacing: 0.5px; /* Improved spacing */
animation: fadeIn 0.8s ease; /* Text fades in on load */
}

.coupon-code {
display: none;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 18px;
font-weight: bold;
color: #333; /* Dark gray */
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
}



    .coupon-text {
    display: inline-block;
    font-weight: 500; /* Slightly bold */
    letter-spacing: 0.5px; /* Improved spacing */
    animation: fadeIn 0.8s ease; /* Text fades in on load */
    }

    .coupon-code {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    color: #333; /* Dark gray */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
    }
    .get {
        width: 100%;
        background: linear-gradient(to right, #7a1bb4, #ab47bc);
        color: #ffffff;
        text-align: center;
        padding: 10px 15px;
        border-radius: 25px;
        border: 1px dotted #ffffff;
        text-decoration: none;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3), -3px -3px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        margin-right: 10px;
        display: inline-block;
        font-size: 16px;
    }

    .get:hover {
        background: linear-gradient(to right, #8e24aa, #d500f9); /* Brighter hover gradient */
        color: #ffffff; /* Ensure text remains readable */
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(142, 36, 170, 0.7), 0 0 30px rgba(213, 0, 249, 0.5); /* Purple-themed glow */
        animation: fadein 0.5s; /* Bounce effect on hover */
    }
    .store-info-card {
        background-color: #f3e6ff;
        border-radius: 25px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
        .get {
            width: 100%;
            padding: 12px 20px;
            font-size: 14px;
            margin-right: 0;
            margin-bottom: 10px;
        }
        .reveal-code {
            padding: 12px 20px;
            font-size: 16px;
            width: 100%;
        }

    }
            .store-image{
                width: 100%;
                height: 200px;
                object-fit: fill;
                border-radius: 5%;
            }
            .btn-purple {
                width: 100%;
            background: linear-gradient(to right, #7a1bb4, #ab47bc); /* Enhanced contrast */
            color: #ffffff; /* High contrast for better readability */
            text-align: center;
            padding: 5px 15px;
            border-radius: 25px;
            text-decoration: none;
            box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3), -3px -3px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            margin-right: 10px; /* Add margin between buttons */
            display: inline-block;
            font-size: 16px;
            }
            .btn-purple:hover {
            background-color: #5a3ac5;
            }
            .card-coupon {
                border: none;
                overflow: hidden;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                border-radius: 10px;
                background-color: #fff;
                padding: 10px;
                height: 100%;
                border:2px dotted #7a1bb4;
            }
        .card-coupon:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        @media (max-width: 768px) {
            .display-7 {
                font-size: 15px;
            }
            .card-coupon {
                padding: 10px;
                height: 100%;
            }
            .card-coupon .coupon-image {
                height: 50px;
            }
            .card-coupon .coupon-name {
                font-size: 16px;
            }
            .card-coupon .coupon-description {
                font-size: 14px;
            }
            .card-coupon .ending-date {
                font-size: 14px;
            }
            .card-coupon .used {
                font-size: 14px;
            }
            .coupon-text {
                font-size: 14px;
            }
            .coupon-code {
                font-size: 14px;
            }

                }
                .h-3{
                    font-size: 1rem;
                    font-weight: bold;
                    margin-bottom: 20px;
                }
