﻿/* =====================================================
   THEME VARIABLES (LOGO-BASED)
===================================================== */
:root {
    --primary-purple: #6a1b9a;
    --secondary-pink: #d81b60;
    --accent-yellow: #fbc02d;
    --soft-bg: #f9f6fb;
    --dark-text: #333333;
}

/* =====================================================
   GLOBAL
===================================================== */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background: #ffffff;
    overflow-x: hidden;
}

/* =====================================================
   NAVBAR (OVER HERO)
===================================================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; /* 🔴 NO COLOR STRIP */
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

    /* Navbar after scroll */
    .navbar.scrolled {
        background: linear-gradient( 90deg, var(--primary-purple), var(--secondary-pink) );
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

/* =====================================================
   BRAND + LOGO
===================================================== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #ffffff !important;
}

/* Logo box */
.logo-wrap {
    background: #ffffff;
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-wrap img {
        height: 42px;
        width: auto;
    }

.brand-text {
    font-size: 18px;
    white-space: nowrap;
    color: #ffffff;
}

/* ================= ABOUT CIRCLE TEXT ================= */

/* ================= HERO ================= */


.about-page-overlay {
    position: absolute;
    inset: 0;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 680px;
    margin: 15px auto 0;
    opacity: 0.95;
}

/* ================= CORE VALUES ================= */
.core-values-section {
    padding: 90px 0;
    background: #f7f4ee;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .section-header p {
        color: #666;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.35s ease;
}

    .activity-card:hover {
        transform: translateY(-10px);
    }

    .activity-card .icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }


/* ================= CTA ================= */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #e63946, #ff9f1c);
    color: #fff;
}

    .about-cta h2 {
        font-size: 2.4rem;
        font-weight: 700;
    }

    .about-cta p {
        max-width: 600px;
        margin: 10px auto 25px;
    }

.btn-donate {
    background: #fff;
    color: #e63946;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

    .btn-donate:hover {
        background: #f7f4ee;
    }


/* ================= ANIMATION ================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease;
}

    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }


/* ================= IMAGE ROTATION WITH CONTENT ================= */
.image-rotation-section {
    padding: 140px 0;
    background: #f9f6fb;
}

.rotation-title {
    font-size: 36px;
    margin-bottom: 70px;
}

/* IMAGE AREA */
.rotation-wrapper {
    position: relative;
    height: 420px;
}

.rotation-track {
    position: relative;
    height: 300px;
}

/* Images */
.rot-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
    transform: translate(-50%, -50%) scale(0.85) rotate(-8deg);
    opacity: 0.35;
    transition: all 0.9s ease;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

    .rot-img.active {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
        z-index: 5;
    }

    /* Positions */
    .rot-img:nth-child(1) {
        left: 30%;
    }

    .rot-img:nth-child(2) {
        left: 50%;
    }

    .rot-img:nth-child(3) {
        left: 70%;
    }

/* CONTENT */
.rotation-content {
    margin-top: 60px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.content-item {
    display: none;
}

    .content-item.active {
        display: block;
    }

    .content-item h4 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .content-item p {
        font-size: 16px;
        color: #666;
    }

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .rotation-wrapper {
        height: auto;
    }

    .rotation-track {
        height: 260px;
    }

    .rot-img {
        width: 200px;
        height: 260px;
    }

        .rot-img:nth-child(1) {
            left: 20%;
        }

        .rot-img:nth-child(2) {
            left: 50%;
        }

        .rot-img:nth-child(3) {
            left: 80%;
        }
}





/* ================= ACTIVITIES HERO SECTION ================= */

.activities-hero-section {
    position: relative;
    padding: 120px 0;
    /* 🔥 MAIN BACKGROUND IMAGE */
    background-image: linear-gradient( rgba(255,255,255,0.92), rgba(255,255,255,0.92) ), url('/images/activities1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.activity-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

    .activity-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 35px 80px rgba(0,0,0,0.18);
    }

    /* Icon circle */
    .activity-card .fs-1 {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, #6a1b9a, #d81b60);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 30px !important;
    }

/* Optional overlay (agar image use karo) */
.activities-overlay {
    position: absolute;
    inset: 0;
    background: transparent; /* ❗ must be transparent */
    z-index: 1;
}

/* Heading */
.activities-hero-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #222;
}

/* ================= ACTIVITY CARDS ================= */
.activity-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

    /* Hover effect */




    /* Title */
    .activity-card h5 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    /* Text */
    .activity-card p {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
    }

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .activities-hero-section {
        padding: 80px 15px;
        background-position: top center;
    }

        .activities-hero-section h2 {
            font-size: 30px;
            margin-bottom: 40px;
        }
}


