/*==================================================
 SANATAN SEVA CHARITABLE TRUST
 PREMIUM V2 UI
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
 ROOT
==============================*/

:root {
    --primary: #8d111b;
    --primary-dark: #6f0d15;
    --secondary: #d4a017;
    --white: #ffffff;
    --black: #222222;
    --text: #666666;
    --bg: #fffaf4;
    --section: #ffffff;
    --border: #eee4cf;
    --shadow: 0 18px 45px rgba(0,0,0,.08);
    --radius: 22px;
    --transition: .35s ease;
}

/*==============================
 RESET
==============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

/*==============================
 LOADER
==============================*/

.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: .5s;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid #eee;
    border-top: 5px solid var(--primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/*==============================
 HEADER
==============================*/

.header {
    height: 90px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(212,160,23,.15);
    position: relative;
    z-index: 1000;
}

.header.scrolled {
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 70px;
    height: auto;
}

.logo h2 {
    color: var(--primary);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.logo span {
    display: block;
    margin-top: 6px;
    color: var(--secondary);
    font-size: 14px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    color: rgb(17,17,42);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: .35s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.donate-btn {
    padding: 18px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg,#8d111b,#c41d2b);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(141,17,27,.25);
}

.donate-btn:hover {
    transform: translateY(-4px);
}

.mobile-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/*==============================
 COMMON SECTION
==============================*/

section {
    position: relative;
    padding: 110px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    margin: 15px 0;
    font-size: 46px;
    color: var(--primary);
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: var(--text);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 50px;
    background: #fff5df;
    color: var(--secondary);
    font-weight: 700;
}

/*==================================================
 HERO
==================================================*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.45),
            rgba(255,255,255,.45)
        ),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(255,255,255,.18),
            rgba(255,255,255,.05),
            rgba(255,255,255,.18)
        );

    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    width: 100%;
    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 30px;
    border-radius: 50px;

    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,.65);

    color: var(--primary);

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(42px,6vw,76px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.hero-divider span {
    width: 90px;
    height: 2px;
    background: var(--secondary);
}

.hero-divider i {
    color: var(--secondary);
    font-size: 26px;
}

.hero p {
    max-width: 760px;
    color: #222;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.9;
    text-align: center;
    text-shadow: 0 2px 8px rgba(255,255,255,.85);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 17px 38px;
    border-radius: 50px;

    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg,var(--primary),#b71d2a);
    color: #fff;
    box-shadow: 0 18px 35px rgba(141,17,27,.20);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-6px);
}

.btn-secondary {
    background: #fff;
    color: var(--primary);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

.hero-stats {
    margin-top: 75px;

    display: flex;
    justify-content: center;

    gap: 28px;
    flex-wrap: wrap;
}

.stat-box {
    width: 220px;
    padding: 35px;

    border-radius: 24px;

    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.65);

    box-shadow: 0 18px 45px rgba(0,0,0,.08);

    transition: .35s;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box h2 {
    font-size: 46px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-box span {
    color: #666;
    font-size: 16px;
}

/*==================================================
 PAGE BANNER
==================================================*/

.page-banner {
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #fdf8f1;

    padding: 100px 0 80px;
}

.page-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
}

.page-banner-content {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.page-banner-content .section-tag {
    margin-bottom: 20px;
}

.page-banner-content h1 {
    font-size: clamp(38px,5vw,60px);

    font-weight: 800;

    color: var(--primary);

    margin: 15px 0;

    text-align: center;

    line-height: 1.25;
}

.page-banner-content p {
    font-size: 22px;
    color: #666;

    text-align: center;

    margin: 0;
}

/*==================================================
 ABOUT SECTION
==================================================*/

.about-section {
    background: #fff;
    padding: 110px 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.about-image {
    position: relative;

    width: 100%;
    max-width: 620px;

    margin: 0 auto;
}

.about-image::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background: rgba(212,160,23,.12);

    border-radius: 50%;

    top: -35px;
    left: -35px;

    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 520px;

    object-fit: cover;
    object-position: center;

    border-radius: 28px;

    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content .section-tag {
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;

    line-height: 1.35;

    color: var(--primary);

    margin-bottom: 25px;
}

.about-content p {
    color: #666;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 20px;
}

.about-content strong {
    color: var(--primary);
}

.about-features {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 18px;

    margin: 30px 0;
}

.feature-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    background: #fffaf4;

    border: 1px solid var(--border);

    border-radius: 16px;

    transition: .35s;
}

.feature-item:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.feature-item i {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,var(--primary),#b71d2a);

    color: #fff;

    font-size: 19px;
}

.feature-item span {
    color: #333;

    font-weight: 600;
}

/*==================================================
 SERVICES
==================================================*/

.services-section {
    background: #fffaf4;
    overflow: hidden;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap: 35px;
}

.service-card {
    position: relative;

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    transition: .4s;

    box-shadow: 0 18px 45px rgba(0,0,0,.06);

    border: 1px solid rgba(212,160,23,.12);

    display: flex;
    flex-direction: column;

    height: 100%;
}

.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 6px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );
}

.service-card:hover {
    transform: translateY(-12px);

    box-shadow: 0 28px 60px rgba(0,0,0,.12);
}

.service-top {
    padding: 35px 35px 20px;
}

.service-icon {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #b71d2a
        );

    color: #fff;

    font-size: 34px;
}

