        .tanmay-gallery {
            background-color: var(--odd-section-bg);
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            /* min-height: 100vh; */
            padding: var(--section-padding);
        }

        .tanmay-gallery-container {
            /* max-width: 1200px; */
            width: 100%;
            text-align: center;
            /* border: 1px solid red; */
        }

        .tanmay-gallery-mixed-heading {
            text-align: center;
            font-family: 'Montserrat', 'Arial', sans-serif;

        }

        .tanmay-gallery-mixed-heading h3 {
            font-size: var(--heading);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--heading2-color);
        }

        /* tanmay-gallery-divider */
        .tanmay-gallery-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 250px;
            margin: 0 auto;
        }

        .tanmay-gallery-divider::before,
        .tanmay-gallery-divider::after {
            content: "";
            flex: 1;
            height: 4px;
            border-top: 3px solid var(--accent-color);
            border-bottom: 3px solid var(--accent-color);
        }

        .tanmay-gallery-diamond {
            margin: 0 12px;
            color: var(--primary-color);
            font-size: 20px;
            transform: scaleY(1.2);
        }

        /* Section Title */
        .tanmay-gallery-main-title {
            font-family: 'Playfair Display', serif;
            font-size: var(--sub-heading);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .tanmay-gallery-main-title span {
            color: var(--testimonial-star);
        }

        .tanmay-gallery-description {
            max-width: 600px;
            margin: 0 auto 35px;
            line-height: 1.6;
            font-size: var(--sub-paragraph);
            color: var(--text-muted);
        }

        /* Filter Tabs */
        .filter-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .filter-btn {
            background: transparent;
            border: 1px solid var(--btn-bg);
            border-radius: 25px;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .filter-btn i {
            font-size: 16px;
        }

        .filter-btn.active {
            background-color: var(--primary-dark);
            color: #ffffff;
            border-color: var(--primary-dark);
            box-shadow: 0 4px 15px rgba(18, 62, 50, 0.2);
        }

        .filter-btn:hover:not(.active) {
            background-color: rgba(216, 188, 126, 0.15);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            /* margin-bottom: 50px; */
        }

        /* Card Component */
        .tanmay-gallery-card {
            border-radius: 16px;
            overflow: hidden;

            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.6);

            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        /* Glass Hover Effect */
        .tanmay-gallery-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.7);
            border-color: rgba(217, 160, 52, 0.8);
            box-shadow: 0 20px 40px rgba(18, 62, 50, 0.15),
                0 0 20px rgba(217, 160, 52, 0.2);
        }

        .tanmay-gallery-card.hide {
            display: none;
        }

        /* Image Hover Zoom & Overlay */
        .card-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .card-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .tanmay-gallery-card:hover .card-img {
            transform: scale(1.1);
        }

        /* Image Shimmer/Shine Effect on Hover */
        .card-img-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
            transform: skewX(-25deg);
            z-index: 2;
            transition: all 0.75s ease;
        }

        .tanmay-gallery-card:hover .card-img-wrapper::before {
            left: 125%;
        }

        /* Footer Section */
        .card-footer {
            background-color: var(--primary-dark);
            color: #ffffff;
            padding: 18px 16px;
            position: relative;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .tanmay-gallery-card:hover .card-footer {
            background-color: #0d2f26;
        }


        .tamany-plus-icon {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            width: 36px;
            height: 36px;
            background-color: var(--btn-bg);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.4s ease;
            z-index: 3;
            /* background-color: #e6b756; */
        }

        .tanmay-gallery-card:hover .tamany-plus-icon {
            background-color: #ffffff;
            color: var(--primary-dark);
            transform: translateX(-50%) rotate(180deg) scale(1.1);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
        }

        .card-footer h3 {
            font-size: 15px;
            font-weight: 600;
            margin-top: 6px;
        }

        /* Bottom Call to Action Section */
        .footer-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            position: relative;
        }

        .footer-line {
            height: 1px;
            background-color: var(--border-gold);
            flex-grow: 1;
            max-width: 250px;
        }

        .btn-view-all {
            background-color: var(--primary-dark);
            color: #ffffff;
            border: 2px solid var(--gold-accent);
            padding: 14px 32px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-view-all:hover {
            background-color: #0b2921;
            border-color: #ffffff;
        }