/* =====================================================
   NAV LINKS
===================================================== */
.navbar-nav .nav-link {
    position: relative;
    padding: 8px 14px;
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

    /* Hover + active underline */
    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 3px;
        background: var(--accent-yellow);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--accent-yellow) !important;
    }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 60%;
        }

/* =====================================================
   DONATE BUTTON
===================================================== */
.btn-donate {
    background: var(--accent-yellow);
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    padding: 12px 36px;
    transition: all 0.3s ease;
}

    .btn-donate:hover {
        background: #ffd54f;
        transform: translateY(-2px);
    }

/* =====================================================
   HERO SECTION (FULL IMAGE)
===================================================== */
.hero-section {
    position: relative;
    min-height: 134vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/images/temple-bg1.png');
    background-size: cover;
    background-repeat: no-repeat;
    /* 🔥 IMAGE NICHE SHIFT */
    background-position: center 75%;
    margin-bottom: 40px;
}


/* Navbar spacing */
.hero-with-nav {
    padding-top: 140px;
}

.hero-content {
    max-width: 900px;
    padding: 0 15px;
}

.hero-section h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 18px;
    opacity: 0.95;
}

/* =====================================================
   STATS SECTION
===================================================== */
.stats-section {
    background: var(--soft-bg);
}

.stat-card h2 {
    font-weight: 700;
    color: var(--primary-purple);
}

.stat-card p {
    font-weight: 500;
}



/* =====================================================
   CARDS
===================================================== */
.card {
    border: none;
    border-radius: 14px;
    background: #ffffff;
    transition: all 0.35s ease;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

/* =====================================================
   CTA
===================================================== */
.cta-section {
    background: linear-gradient(90deg, var(--secondary-pink), var(--primary-purple));
    color: #ffffff;
}

/* =====================================================
   QUOTE
===================================================== */
blockquote {
    color: var(--primary-purple);
}

/* =====================================================
   FOOTER
===================================================== */
footer {
    background: #1e1e1e;
    color: #bbbbbb;
}

/* =====================================================
   ANIMATIONS
===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 768px) {

    .logo-wrap img {
        height: 34px;
    }

    .brand-text {
        font-size: 16px;
    }

    .hero-with-nav {
        padding-top: 110px;
    }

    .hero-section {
        min-height: 75vh;
        background-position: center top;
        padding: 80px 15px;
    }

        .hero-section h1 {
            font-size: 32px;
            line-height: 1.2;
        }

        .hero-section p {
            font-size: 16px;
        }
}
/* ================= HERO STATS OVER IMAGE ================= */

.hero-stats {
    position: absolute;
    bottom: 40px; /* hero ke bottom par */
    left: 0;
    width: 100%;
    z-index: 5;
}

    .hero-stats .stat-card {
        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(6px);
        border-radius: 14px;
        padding: 20px 10px;
    }

    .hero-stats h2 {
        font-weight: 700;
        color: var(--accent-yellow);
    }

    .hero-stats p {
        margin: 0;
        font-weight: 500;
        color: #fff;
    }


/* =====================================================
   EXTRA SMALL DEVICES
===================================================== */
@media (max-width: 576px) {
    .hero-section {
        background-position: 94% center;
    }
}

@media (max-width: 768px) {

    .hero-stats {
        position: relative;
        margin-top: 40px;
        bottom: auto;
    }

        .hero-stats h2 {
            font-size: 22px;
        }

        .hero-stats p {
            font-size: 14px;
        }
}









/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .services-accordion .accordion-button {
        font-size: 16px;
    }
}