.service-content {
    padding: 0 35px 35px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.service-content h3 {
    color: var(--primary);

    font-size: 25px;

    margin-bottom: 18px;
}

.service-content p {
    color: #666;

    line-height: 1.9;

    margin-bottom: 30px;

    flex: 1;
}

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-weight: 600;
}

/*==================================================
 ACTIVITIES
==================================================*/

.activities-section {
    background: #ffffff;

    overflow: hidden;

    position: relative;
}

/* Activities Grid */

.activities-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(350px,1fr));

    gap: 35px;

    align-items: stretch;
}

/* Activity Card */

.activity-card {
    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(0,0,0,.06);

    transition: .4s;

    border: 1px solid rgba(212,160,23,.12);

    width: 100%;
}

.activity-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.12);
}

/* Activity Image */

/* =========================================================
   ACTIVITY IMAGE - FULL IMAGE
========================================================= */

.activity-image {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 28px 28px 0 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-image img {
    width: 100%;
    height: 100%;

    object-fit: contain !important;
    object-position: center center;

    display: block;
    background: #f5f5f5;

    transition: none !important;
}

/* IMPORTANT:
   Hover પર image zoom નહીં થાય,
   એટલે image crop નહીં થાય.
*/

.activity-card:hover .activity-image img {
    transform: none !important;
}

/* Activity Badge */

.activity-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    background: rgba(255,255,255,.92);

    color: var(--primary);

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;
}

/* Activity Content */

.activity-content {
    padding: 30px;
}

.activity-content h3 {
    color: var(--primary);

    font-size: 25px;

    margin-bottom: 15px;
}

.activity-content p {
    color: #666;

    line-height: 1.9;

    margin-bottom: 28px;
}

/*==================================================
 EMPTY ACTIVITY - PERFECT CENTER
==================================================*/

/*
   IMPORTANT:
   Empty activity content will ALWAYS stay
   perfectly centered.
*/

.activities-grid .empty-box {
    grid-column: 1 / -1;

    width: 100%;
    max-width: 900px;

    min-height: 280px;

    margin: 0 auto;

    padding: 65px 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid rgba(212,160,23,.18);

    border-radius: 25px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);
}

/* Empty Activity Icon */

.activities-grid .empty-box i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 75px;
    height: 75px;

    margin: 0 0 20px 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #b71d2a
        );

    color: #fff;

    font-size: 30px;
}

/* Empty Activity Heading */

.activities-grid .empty-box h3 {
    margin: 0 0 12px 0;

    color: var(--primary);

    font-size: 28px;

    font-weight: 700;

    line-height: 1.4;

    text-align: center;
}

/* Empty Activity Text */

.activities-grid .empty-box p {
    max-width: 650px;

    margin: 0 auto;

    color: #666;

    font-size: 16px;

    line-height: 1.8;

    text-align: center;
}

/*
   EXTRA FIX:
   If Blade currently doesn't have .empty-box wrapper
   and directly prints icon + heading + paragraph,
   this will still center them.
*/

.activities-grid > i {
    grid-column: 1 / -1;

    justify-self: center;

    width: 75px;
    height: 75px;

    margin: 0 auto 15px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #b71d2a
        );

    color: #fff;

    font-size: 30px;
}

.activities-grid > h3 {
    grid-column: 1 / -1;

    width: 100%;

    text-align: center;

    color: var(--primary);

    font-size: 28px;

    font-weight: 700;

    margin: 0 auto 12px;
}

.activities-grid > p {
    grid-column: 1 / -1;

    width: 100%;

    max-width: 650px;

    margin: 0 auto;

    text-align: center;

    color: #666;

    font-size: 16px;

    line-height: 1.8;
}

/*==================================================
 GALLERY
==================================================*/

.gallery-section {
    background: #fffaf4;

    overflow: hidden;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap: 30px;

    align-items: start;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);

    transition: .4s;
}

.gallery-item img {
    width: 100%;

    height: auto;

    aspect-ratio: auto;

    object-fit: contain;

    object-position: center center;

    display: block;

    background: #f8f8f8;

    transition: .5s;

    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.75),
            rgba(0,0,0,.15)
        );

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    padding: 25px;

    opacity: 0;

    transition: .35s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #fff;

    font-size: 20px;
}

