 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans Bengali', sans-serif;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            color: #fff;
            min-height: 100vh;
            padding: 20px;
            line-height: 1.6;
        }
/* ইউনিক কন্টেইনার */
.mkt-button-group {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    width: 100%;
}

/* ইউনিক বাটন ক্লাস - যেন অন্য কোথাও ডিজাইন নষ্ট না হয় */
.custom-btn-mkt {
    flex: 1;
    padding: 12px 5px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.3s;
    color: white !important;
    border: none !important;
    outline: none !important;
}

/* বিস্তারিত বাটন কালার */
.btn-details-mkt {
    background-color: #6366f1 !important;
}

/* ভিডিও গ্যালারি বাটন কালার */
.btn-gallery-mkt {
    background-color: #2ecc71 !important;
}

/* হোভার ইফেক্ট */
.custom-btn-mkt:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* আইকন সাইজ */
.custom-btn-mkt i {
    font-size: 16px;
}
/*Glass design*/
/* ========== Glass Hover Button + Breathing Glow ========== */
.glass-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}
/* Image static size control */
.glass-image-box img {
    width: 100%;
    height: 500px;   /* ← Height বাড়িয়ে দিন */
    object-fit: cover;
}
/* Button */
.glass-hover-text {
    position: absolute;
    bottom: 45px;  /* ← এই মান বাড়ালে টেক্সট ইমেজের আরও উপরে উঠবে */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* 🌟 Hybrid Border + Glow */
    border: 2px solid rgba(255, 215, 0, 0.95); /* Gold border */
    box-shadow:
        0 0 18px rgba(255, 0, 150, 0.75),   /* Pink glow */
        0 0 22px rgba(255, 215, 0, 0.4);    /* Gold glow */

    opacity: 0;
    transition: 0.45s ease-in-out;
}

/* Hover Effect */
.glass-image-box:hover .glass-hover-text {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
    animation: breathingGlow 2.2s ease-in-out infinite;
}

/* 🌬️ Breathing Glow Keyframe Animation */
@keyframes breathingGlow {
    0% {
        box-shadow:
            0 0 18px rgba(255, 0, 150, 0.75),
            0 0 22px rgba(255, 215, 0, 0.4);
        transform: translateX(-50%) translateY(-8px) scale(1);
    }
    50% {
        box-shadow:
            0 0 35px rgba(255, 0, 150, 1),
            0 0 45px rgba(255, 215, 0, 0.7);
        transform: translateX(-50%) translateY(-8px) scale(1.06);
    }
    100% {
        box-shadow:
            0 0 18px rgba(255, 0, 150, 0.75),
            0 0 22px rgba(255, 215, 0, 0.4);
        transform: translateX(-50%) translateY(-8px) scale(1);
    }
}
/* ===== GRID WRAPPER ===== */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .glass-grid {
        grid-template-columns: 1fr;
    }
}