/* ================= DONATION HERO ================= */
.donation-hero {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url('/images/donation-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* ================= DONATION CARD ================= */
.donation-card {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.amount-buttons {
    display: flex;
    gap: 12px;
}

    .amount-buttons button {
        flex: 1;
        border-radius: 30px;
        border: 2px solid #e63946;
        background: #fff;
        padding: 10px;
        font-weight: 600;
    }

        .amount-buttons button:hover {
            background: #e63946;
            color: #fff;
        }

.amount-input {
    border-radius: 30px;
    padding: 12px 18px;
    margin-top: 15px;
}

.purpose-section {
    margin-top: 25px;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media(max-width:768px) {
    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px) {
    .purpose-grid {
        grid-template-columns: 1fr;
    }
}



.purpose-card {
    flex: 1;
    border: 2px solid #ddd;
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

    .purpose-card.active {
        background: linear-gradient(135deg,#e63946,#ff9f1c);
        color: #fff;
        border-color: transparent;
    }

.trust-footer {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 15px;
}

@media(max-width:768px) {
    .purpose-grid {
        flex-direction: column;
    }
}

.thankyou-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#fff7e6,#fff);
}

.thankyou-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
    max-width: 520px;
    margin: auto;
}

.thankyou-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg,#e63946,#ff9f1c);
    color: #fff;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
}

.thankyou-message {
    font-size: 18px;
    margin-top: 15px;
    color: #444;
}

.thankyou-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

    .thankyou-actions .btn {
        border-radius: 30px;
        padding: 10px 25px;
        font-weight: 600;
    }

.thankyou-trust {
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

@media(max-width:576px) {
    .thankyou-actions {
        flex-direction: column;
    }
}

/* ================= About us  ================= */
/* ================= HERO ================= */
.about-hero {
    position: relative;
    min-height: 134vh;
    background: url('/images/About2.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
}

    .hero-content h1 {
        font-size: 3.4rem;
        font-weight: 800;
        line-height: 1.1;
    }

    .hero-content p {
        margin: 20px 0;
        font-size: 1.1rem;
    }

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-donate {
    background: #fbc02d;
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}

    .btn-donate:hover {
        background: #e0aa1d;
    }

/* ================= HIGHLIGHT STRIP ================= */
.highlight-strip {
    background: #fbc02d;
    color: #000;
    text-align: center;
    padding: 18px;
    font-weight: 600;
}

/* ================= SERVICE CARDS ================= */
.about-services {
    padding: 80px 0;
}

.info-card {
    background: #fff;
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    transition: .3s;
}

    .info-card:hover {
        transform: translateY(-10px);
    }

    .info-card img {
        height: 55px;
        margin-bottom: 15px;
    }

/* ================= SPLIT ABOUT ================= */
.about-split {
    padding: 90px 0;
    background: #fafafa;
}

    .about-split h2 {
        font-weight: 700;
    }

        .about-split h2 span {
            color: #fbc02d;
        }

    .about-split p {
        margin-top: 15px;
        color: #444;
    }

/* ================= MOBILE ================= */
@media(max-width:768px) {

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ================= Services================= */

/* ================= HERO ================= */
.services-hero {
    position: relative;
    min-height: 80vh;
    background: url('/images/servicehero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: #fff;
}

    .hero-content h1 {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 1.1;
    }

    .hero-content p {
        margin: 20px 0;
        font-size: 1.05rem;
        opacity: 0.95;
    }

/* ================= BUTTONS ================= */
.btn-yellow {
    background: #f5b400;
    color: #000;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

    .btn-yellow:hover {
        background: #e0a700;
        color: #000;
    }

.btn-outline-yellow {
    border: 2px solid #f5b400;
    color: #000;
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
}

    .btn-outline-yellow:hover {
        background: #f5b400;
        color: #000;
    }

/* ================= PURPOSE ================= */
.section-title {
    color: #f5b400;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ================= TAKE ACTION ================= */
.take-action-section {
    background: #fafafa;
}

.action-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    height: 100%;
}

.action-title {
    color: #f5b400;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;
}
/* ================= INSTAGRAM SECTION ================= */
.instagram-section {
    background: #f5f5f5;
}

    .instagram-section h4 {
        font-weight: 600;
    }

        .instagram-section h4 span {
            color: #f5b400;
        }

.instagram-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-box {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

    .insta-box img {
        transition: transform 0.4s ease;
    }

    .insta-box:hover img {
        transform: scale(1.08);
    }
/* ================= Services================= closed*/


/* ================= CONTACT HERO ================= */
.contact-hero {
    position: relative;
    padding: 120px 0;
    background: url('/images/contact.png') center/cover no-repeat;
    min-height: 80vh;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

/* ================= CONTACT FORM ================= */
.contact-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

    .contact-card .form-control,
    .contact-card .form-select {
        border-radius: 10px;
        padding: 10px 14px;
    }

/* ================= BUTTON ================= */
.btn-contact {
    background: #f5b400;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}

    .btn-contact:hover {
        background: #e0a700;
    }

/* ================= CONTACT INFO ================= */
.contact-info {
    background: #fafafa;
    padding: 35px;
    border-radius: 16px;
    height: 100%;
}

    .contact-info p {
        margin-bottom: 18px;
        font-size: 0.95rem;
    }

/* ================= FOOTER NOTE ================= */
.contact-footer-note {
    background: #111;
    color: #ccc;
    font-style: italic;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;
}
/* ================= CONTACT Closed  ================= */

/* ======================================================
   GALLERY HERO SECTION
====================================================== */

.gallery-hero {
    position: relative;
    background: url('/images/Gallaryhero.png') center center / cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.gallery-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* ======================================================
   HERO TEXT
====================================================== */

.gallery-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Subtitle */
.gallery-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 10px;
}

    .gallery-subtitle span {
        font-weight: 600;
    }

.icon-wrap {
    display: inline-block;
    margin: 0 6px;
}

    .icon-wrap i {
        color: #f5b400;
        font-size: 1.2rem;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .icon-wrap:hover i {
        transform: scale(1.25) rotate(-5deg);
        color: #ffd45a;
    }

/* Hindi line */
.gallery-hindi {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Description */
.gallery-description {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ======================================================
   FADE-IN ON SCROLL
====================================================== */

.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease;
}

    .fade-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ======================================================
   GALLERY GRID
====================================================== */

.gallery-section {
    padding: 80px 0;
}

/* Card wrapper */
.gallery-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .gallery-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.25);
    }

    /* Image */
    .gallery-card img {
        width: 100%;
        height: 536px; /* ✅ DESKTOP OPTIMAL */
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.08);
    }

/* Caption */
.gallery-caption {
    padding: 18px 16px 22px;
    text-align: center;
}

    .gallery-caption h6 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #222;
    }

    .gallery-caption p {
        font-size: 14.5px;
        color: #555;
        line-height: 1.6;
    }

/* ======================================================
   TABLET (≤ 992px)
====================================================== */

@media (max-width: 992px) {

    .gallery-hero {
        min-height: 70vh;
        padding: 90px 20px;
    }

        .gallery-hero h1 {
            font-size: 2.5rem;
        }

    .gallery-subtitle {
        font-size: 1.15rem;
    }

    .gallery-card img {
        height: 280px; /* ✅ TABLET HEIGHT */
    }
}

/* ======================================================
   MOBILE (≤ 768px)
====================================================== */

@media (max-width: 768px) {

    .gallery-hero {
        min-height: 60vh;
        padding: 80px 15px;
    }

        .gallery-hero h1 {
            font-size: 2.1rem;
        }

    .gallery-subtitle {
        font-size: 1.05rem;
    }

    .gallery-hindi {
        font-size: 1rem;
    }

    .gallery-description {
        font-size: 0.95rem;
    }

    .gallery-card img {
        height: 240px; /* ✅ MOBILE CLEAN */
    }
}

/* ======================================================
   SMALL MOBILE (≤ 480px)
====================================================== */

@media (max-width: 480px) {

    .gallery-hero {
        min-height: 55vh;
        padding: 70px 12px;
    }

        .gallery-hero h1 {
            font-size: 1.9rem;
        }

    .gallery-subtitle {
        font-size: 1rem;
    }

    .icon-wrap i {
        font-size: 1.05rem;
    }

    .gallery-card img {
        height: 200px;
    }
}

