/* Custom CSS for Vahatuk Sanghatana static site */
html, body {
    max-width:100%;
    overflow-x:hidden;
}
body {
  margin: 0;
  font-family: 'Noto Sans Devanagari', 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  color: #0a0a0a;
}

/* Marquee animation for top bar */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

/* Slide fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn { animation: fadeIn 0.6s ease-out; }

/* 2-line clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Marathi heading font */
.font-marathi { font-family: 'Tiro Devanagari Marathi', serif; }

/* Toast container */
#toast-root {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 22rem;
}
.toast-item {
  background: #111827;
  color: #ffffff;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(10px);
  animation: toastIn 0.3s forwards, toastOut 0.4s 3s forwards;
  border-left: 4px solid #dc2626;
}
.toast-item .toast-title { font-weight: 700; font-size: 0.9rem; }
.toast-item .toast-desc  { font-size: 0.8rem; opacity: 0.85; margin-top: 2px; }
@keyframes toastIn  { to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px); } }

/* Lucide icon sizing helper (matches size prop) */
.lucide { display: inline-block; vertical-align: middle; }


.news-scroll{
    max-height:420px;      /* Change height as needed */
    overflow-y:auto;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

/* Custom Scrollbar */
.news-scroll::-webkit-scrollbar{
    width:6px;
}

.news-scroll::-webkit-scrollbar-track{
    background:#f3f4f6;
}

.news-scroll::-webkit-scrollbar-thumb{
    background:#c62828;
    border-radius:10px;
}

.news-scroll::-webkit-scrollbar-thumb:hover{
    background:#8e1414;
}

/* Firefox */
.news-scroll{
    scrollbar-width:thin;
    scrollbar-color:#c62828 #f3f4f6;
}



.about-section{
    background:#f8f9fa;
    padding:20px 20px;
}

.about-wrapper{
    width:100%;
    max-width:900px;
    margin:0 auto;
}

.about-title{
    text-align:center;
    margin-bottom:15px;
}

.about-title span{
    display:inline-block;
    padding:8px 20px;
    background:#c62828;
    color:#fff;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.about-title h2{
    margin-top:18px;
    font-size:42px;
    font-weight:700;
    color:#222;
}

.about-title h2::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#c62828;
    margin:15px auto 0;
    border-radius:10px;
}

.about-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:5px solid #c62828;
}

.about-card h3{
    text-align:center;
    color:#c62828;
    font-size:30px;
    margin-bottom:20px;
}

.welcome{
    text-align:center;
    font-size:18px;
    color:#666;
    margin-bottom:30px;
}

.about-card p{
    text-align:justify;
    line-height:2;
    font-size:17px;
    color:#555;
}

@media(max-width:768px){

    .about-section{
        padding:60px 15px;
    }

    .about-card{
        padding:30px 22px;
    }

    .about-title h2{
        font-size:32px;
    }

    .about-card h3{
        font-size:24px;
    }

}

/* body members */
/*=========================================
            PAGE BANNER
=========================================*/

/*=========================================
            PAGE BANNER
=========================================*/
/*=========================================
            PREMIUM PAGE BANNER
=========================================*/

.page-banner{
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
    padding: 55px 0 45px;
    text-align: center;
    border-bottom: 1px solid #ececec;
}

.page-banner::before{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -180px;
    left: -120px;
    border-radius: 50%;
    background: rgba(198,40,40,.05);
}

.page-banner::after{
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    bottom: -150px;
    right: -80px;
    border-radius: 50%;
    background: rgba(212,175,55,.08);
}

.page-banner .container{
    position: relative;
    z-index: 2;
}

.banner-subtitle{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    background:#fff;
    color:#c62828;
    border:1px solid rgba(198,40,40,.12);
    border-radius:40px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.page-banner h1{
    font-size:42px;
    font-weight:800;
    color:#222;
    margin-bottom:12px;
    line-height:1.2;
}

.page-banner p{
    max-width:600px;
    margin:0 auto 18px;
    color:#666;
    font-size:16px;
    line-height:28px;
}

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    font-size:14px;
}

.breadcrumb a{
    color:#c62828;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#d4af37;
}

.breadcrumb span{
    color:#888;
}

/* Hide old shapes */
.banner-shape,
.shape1,
.shape2{
    display:none;
}

/*==============================
        Mobile
==============================*/