.gallery-overlay span {
    color: #ffd76a;

    font-size: 14px;
}

.gallery-overlay i {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #fff;

    color: var(--primary);

    display: flex;

    justify-content: center;
    align-items: center;
}

/*==================================================
 DONATION
==================================================*/

.donation-section {
    background:
        linear-gradient(
            135deg,
            var(--primary),
            #6d0d15
        );

    padding: 90px 0;

    position: relative;

    overflow: hidden;
}

.donation-box {
    max-width: 950px;

    margin: auto;

    text-align: center;

    color: #fff;
}

.donation-box h2 {
    font-size: 48px;

    margin: 25px 0;
}

.donation-box p {
    font-size: 18px;

    line-height: 1.9;

    max-width: 720px;

    margin: auto auto 40px;

    color: rgba(255,255,255,.9);
}

.donation-buttons {
    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

/*==================================================
 FOOTER
==================================================*/

.footer {
    background: #181818;

    color: #fff;

    padding: 80px 0 0;

    border-top: 4px solid #d4a017;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.2fr 1fr 1fr 1fr;

    gap: 60px;

    align-items: start;
}

.footer-brand img {
    width: 280px;

    max-width: 100%;

    height: auto;
}

.footer h3 {
    position: relative;

    margin-bottom: 35px;
}

.footer h3::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -12px;

    width: 55px;

    height: 3px;

    background: #c61d26;

    border-radius: 10px;
}

.footer p {
    color: #d5d5d5;

    line-height: 1.9;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #eee;
}

.footer-links a:hover {
    color: var(--secondary);

    padding-left: 6px;
}

.footer-contact li {
    display: flex;

    gap: 12px;

    align-items: flex-start;
}

.footer-contact i {
    width: 42px;
    height: 42px;

    background: #a3121c;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.footer-social {
    display: flex;

    gap: 15px;

    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #2c2c2c;

    display: flex;

    justify-content: center;
    align-items: center;

    color: #fff;
}

.footer-social a:hover {
    background: #a3121c;
}

.footer-bottom {
    margin-top: 60px;

    border-top: 1px solid rgba(255,255,255,.08);

    padding: 22px 0;
}

.footer-bottom-wrap {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.footer-bottom-links {
    display: flex;

    gap: 25px;
}

.footer-bottom-links a {
    color: #ddd;
}

/*==================================================
 SCROLL TOP
==================================================*/

.scroll-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #b71d2a
        );

    color: #fff;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 20px;

    box-shadow:
        0 15px 35px rgba(141,17,27,.25);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .35s;

    z-index: 999;
}

.scroll-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-6px);
}

/*==================================================
 LIGHTBOX
==================================================*/

.gallery-lightbox {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,.92);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    z-index: 99999;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.gallery-lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.gallery-lightbox img {
    display: block;

    max-width: 90%;

    max-height: 88vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 12px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);
}

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 55px;
    height: 55px;

    border: none;

    border-radius: 50%;

    background: #fff;

    color: #8d111b;

    font-size: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 100000;

    transition: .3s ease;
}

.lightbox-close:hover {
    background: #8d111b;

    color: #fff;

    transform: rotate(90deg);
}

/*==================================================
 ANIMATIONS
==================================================*/

