* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Poppins, 'Noto Serif Devanagari', sans-serif;
    color: #25160b;
    background: #fff9ef
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 248, 232, .92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 4%;
    box-shadow: 0 8px 30px rgba(80, 35, 0, .08)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #3b1b00
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #8f2500, #ffb000);
    color: #fff;
    font-size: 25px
}

.brand small {
    display: block;
    font-size: 12px;
    color: #8b5b2a
}

nav {
    display: flex;
    gap: 18px;
    align-items: center
}

nav a,
nav button {
    text-decoration: none;
    color: #4a2a10;
    font-weight: 600;
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer
}

.active {
    color: #a43400
}

.nav-cta,
.btn {
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.nav-cta,
.primary {
    background: linear-gradient(135deg, #8f2500, #f5a400);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(143, 37, 0, .25)
}

.secondary {
    background: #fff4d8;
    color: #7c2600;
    border: 1px solid #ffd186
}

.dark {
    background: #321400;
    color: #fff
}

.login-link {
    background: #321400 !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 11px 18px !important
}

.menu-btn {
    display: none;
    background: #8f2500;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 24px
}
/* Header Admin Dropdown */
.admin-menu{
    position:relative;
    display:inline-block;
}

.admin-toggle{
    display:flex;
    align-items:center;
    gap:7px;
    cursor:pointer;
}

.admin-dropdown{
    position:absolute;
    top:calc(100% + 12px);
    right:0;
    width:190px;
    background:#fff;
    border:1px solid #ffe0a1;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(80,35,0,.14);
    padding:8px;
    display:none;
    z-index:9999;
}

.admin-dropdown::before{
    content:"";
    position:absolute;
    top:-8px;
    right:25px;
    width:16px;
    height:16px;
    background:#fff;
    border-left:1px solid #ffe0a1;
    border-top:1px solid #ffe0a1;
    transform:rotate(45deg);
}

.admin-dropdown a{
    display:block;
    padding:12px 14px;
    color:#5b2500;
    text-decoration:none;
    font-weight:700;
    border-radius:12px;
}

.admin-dropdown a:hover{
    background:#fff0cc;
    color:#8f2500;
}

.admin-menu:hover .admin-dropdown{
    display:block;
}
.admin-dropdown{
    display:none;
}

.admin-dropdown.show{
    display:block;
}

/* Login Modal Better UI */
.modal-card{
    border-radius:26px;
    border:1px solid #ffe0a1;
    box-shadow:0 25px 70px rgba(0,0,0,.22);
}

.login-icon{
    width:70px;
    height:70px;
    margin:0 auto 14px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff9f1c,#8f2500);
    color:#fff;
    font-size:34px;
    font-weight:800;
    box-shadow:0 12px 30px rgba(143,37,0,.25);
}

.modal-card h2{
    text-align:center;
    color:#8f2500;
    margin-bottom:6px;
}

.login-subtitle{
    text-align:center;
    color:#777;
    margin-bottom:22px;
}

.login-form input{
    width:100%;
    padding:14px 16px;
    border:1px solid #f2d28a;
    background:#fffaf0;
    border-radius:14px;
    margin-bottom:14px;
    outline:none;
    font-size:15px;
}

.login-form input:focus{
    border-color:#c4661f;
    box-shadow:0 0 0 4px rgba(196,102,31,.12);
}

.login-form .btn{
    width:100%;
    justify-content:center;
}

.modal-close{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#fff0cc;
    color:#8f2500;
    font-size:24px;
    line-height:1;
}

@media(max-width:768px){
    .admin-menu{
        width:100%;
    }

    .admin-toggle{
        width:100%;
        justify-content:center;
    }

    .admin-dropdown{
        position:static;
        width:100%;
        margin-top:10px;
        box-shadow:none;
    }

    .admin-dropdown::before{
        display:none;
    }

    .admin-menu:hover .admin-dropdown{
        display:block;
    }
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, #ffd977 0, transparent 28%), linear-gradient(135deg, #fff4d8, #fff, #ffecd0);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.mobile-stats {
    display: none;
}

.hero h1,
.page-hero h1 {
    line-height: 1.05;
}

.hero .lead {
    font-size: 1.05rem;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.hero-actions .btn {
    min-width: 180px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.stats div {
    background: #fff;
    border: 1px solid #ffe0a1;
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(91, 37, 0, .07);
}

.page-hero {
    background: linear-gradient(135deg, #fff4d8, #fff, #ffecd0);
    padding: 70px 0;
    text-align: center
}

.page-hero h1 {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(40px, 6vw, 70px);
    margin: 0;
    color: #541e00
}

.badge,
.section-tag {
    display: inline-block;
    color: #a83600;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px
}

.hero h1 {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.05;
    margin: 0 0 18px;
    color: #541e00
}

.lead {
    font-size: 21px;
    line-height: 1.7;
    max-width: 680px
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 28px 0
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px
}

.stats div {
    background: #fff;
    border: 1px solid #ffe0a1;
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(91, 37, 0, .07)
}

.stats b {
    display: block;
    color: #8f2500;
    font-size: 23px
}

.stats span {
    font-size: 13px
}

.hero-card {
    position: relative;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: 420px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    border-radius: 34px;
    background: #f4e7d1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    display: block;
}

.hero-card img,
.rounded-img {
    width: 100%;
    border-radius: 34px;
    box-shadow: 0 25px 65px rgba(85, 33, 0, .22);
    object-fit: cover;
    max-height: 650px;
}

.floating-card {
    position: absolute;
    left: -25px;
    bottom: 35px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.section {
    padding: 80px 0
}

.two-col,
.contact-grid,
.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start
}

h2 {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(30px, 4vw, 52px);
    margin: 0 0 18px;
    color: #542000
}

p {
    line-height: 1.75;
    color: #5f452e
}

.gradient-section {
    background: linear-gradient(135deg, #631b00, #a43400 55%, #f0a000);
    color: #fff
}

.gradient-section h2,
.gradient-section p,
.light {
    color: #fff
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 28px
}

.card {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 28px;
    padding: 28px;
    backdrop-filter: blur(8px)
}

.icon {
    font-size: 42px
}

.card h3 {
    font-size: 23px
}

.event-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.event-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.event-card:hover{
    transform:translateY(-8px);
}

.event-image{
    position:relative;
    height:240px;
}

.event-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.event-date{
    position:absolute;
    top:15px;
    left:15px;
    background:#ff8c00;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

.event-content{
    padding:25px;
}

.event-content h3{
    font-size:24px;
    margin-bottom:12px;
    color:#222;
}

.event-place{
    color:#777;
    margin-bottom:15px;
}

.event-desc{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.event-btn{
    display:inline-block;
    padding:12px 24px;
    background:#ff8c00;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.event-btn:hover{
    background:#e87700;
}
.contact-form label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:18px;
}

.contact-form input[type="file"]{
    padding:10px;
    background:#fff;
}
.video-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(80, 35, 0, .14);
    margin: 20px 0
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(80, 35, 0, .12);
    transition: transform .35s ease, filter .35s ease;
}

.gallery img:hover {
    transform: translateY(-6px) scale(1.02);
    filter: saturate(1.08);
}

.section-subtext {
    max-width: 680px;
    margin: 14px 0 24px;
    color: #5d462a;
    line-height: 1.75;
}

.gallery-manage-item {
    break-inside: avoid;
    margin: 0 0 18px;
    background: #fff;
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 14px 35px rgba(80, 35, 0, .12)
}

.gallery-manage-item img {
    box-shadow: none;
    margin-bottom: 10px
}

.social-box {
    background: linear-gradient(135deg, #fff1ce, #fff);
    border: 1px solid #ffd991;
    border-radius: 32px;
    padding: 45px
}

.social-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.social-links a {
    background: #fff;
    border: 1px solid #ffd991;
    border-radius: 999px;
    padding: 13px 20px;
    color: #7c2600;
    font-weight: 800;
    text-decoration: none
}

.contact-form,
.admin-card {
    background: #fff;
    border: 1px solid #ffe0a1;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 55px rgba(80, 35, 0, .1);
    display: grid;
    gap: 14px
}

.contact-form.plain {
    box-shadow: none;
    border: 0;
    padding: 0
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.login-form input {
    width: 100%;
    border: 1px solid #f3c16d;
    border-radius: 14px;
    padding: 14px;
    font: inherit
}

.contact-form textarea {
    min-height: 120px
}

.delete-btn {
    background: #b00020;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
    cursor: pointer
}

.alert {
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700
}

.success {
    background: #e7f9ed;
    color: #137333
}

.error {
    background: #fde8e8;
    color: #a10000
}

.hint {
    font-size: 13px;
    color: #8b5b2a
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal.show {
    display: flex
}

.modal-card {
    width: min(420px, 100%);
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .25)
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    border: 0;
    background: none;
    font-size: 34px;
    cursor: pointer
}

.login-form {
    display: grid;
    gap: 14px
}

/* Premium Footer Styles */
.premium-footer {
    background: linear-gradient(135deg, #1a0a02 0%, #2d1a0a 100%);
    color: #fff;
    position: relative;
    margin-top: 80px;
    border-top: 3px solid #ff6b35;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffd700, #ff6b35);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Main Footer Grid */
.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 0 40px;
}

/* Brand Section */
.footer-brand h2 {
    font-size: 28px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #b0a088;
    line-height: 1.6;
    font-size: 14px;
}

.footer-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    margin: 20px 0 15px;
}

.copyright {
    font-size: 13px;
    color: #8a7a68;
}

/* Links Section */
.footer-links-section h3,
.footer-social h3,
.footer-wa h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-links-section h3::after,
.footer-social h3::after,
.footer-wa h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffd700);
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
}

.footer-links-section li {
    margin-bottom: 12px;
}

.footer-links-section a {
    color: #c0b0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links-section a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

/* Social Icons Grid */
.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-card i {
    font-size: 22px;
}

.social-card span {
    font-size: 13px;
    font-weight: 500;
}

.social-card:hover {
    transform: translateY(-3px);
}

.social-card.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-card.instagram:hover {
    background: linear-gradient(45deg, #405de6, #e4405f, #f77737);
    border-color: #e4405f;
}

.social-card.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-card.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

/* WhatsApp Card */
.wa-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.wa-card i {
    font-size: 48px;
    color: #25d366;
    margin-bottom: 10px;
}

.wa-card p {
    color: #b0a088;
    font-size: 13px;
    margin: 10px 0;
}

.wa-btn {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.wa-btn:hover {
    background: #128c7e;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 20px;
}

.footer-bottom p,
.footer-bottom .footer-counter {
    color: #d1c2a8;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-bottom .footer-counter {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .footer-counter strong {
    color: #fff;
}

/* Float WhatsApp Button */
.float-wa,
.float-call {
    position: fixed;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    z-index: 1000;
    transition: all 0.3s ease;
}

.float-wa {
    bottom: 25px;
    background: #25d366;
    animation: pulse 2s infinite;
}

.float-call {
    bottom: 95px;
    background: #ff6b35;
}

.float-wa:hover {
    transform: scale(1.1);
    background: #128c7e;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.float-call:hover {
    transform: scale(1.1);
    background: #d65417;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.45);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-divider {
        margin: 20px auto 15px;
    }
    
    .footer-links-section h3::after,
    .footer-social h3::after,
    .footer-wa h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons-grid {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-links-section ul li a {
        justify-content: center;
    }
    
    .footer-links-section a:hover {
        transform: translateX(0) scale(1.05);
    }
    
    .float-wa {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-divider {
        margin: 20px auto 15px;
    }
}



@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-divider {
        margin: 20px auto 15px;
    }
    
    .footer-links-section h3::after,
    .footer-social h3::after,
    .footer-wa h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons-grid {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-links-section ul li a {
        justify-content: center;
    }
    
    .footer-links-section a:hover {
        transform: translateX(0) scale(1.05);
    }
    
   
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-divider {
        margin: 20px auto 15px;
    }
}



.thankyou {
    min-height: 60vh;
    display: grid;
    place-items: center;
    text-align: center
}

@media(max-width:1050px) {
    nav {
        gap: 12px
    }

    .brand small {
        display: none
    }
}

@media(max-width:900px) {
    .menu-btn {
        display: block;
    }

    nav {
        position: absolute;
        left: 4%;
        right: 4%;
        top: 78px;
        display: none;
        flex-direction: column;
        gap: 12px;
        background: #fff;
        border-radius: 22px;
        padding: 22px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    }

    nav.show {
        display: flex;
    }

    .hero-grid,
    .two-col,
    .contact-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 55px;
    }

    .hero-content {
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .desktop-stats {
        display: none;
    }

    .mobile-stats {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .event-card,
    .yatra-card {
        width: 100%;
    }

    .floating-card {
        position: static;
        margin-top: 15px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-card {
        width: 100%;
    }

    .hero-slider {
        min-height: 320px;
    }

    .hero-card img {
        max-height: 520px;
        height: auto;
    }

    .hero-content {
        padding-bottom: 25px;
    }

    .hero-bg {
        background-position: top center;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-grid {
        display: block;
        text-align: center
    }
}





















/* Admin Dashboard */
.admin-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    align-items:start;
}

.admin-card{
    background:#fff;
    padding:30px;
    border-radius:26px;
    border:1px solid #ffe0a1;
    box-shadow:0 20px 50px rgba(80,35,0,.08);
}

.admin-card h2{
    margin-bottom:22px;
    color:#8f2500;
    font-size:26px;
}

.contact-form.plain label{
    display:block;
    margin:14px 0 8px;
    font-weight:700;
    color:#5b2500;
}

.contact-form.plain input,
.contact-form.plain textarea{
    width:100%;
    border:1px solid #f2d28a;
    background:#fffaf0;
    border-radius:14px;
    padding:14px 16px;
    font-size:15px;
    outline:none;
}

.contact-form.plain input:focus,
.contact-form.plain textarea:focus{
    border-color:#c4661f;
    box-shadow:0 0 0 4px rgba(196,102,31,.12);
}

.contact-form.plain textarea{
    resize:vertical;
    min-height:120px;
}

.contact-form.plain input[type="file"]{
    background:#fff;
    padding:12px;
}

.alert.success{
    background:#eaf8ee;
    color:#20733a;
    padding:12px 16px;
    border-radius:12px;
    margin-bottom:18px;
    font-weight:700;
}

.hint{
    margin-top:12px;
    color:#777;
    font-size:14px;
}

/* Manage Programs */
.admin-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:24px;
}

.admin-list .event-item{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    background:#fff;
    border-radius:24px;
    padding:22px;
    border:1px solid #ffe0a1;
    box-shadow:0 18px 42px rgba(80,35,0,.08);
}

.admin-list .date{
    background:linear-gradient(135deg,#ff9f1c,#c4661f);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:800;
}

.admin-list h3{
    color:#2b1600;
    font-size:21px;
    margin-bottom:8px;
}

.admin-list p{
    color:#666;
    line-height:1.6;
}

.admin-list form{
    margin-top:auto;
    width:100%;
}

.delete-btn{
    width:100%;
    border:0;
    background:#d62828;
    color:#fff;
    padding:12px 20px;
    border-radius:50px;
    font-weight:800;
    cursor:pointer;
    transition:.3s;
}

.delete-btn:hover{
    background:#a4161a;
    transform:translateY(-2px);
}

/* Manage Gallery */
.manage-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:22px;
}

.gallery-manage-item{
    background:#fff;
    border-radius:22px;
    padding:12px;
    border:1px solid #ffe0a1;
    box-shadow:0 18px 40px rgba(80,35,0,.08);
}

.gallery-manage-item img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:16px;
    display:block;
    margin-bottom:12px;
}

/* Mobile */
@media(max-width:768px){
    .admin-grid{
        grid-template-columns:1fr;
    }

    .admin-card{
        padding:22px;
    }

    .admin-list{
        grid-template-columns:1fr;
    }

    .manage-gallery{
        grid-template-columns:1fr;
    }
}

.gallery-tabs{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-bottom:35px;
}

.tab-btn{
    border:0;
    padding:13px 34px;
    border-radius:50px;
    background:#fff0cc;
    color:#8f2500;
    font-weight:800;
    cursor:pointer;
}

.tab-btn.active{
    background:#8f2500;
    color:#fff;
}

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:25px;
}

.video-card{
    background:#fff;
    padding:12px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.video-card iframe{
    width:100%;
    height:250px;
    border:none;
    border-radius:15px;
}

.youtube-btn-wrap{
    text-align:center;
    margin-top:30px;
}

@media(max-width:768px){
    .video-grid{
        grid-template-columns:1fr;
    }

    .video-card iframe{
        height:220px;
    }
}

/*-----------------popup-------------------------*/

/* ========== POPUP STYLES - Add to your existing CSS file ========== */

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-container {
    background: linear-gradient(135deg, #fff 0%, #fef9e6 100%);
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    position: relative;
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    z-index: 10;
    transition: all 0.3s;
}

.popup-close:hover { color: #ff4757; transform: rotate(90deg); }

.popup-header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 30px 20px 20px;
    text-align: center;
}

.popup-header .spiritual-icon { font-size: 50px; margin-bottom: 10px; }
.popup-header h3 { color: white; font-size: 24px; margin: 10px 0 5px; }
.popup-header p { color: rgba(255,255,255,0.95); font-size: 13px; }

.popup-form { padding: 30px; }

.form-group { margin-bottom: 20px; position: relative; }

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    font-style: normal;
    font-size: 18px;
}

.form-group textarea ~ i { top: 20px; transform: none; }

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(255,107,53,0.3); 
}

.popup-trigger-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;  /* <-- YAHAN CHANGE KIYA */
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}

.popup-trigger-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(255,107,53,0.5);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.popup-trigger-btn span { font-size: 28px; }

/* Mobile view */
@media (max-width: 768px) {
    .popup-trigger-btn {
        bottom: 20px;
        left: 20px;  /* <-- Mobile mein bhi left */
        width: 50px;
        height: 50px;
    }
    .popup-trigger-btn span { font-size: 24px; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.popup-trigger-btn span { font-size: 28px; }

.success-popup { text-align: center; padding: 40px 30px; }
.success-icon { font-size: 70px; margin-bottom: 20px; }
.success-popup h3 { color: #28a745; margin-bottom: 15px; }

.whatsapp-redirect {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
}

.error-message { color: #ff4757; font-size: 12px; margin-top: 5px; padding-left: 45px; }
.form-group.error input { border-color: #ff4757; }

@media (max-width: 768px) {
    .popup-trigger-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .popup-trigger-btn span { font-size: 24px; }
}