@media(max-width:768px){

    .page-banner{
        padding:40px 0 35px;
    }

    .page-banner h1{
        font-size:30px;
    }

    .page-banner p{
        font-size:15px;
        line-height:24px;
    }

    .banner-subtitle{
        font-size:12px;
        padding:7px 16px;
    }
}
/*==================================================
            MEMBER SECTION
==================================================*/

.member-section{
    padding:90px 0;
    background:#fff;
    position:relative;
}

.member-section:nth-child(even){
    background:#f8f9fa;
}

.member-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background:#e9ecef;
}


/*==================================================
            SECTION TITLE
==================================================*/

/*=========================================
            SECTION TITLE
=========================================*/

.section-title{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.section-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#fff5f5;

    color:#c62828;

    border:1px solid rgba(198,40,40,.15);

    padding:10px 24px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

    box-shadow:0 8px 20px rgba(198,40,40,.08);

}

.section-badge i{

    color:#d4af37;

    font-size:15px;

}

.section-title h2{

    font-size:48px;

    font-weight:800;

    color:#222;

    margin-bottom:20px;

    line-height:1.2;

}

.title-line{

    width:120px;

    height:5px;

    margin:0 auto 25px;

    border-radius:30px;

    background:linear-gradient(90deg,#c62828,#d4af37);

    position:relative;

}

.title-line::before{

    content:"";

    position:absolute;

    width:14px;

    height:14px;

    border-radius:50%;

    background:#d4af37;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:17px;

    line-height:30px;

}

/* Mobile */

@media(max-width:768px){

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:15px;
        line-height:26px;
    }

}

/*==================================================
            LEADER CARD
==================================================*/

/*=========================================
            MEMBER SECTION
=========================================*/

.member-section{
    padding:90px 0;
    background:#fff;
}

.member-section.bg-light{
    background:#f8f9fa;
}

/*=========================================
            SECTION TITLE
=========================================*/

.section-title{
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#c62828;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:30px;
}

.title-line{
    width:90px;
    height:4px;
    background:#d4af37;
    border-radius:20px;
    margin:18px auto;
}


/*=========================================
            MEMBER CARD
=========================================*/

.member-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid #eee;
    height:100%;

    display:flex;
    flex-direction:column;
}

.member-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
    border-color:#d4af37;
}


/*=========================================
            MEMBER IMAGE
=========================================*/

.member-image{
    height:320px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    background:#fff;
}

.member-image img{
    width:auto;
    max-width:100%;
    height:100%;
    object-fit:contain;
}
.member-card:hover img{
    transform:scale(1.08);
}

/*=========================================
        MEMBER GRID
=========================================*/

.member-scroll{

    display:flex;

    flex-wrap:wrap;              /* Allow next row */

    justify-content:center;      /* Center all cards */

    align-items:flex-start;

    gap:30px;

    width:100%;

    margin:0 auto;

}

.member-item{

    flex:0 0 calc(20% - 24px);   /* 5 cards per row */

    max-width:calc(20% - 24px);

    display:flex;

}

/* Card */

.member-card{

    width:100%;

    height:100%;

}


/*==============================
        Responsive
==============================*/

@media(max-width:1200px){

    .member-item{

        flex:0 0 calc(25% - 23px);

        max-width:calc(25% - 23px);

    }

}

@media(max-width:992px){

    .member-item{

        flex:0 0 calc(33.333% - 20px);

        max-width:calc(33.333% - 20px);

    }

}

@media(max-width:768px){

    .member-item{

        flex:0 0 calc(50% - 15px);

        max-width:calc(50% - 15px);

    }

}

@media(max-width:576px){

    .member-item{

        flex:0 0 100%;

        max-width:100%;

    }

}

.member-scroll::-webkit-scrollbar{
    height:8px;
}

.member-scroll::-webkit-scrollbar-thumb{
    background:#c62828;
    border-radius:20px;
}

.member-scroll::-webkit-scrollbar-track{
    background:#f3f3f3;
}

.member-item{
    flex:0 0 280px;
}
/*=========================================
            MEMBER INFO
=========================================*/