.fade-up {
    animation: fadeUp .8s ease both;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*==================================================
 UTILITIES
==================================================*/

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.rounded {
    border-radius: var(--radius);
}

.shadow {
    box-shadow: var(--shadow);
}

.bg-white {
    background: #fff;
}

.bg-primary {
    background: var(--primary);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

/*==================================================
 MOBILE
==================================================*/

@media (max-width: 992px) {

    .nav-menu {
        position: fixed;

        top: 90px;
        left: -100%;

        width: 280px;

        height: calc(100vh - 90px);

        background: #fff;

        flex-direction: column;

        align-items: flex-start;

        padding: 35px;

        gap: 25px;

        transition: .35s;

        box-shadow:
            0 20px 50px rgba(0,0,0,.08);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-right .donate-btn {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        max-width: 700px;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        text-align: left;
    }

    .services-grid,
    .activities-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }
}

/*==================================================
 TABLET / MOBILE
==================================================*/

@media (max-width: 768px) {

    section {
        padding: 80px 0;
    }

    .container {
        width: 92%;
    }

    .header,
    .navbar {
        height: 80px;
    }

    .logo img {
        width: 58px;
    }

    .logo h2 {
        font-size: 22px;
    }

    .logo span {
        font-size: 12px;
    }

    .nav-menu {
        top: 80px;

        height: calc(100vh - 80px);
    }

    .page-banner {
        min-height: 340px;

        padding: 90px 0 60px;
    }

    .page-banner-content h1 {
        font-size: 36px;
    }

    .page-banner-content p {
        font-size: 17px;
    }

    .about-section {
        padding: 75px 0;
    }

    .about-image img {
        height: 380px;

        border-radius: 22px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }

    /* Activity empty box mobile */

    .activities-grid .empty-box {
        width: 100%;

        min-height: 240px;

        padding: 50px 25px;

        border-radius: 20px;
    }

    .activities-grid .empty-box i {
        width: 65px;
        height: 65px;

        font-size: 26px;

        margin-bottom: 18px;
    }

    .activities-grid .empty-box h3 {
        font-size: 23px;
    }

    .activities-grid .empty-box p {
        font-size: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        aspect-ratio: 4/3;
    }

    .footer {
        text-align: center;
    }

    .footer h3::after {
        left: 50%;

        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-wrap {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;

        justify-content: center;
    }

    .hero {
        min-height: auto;

        padding: 140px 0 90px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 250px;
    }

    .stat-box {
        width: 90%;

        max-width: 320px;
    }

    .donation-box h2 {
        font-size: 34px;
    }

    .donation-box p {
        font-size: 16px;
    }

    .donation-buttons {
        flex-direction: column;

        align-items: center;
    }

    .gallery-lightbox {
        padding: 20px;
    }

    .gallery-lightbox img {
        max-width: 95%;

        max-height: 82vh;
    }

    .lightbox-close {
        top: 15px;

        right: 15px;

        width: 48px;
        height: 48px;

        font-size: 20px;
    }
}

/* =========================================================
   HOME PAGE FINAL FIX
========================================================= */


/* =========================
   HERO BACKGROUND FIX
========================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 70px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.48),
            rgba(255,255,255,.48)
        ),
        url("../images/hero.jpg");

    background-size: cover !important;

    /* મંદિરનો ઉપરનો ભાગ visible રાખશે */
    background-position: center top !important;

    background-repeat: no-repeat !important;

    z-index: -2;
}


/* =========================
   HERO OVERLAY
========================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.08),
            rgba(255,255,255,.18)
        );

    z-index: -1;
    pointer-events: none;
}


/* =========================
   ACTIVITY EMPTY CENTER
========================= */

.activities-grid {
    width: 100%;
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(350px, 1fr));

    gap: 35px;
}


/* Empty activity full row */
.activities-grid .empty-box {
    grid-column: 1 / -1;

    width: 100%;
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    justify-self: center;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 70px 40px;

    background: #ffffff;

    border: 1px solid rgba(212,160,23,.18);

    border-radius: 25px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);
}


/* Activity icon */
.activity-empty .empty-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(212,160,23,.12);

    margin-bottom: 20px;
}


.activity-empty .empty-icon i {
    font-size: 32px;
    color: var(--secondary);
}


/* Activity title */
.activity-empty h3 {
    margin: 0 0 12px;

    color: var(--primary);

    font-size: 28px;

    font-weight: 700;

    text-align: center;
}


/* Activity text */
.activity-empty p {
    max-width: 650px;

    margin: 0 auto;

    color: #666;

    font-size: 16px;

    line-height: 1.8;

    text-align: center;
}


/* =========================
   ABOUT IMAGE + 10+ FIX
========================= */

.about-image {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}


.about-image .image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
}


.about-image img {
    width: 100%;
    height: 520px;

    object-fit: cover;
    object-position: center;

    display: block;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.12);
}


/* Years box */
.about-years {
    margin-top: 12px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    padding-left: 0;
}


.about-years strong {
    color: #222;

    font-size: 30px;

    line-height: 1;

    font-weight: 700;
}


.about-years span {
    margin-top: 5px;

    color: #222;

    font-size: 16px;

    line-height: 1.5;
}


/* =========================
   ABOUT BUTTON
========================= */

.about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    color: var(--primary);

    font-weight: 600;

    margin-top: 10px;

    transition: .3s ease;
}


.about-btn:hover {
    color: var(--secondary);

    transform: translateX(5px);
}


/* =========================
   MOBILE
========================= */

@media(max-width: 768px) {

    .hero {
        min-height: auto;

        padding-top: 130px;
        padding-bottom: 80px;
    }

    .hero::before {
        background-position: center top !important;
    }


    .activities-grid {
        grid-template-columns: 1fr;
    }


    .activities-grid .empty-box {
        grid-column: 1;

        width: 100%;

        padding: 50px 25px;
    }


    .activity-empty h3 {
        font-size: 23px;
    }


    .activity-empty p {
        font-size: 15px;
    }


    .about-image img {
        height: 380px;

        border-radius: 22px;
    }


    .about-years {
        padding-left: 0;
    }

    @media (max-width: 768px) {

    .activity-image {
        height: 320px;
    }

}

@media (max-width: 480px) {

    .activity-image {
        height: 300px;
    }

}

    

}