/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.head {
    height: 60vh; /* Flexible height */
    padding: 50px 0;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.head h1 {
    font-size: clamp(3.5rem, 6vw, 6rem); /* Responsive font size */
    color: #a5a5a5;
    font-family: 'Dancing Script', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    line-height: 1.4;
}

.head h1 span {
    color: #a5a5a5;
    font-weight: bold;
}

.background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideShow 20s infinite;
}

.background-slideshow img:nth-child(1) { animation-delay: 0s; }
.background-slideshow img:nth-child(2) { animation-delay: 5s; }
.background-slideshow img:nth-child(3) { animation-delay: 10s; }
.background-slideshow img:nth-child(4) { animation-delay: 15s; }
.background-slideshow img:nth-child(5) { animation-delay: 20s; }
.background-slideshow img:nth-child(6) { animation-delay: 25s; }
.background-slideshow img:nth-child(7) { animation-delay: 30s; }
.background-slideshow img:nth-child(8) { animation-delay: 35s; }
@keyframes slideShow {
    0%, 70%, 100% { opacity: 0; }
    20%, 50% { opacity: 1; }
}

.container {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    max-width: 1000px;
    margin: 50px auto;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 1rem;
    margin-top: 2rem;
}

.store-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.store-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.store-card h3 {
    margin-top: 10px;
}

.store-card button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.store-card button:hover {
    background-color: #0056b3;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 600px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.modal-content {
    position: relative;
    padding: 20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}


/* Footer Styling */
footer {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: space-between;
    align-items: flex-start;
    background-color: #333;
    color: #fff;
    padding: 20px;
    margin-top: 150px;
    width: 100%;
    z-index: 10;
}

.footer-left {
    flex: 1;
    margin-right: 20px;
}

.footer-left h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #f5ba13;
}

.footer-left p {
    margin: 5px 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-right iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

.social-icon img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.social-icon img:hover {
    transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 768px) {
    .head {
        height: 40vh;
        padding: 10px 0;
    }

    .footer-left {
        margin-right: 0;
        margin-bottom: 20px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
.grid-header {
    font-size: 25px;
    color: #5c7187;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    line-height: 1.4;
    text-align: center;

}

.grid-header {
    color: #565959;
    font-weight: bold;
}