.member-info{
    padding:25px;
    text-align:center;
    flex:1;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.member-info h4{
    font-size:24px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.member-post{
    display:inline-block;
    background:#fbe9e7;
    color:#c62828;
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    margin:10px auto 18px;
}

.member-card:hover .member-post{
    background:#d4af37;
    color:#fff;
}

.member-city{
    color:#666;
    font-size:15px;
}

.member-city i{
    color:#c62828;
    margin-right:6px;
}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

    .member-image{
        height:280px;
    }

    .section-title h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .member-section{
        padding:60px 0;
    }

    .member-image{
        height:300px;
    }

    .member-info{
        padding:20px;
    }

    .member-info h4{
        font-size:21px;
    }

    .section-title h2{
        font-size:28px;
    }

}

@media(max-width:575px){

    .member-image{
        height:340px;
    }

}

/*==================================================
            CITY TITLE
==================================================*/

.city-title{

    font-size:36px;

    color:#c62828;

    text-align:center;

    margin-bottom:50px;

    font-weight:700;

    position:relative;

}

.city-title::after{

    content:"";

    width:90px;

    height:4px;

    background:#d4af37;

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:-18px;

    border-radius:20px;

}


/*==================================================
            AOS
==================================================*/

[data-aos]{

    transition-duration:.8s;

}

.city-title{

    font-size:32px;

    font-weight:700;

    color:#c62828;

    margin:60px 0 25px;

    text-align:center;

    position:relative;

}

.city-title::after{

    content:"";

    width:70px;

    height:4px;

    background:#d4af37;

    display:block;

    margin:12px auto 0;

    border-radius:30px;

}
.member-card{
    width:100%;
    height:100%;
}

.member-image{
    height:280px;
    overflow:hidden;
}

.member-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top;
}

/*=========================================
        CITY DIVIDER
=========================================*/

.city-divider{
    display:flex;
    align-items:center;
    gap:20px;
    margin:45px 0 30px;
}

.city-divider::before,
.city-divider::after{
    content:"";
    flex:1;
    height:1px;
    background:#ddd;
}


.city-divider span{

    display:flex;
    align-items:center;
    gap:8px;

    background:#c62828;
    color:#fff;

    padding:10px 25px;
    border-radius:50px;

    font-size:18px;
    font-weight:600;

    box-shadow:0 8px 20px rgba(198,40,40,.25);
}


.city-divider i{
    font-size:16px;
}



.body-member-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    background:#c62828;
    color:#fff;

    padding:12px 24px;
    border-radius:50px;

    font-size:15px;
    font-weight:600;
    text-decoration:none;

    box-shadow:0 8px 20px rgba(198,40,40,0.25);

    transition:0.3s ease;
}

.body-member-btn:hover{
    background:#b71c1c;
    color:#fff;
    transform:translateY(-3px);
}

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


/*=========================
    PREMIUM STATS SECTION
==========================*/

.stats-section{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,#ffe8e8 0%,transparent 40%),
        radial-gradient(circle at bottom right,#ffe1c7 0%,transparent 40%),
        #f8fafc;
}

/* Floating Background Blobs */
.stats-section::before,
.stats-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.35;
    animation:floatBlob 10s ease-in-out infinite;
}

.stats-section::before{
    width:280px;
    height:280px;
    background:#ef4444;
    top:-120px;
    left:-100px;
}

.stats-section::after{
    width:250px;
    height:250px;
    background:#fb923c;
    right:-80px;
    bottom:-100px;
    animation-delay:3s;
}

@keyframes floatBlob{
    0%,100%{
        transform:translateY(0) scale(1);
    }
    50%{
        transform:translateY(30px) scale(1.15);
    }
}

/*=========================
        CARD DESIGN
==========================*/

.stat-card{
    position:relative;
    overflow:hidden;
    padding:26px 18px;
    border-radius:22px;

    background:rgba(255,255,255,.75);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.4);

    transition:.45s ease;

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);

    animation:cardReveal .8s forwards;
    opacity:0;
    transform:translateY(40px);
}

/* Animated Gradient Border */
.stat-card::before{
    content:"";
    position:absolute;
    inset:-2px;
    background:linear-gradient(
        135deg,
        #ef4444,
        #fb923c,
        #ef4444
    );
    background-size:250% 250%;
    animation:borderMove 6s linear infinite;

    border-radius:24px;
    z-index:-2;
}

/* Inner Layer */
.stat-card::after{
    content:"";
    position:absolute;
    inset:2px;
    background:white;
    border-radius:20px;
    z-index:-1;
}

/* Shine */
.stat-card span.shine{
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );
    transform:translateX(-100%);
    animation:shine 5s infinite;
}

/* Hover */
.stat-card:hover{
    transform:translateY(-12px) scale(1.04);
    box-shadow:
        0 30px 60px rgba(239,68,68,.25);
}

/* Number */
.stat-card h3{
    font-size:2.3rem;
    font-weight:800;
    color:#c62828;
    margin-bottom:10px;
}

/* Label */
.stat-card p{
    color:#555;
    font-size:15px;
    font-weight:600;
}

/*=========================
        ANIMATIONS
==========================*/

@keyframes borderMove{
    0%{background-position:0%;}
    100%{background-position:200%;}
}

@keyframes shine{
    to{
        transform:translateX(220%);
    }
}

@keyframes cardReveal{
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/*==================================
        VALUES SECTION
===================================*/

.values-section{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at left top,#fff4f4 0%,transparent 45%),
        radial-gradient(circle at right bottom,#fff1e8 0%,transparent 45%),
        #ffffff;
}

/* Decorative Glow */

.values-section::before,
.values-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    opacity:.25;
    z-index:0;
    animation:blobMove 10s ease-in-out infinite;
}

.values-section::before{
    width:260px;
    height:260px;
    background:#ef4444;
    top:-100px;
    left:-80px;
}

.values-section::after{
    width:220px;
    height:220px;
    background:#f97316;
    bottom:-90px;
    right:-70px;
    animation-delay:3s;
}

@keyframes blobMove{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(35px);
    }

}

/*==================================
        VALUE CARD
===================================*/

.value-card{

    position:relative;
    overflow:hidden;

    padding:28px 18px;

    text-align:center;

    border-radius:22px;

    background:#fff;

    border:1px solid rgba(198,40,40,.08);

    transition:.45s;

    box-shadow:
        0 12px 35px rgba(0,0,0,.06);

    opacity:0;

    transform:translateY(35px);

    animation:cardIn .7s forwards;

}

/* Gradient Border */

.value-card::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #c62828,
        #ff7043,
        #c62828
    );

    background-size:300%;

    animation:borderFlow 8s linear infinite;

    z-index:-2;

}

/* White Layer */

.value-card::after{

    content:"";

    position:absolute;

    inset:2px;

    background:#fff;

    border-radius:20px;

    z-index:-1;

}

/* Shine */

.value-card .shine{

    position:absolute;

    inset:0;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );

    transform:translateX(-120%);

    animation:shineMove 5s infinite;

}

/* Icon */

.value-card i,
.value-card svg{

    font-size:42px;

    color:#c62828;

    margin-bottom:16px;

    transition:.4s;

}

/* Title */

.value-card h4{

    font-size:18px;

    font-weight:700;

    color:#222;

    margin-bottom:8px;

}

/* Description */

.value-card p{

    font-size:14px;

    color:#666;

    line-height:1.7;

}

/* Hover */

.value-card:hover{

    transform:translateY(-12px);

    box-shadow:
        0 30px 60px rgba(198,40,40,.18);

}

.value-card:hover i,
.value-card:hover svg{

    transform:scale(1.18) rotate(8deg);

    color:#ef4444;

}

/* Floating Icon */

.value-card i,
.value-card svg{

    animation:iconFloat 3s ease-in-out infinite;

}

/*====================*/

@keyframes cardIn{

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes borderFlow{

    0%{
        background-position:0%;
    }

    100%{
        background-position:300%;
    }

}

@keyframes shineMove{

    to{

        transform:translateX(250%);

    }

}

@keyframes iconFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

}

.value-card{
    transition:0.4s ease;
}

.value-card i{
    display:inline-block;
    transition:transform .25s ease;
    will-change:transform;
}

.visitor-box{

    display:flex;
    align-items:center;
    gap:10px;

    background:linear-gradient(135deg,#c62828,#a61b1b);

    color:white;

    padding:8px 18px;

    border-radius:50px;

    box-shadow:
    0 8px 20px rgba(198,40,40,.25);

    transition:.3s;

}


.visitor-box:hover{

    transform:translateY(-3px);

    box-shadow:
    0 12px 30px rgba(198,40,40,.35);

}



.visitor-icon{

    width:35px;
    height:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:white;

    color:#c62828;

    border-radius:50%;

}



.visitor-label{

    display:block;

    font-size:10px;

    opacity:.9;

    line-height:12px;

}



.visitor-box strong{

    font-size:16px;

    font-weight:800;

    letter-spacing:1px;

}