/* =====================================================
   महाराष्ट्र राज्य अधिकारी व कर्मचारी महासंघ
   Main Stylesheet
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
    --kesari:      #E8531A;
    --kesari-dark: #C44012;
    --kesari-light:#FF7A3D;
    --navy:        #1A3564;
    --navy-dark:   #0F2040;
    --navy-light:  #2A5298;
    --gold:        #FFB800;
    --gold-dark:   #E6A500;
    --green:       #1A7A3F;
    --white:       #FFFFFF;
    --light:       #F5F7FA;
    --light2:      #EDF0F5;
    --dark:        #1A1A2E;
    --text:        #2C3E50;
    --text-light:  #6C757D;
    --border:      #DEE2E6;
    --shadow:      0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.15);
    --radius:      12px;
    --radius-sm:   8px;
    --transition:  all 0.3s ease;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    color: var(--navy);
}

a { color: var(--kesari); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--kesari-dark); }

img { max-width: 100%; }

.text-kesari { color: var(--kesari) !important; }
.text-navy   { color: var(--navy) !important; }
.text-gold   { color: var(--gold) !important; }
.bg-kesari   { background: var(--kesari) !important; }
.bg-navy     { background: var(--navy) !important; }
.bg-navy-dark{ background: var(--navy-dark) !important; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light2); }
::-webkit-scrollbar-thumb { background: var(--kesari); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--kesari-dark); }

/* =====================================================
   TICKER / ANNOUNCEMENT BAR
   ===================================================== */
.ticker-wrapper {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: #fff;
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
}
.ticker-label {
    background: var(--kesari);
    color: #fff;
    padding: 0 18px;
    height: 38px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 38px;
}
.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 45s linear infinite;
    height: 38px;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
    font-size: 0.85rem;
    padding: 0 12px;
    opacity: 0.95;
}
.ticker-link {
    color: var(--gold);
    font-weight: 600;
    margin-left: 6px;
}
.ticker-link:hover { color: #FFD700; }

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.main-navbar {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 3px solid var(--kesari);
    z-index: 1030;
}
.main-navbar.scrolled {
    padding: 6px 0;
    background: rgba(15, 32, 64, 0.98);
    backdrop-filter: blur(10px);
}

/* Brand */
.brand-logo { flex-shrink: 0; }
.logo-emblem {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--kesari), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 3px 12px rgba(232, 83, 26, 0.5);
}
.brand-text { line-height: 1.2; }
.brand-marathi {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
}
.brand-english {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    font-family: 'Poppins', sans-serif;
}
.brand-tagline {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Nav Links */
.main-navbar .nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 12px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.12);
}
.main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--kesari);
    border-radius: 2px;
}

/* Dropdown */
.main-navbar .dropdown-menu {
    background: var(--navy-dark);
    border: none;
    border-top: 3px solid var(--kesari);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    animation: dropDown 0.2s ease;
}
@keyframes dropDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.main-navbar .dropdown-item {
    color: rgba(255,255,255,0.85);
    padding: 10px 18px;
    font-size: 0.87rem;
    transition: var(--transition);
}
.main-navbar .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding-left: 22px;
}

/* Membership Button */
.btn-membership {
    background: linear-gradient(135deg, var(--kesari), var(--kesari-light)) !important;
    color: #fff !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    border: none;
    box-shadow: 0 3px 12px rgba(232,83,26,0.4);
}
.btn-membership:hover {
    background: linear-gradient(135deg, var(--kesari-dark), var(--kesari)) !important;
    box-shadow: 0 5px 18px rgba(232,83,26,0.5);
    transform: translateY(-1px);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-kesari {
    background: linear-gradient(135deg, var(--kesari), var(--kesari-light));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(232,83,26,0.3);
}
.btn-kesari:hover {
    background: linear-gradient(135deg, var(--kesari-dark), var(--kesari));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,83,26,0.4);
}
.btn-navy {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-navy:hover {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-kesari {
    border: 2px solid var(--kesari);
    color: var(--kesari);
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-kesari:hover {
    background: var(--kesari);
    color: #fff;
}

/* =====================================================
   PAGE HERO / BANNER
   ===================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kesari), var(--gold), var(--kesari));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.page-hero .breadcrumb-item a { color: var(--gold); }
.page-hero .breadcrumb-item.active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.page-hero-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.15);
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* =====================================================
   SECTION TITLE
   ===================================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--kesari), var(--gold));
    margin: 12px auto 0;
    border-radius: 2px;
}
.section-title p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   HOME HERO
   ===================================================== */
.hero-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e4080 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(232,83,26,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(255,184,0,0.1) 0%, transparent 60%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-rule='evenodd'%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3Ccircle cx='0' cy='0' r='4'/%3E%3Ccircle cx='80' cy='0' r='4'/%3E%3Ccircle cx='0' cy='80' r='4'/%3E%3Ccircle cx='80' cy='80' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(232,83,26,0.2);
    border: 1px solid rgba(232,83,26,0.4);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-title .kesari-text { color: var(--kesari-light); }
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 560px;
}
.hero-tagline {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 35px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 20px 24px;
    min-width: 130px;
    transition: var(--transition);
}
.hero-stat:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}
.hero-stat .stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--kesari-light);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.hero-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin-top: 5px;
}
.hero-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}
.hero-emblem-circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232,83,26,0.2), rgba(255,184,0,0.15));
    border: 2px solid rgba(232,83,26,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,83,26,0.2); }
    50%       { box-shadow: 0 0 0 25px rgba(232,83,26,0); }
}
.hero-emblem-circle .emblem-icon {
    font-size: 5rem;
    color: var(--kesari);
    margin-bottom: 15px;
}
.hero-emblem-circle .emblem-year {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}
.hero-emblem-circle .emblem-members {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

/* =====================================================
   STATS COUNTER SECTION
   ===================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--kesari) 0%, var(--kesari-light) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm20 35a15 15 0 1 0 0-30 15 15 0 0 0 0 30z' /%3E%3C/g%3E%3C/svg%3E");
}
.stat-card {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}
.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    transition: var(--transition);
}
.stat-card:hover .stat-icon {
    background: rgba(255,255,255,0.3);
    transform: rotateY(360deg);
}
.stat-card .stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    color: #fff;
}
.stat-card .stat-plus { color: rgba(255,255,255,0.8); }
.stat-card .stat-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-top: 6px;
    font-weight: 500;
}

/* =====================================================
   CARDS
   ===================================================== */
.news-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.news-card .card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.news-card .card-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
}
.news-card .card-body { padding: 20px; }
.news-card .card-category {
    display: inline-block;
    background: rgba(232,83,26,0.1);
    color: var(--kesari);
    border: 1px solid rgba(232,83,26,0.2);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.news-card .card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card .card-title a { color: var(--navy); }
.news-card .card-title a:hover { color: var(--kesari); }
.news-card .card-text {
    font-size: 0.88rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}
.news-card .card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* Circular/GR Table Row */
.circular-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    transition: var(--transition);
}
.circular-row:hover { background: var(--light); }
.circular-row:last-child { border-bottom: none; }
.circular-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 16px;
}
.circular-info { flex: 1; }
.circular-title { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.circular-meta { font-size: 0.8rem; color: var(--text-light); margin-top: 3px; }

/* Bearer Card */
.bearer-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
}
.bearer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bearer-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--kesari);
    margin: 0 auto 16px;
    display: block;
}
.bearer-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.5);
    border: 4px solid var(--kesari);
}
.bearer-name { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.bearer-position {
    display: inline-block;
    background: linear-gradient(135deg, var(--kesari), var(--kesari-light));
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 8px 0;
}
.bearer-district { font-size: 0.85rem; color: var(--text-light); }
.bearer-contact { margin-top: 12px; font-size: 0.85rem; }
.bearer-contact a { color: var(--kesari); }

/* Demand Timeline */
.demand-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--kesari);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
}
.demand-item:hover { transform: translateX(5px); }
.demand-item.completed { border-left-color: #28a745; }
.demand-item.progress  { border-left-color: #17a2b8; }
.demand-item.cancelled { border-left-color: #dc3545; }
.demand-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.demand-desc  { font-size: 0.9rem; color: var(--text-light); margin: 8px 0; }
.demand-meta  { font-size: 0.8rem; color: var(--text-light); }

/* Gallery */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; display: block; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,53,100,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h6 { color: #fff; font-size: 0.9rem; margin: 0; }
.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { transform: translate(-50%, -50%) scale(1); }

/* Event Card */
.event-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-date-box {
    background: linear-gradient(135deg, var(--kesari), var(--kesari-light));
    color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}
.event-date-box .day { font-size: 1.8rem; font-weight: 900; line-height: 1; font-family: 'Poppins'; }
.event-date-box .month { font-size: 0.7rem; font-weight: 600; opacity: 0.9; text-transform: uppercase; }
.event-info { flex: 1; }
.event-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.event-location { font-size: 0.82rem; color: var(--text-light); }
.event-time { font-size: 0.82rem; color: var(--kesari); font-weight: 600; }

/* Quick Links */
.quick-link-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
    text-decoration: none;
    display: block;
    color: var(--text);
}
.quick-link-card:hover {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.quick-link-card .ql-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232,83,26,0.1), rgba(255,184,0,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.5rem;
    color: var(--kesari);
    transition: var(--transition);
}
.quick-link-card:hover .ql-icon {
    background: rgba(255,255,255,0.15);
    color: var(--gold);
}
.quick-link-card .ql-title { font-weight: 700; font-size: 0.95rem; }

/* =====================================================
   IMPORTANT LINKS
   ===================================================== */
.link-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    text-decoration: none;
    color: var(--text);
}
.link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--kesari);
    color: var(--text);
}
.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}
.link-info .link-title { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 3px; }
.link-info .link-desc  { font-size: 0.8rem; color: var(--text-light); }

/* =====================================================
   MEMBERSHIP SECTION
   ===================================================== */
.membership-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}
.membership-benefit .benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--kesari), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.membership-benefit h6 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.membership-benefit p  { font-size: 0.85rem; color: var(--text-light); margin: 0; }

.form-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow-lg);
}
.form-label { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.form-control, .form-select {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 15px;
    font-family: 'Noto Sans Devanagari', sans-serif;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--kesari);
    box-shadow: 0 0 0 3px rgba(232,83,26,0.15);
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--kesari), var(--kesari-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-detail h6 { font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-detail a { color: var(--kesari); }
.contact-detail p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 350px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 16px;
    border-left: 4px solid var(--kesari);
    transition: var(--transition);
}
.about-feature:hover { background: #fff; box-shadow: var(--shadow); }
.about-feature .af-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--kesari), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.about-feature h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.about-feature p  { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}
.timeline-year {
    background: linear-gradient(135deg, var(--kesari), var(--kesari-light));
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 8px;
    height: fit-content;
    flex-shrink: 0;
    min-width: 70px;
    text-align: center;
    font-family: 'Poppins';
}
.timeline-content { flex: 1; }
.timeline-content h6 { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.timeline-content p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination .page-link {
    color: var(--navy);
    border-radius: var(--radius-sm) !important;
    margin: 0 3px;
    border: 1px solid var(--border);
    font-weight: 500;
    transition: var(--transition);
}
.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--kesari);
    border-color: var(--kesari);
    color: #fff;
}

/* =====================================================
   FILTER BAR
   ===================================================== */
.filter-bar {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.filter-btn {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--border);
    background: var(--light);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--kesari);
    border-color: var(--kesari);
    color: #fff;
}

/* =====================================================
   FOOTER
   ===================================================== */
.main-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
}
.footer-top { padding: 60px 0 40px; }
.footer-widget h5.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--kesari);
    display: inline-block;
}
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.8; }
.footer-tagline { font-size: 1.1rem; font-weight: 700; margin-top: 12px; }
.footer-tagline .kesari { color: var(--kesari-light); }
.footer-tagline .white-text { color: #fff; }
.footer-emblem {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--kesari), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links li a:hover { color: var(--gold); padding-left: 3px; }
.footer-news-item { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-news-item:last-child { border-bottom: none; }
.footer-news-item a { text-decoration: none; display: block; }
.footer-news-item .fn-category { color: var(--kesari-light); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; }
.footer-news-item .fn-title { color: rgba(255,255,255,0.85); font-size: 0.87rem; font-weight: 500; line-height: 1.4; transition: var(--transition); }
.footer-news-item a:hover .fn-title { color: var(--gold); }
.footer-news-item .fn-date { color: rgba(255,255,255,0.5); font-size: 0.76rem; margin-top: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}
.footer-contact li i { color: var(--kesari-light); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-contact a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}
.social-btn.facebook  { background: #1877F2; }
.social-btn.twitter   { background: #1DA1F2; }
.social-btn.youtube   { background: #FF0000; }
.social-btn.whatsapp  { background: #25D366; }
.social-btn:hover { transform: translateY(-3px) scale(1.1); color: #fff; }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 16px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.footer-admin-link { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-admin-link:hover { color: var(--gold); }

/* =====================================================
   WHATSAPP & BACK TO TOP
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.5);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #20bd5c;
    color: #fff;
    transform: scale(1.1);
}
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--kesari);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(232,83,26,0.4);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
    background: var(--kesari-dark);
    transform: translateY(-3px);
}

/* =====================================================
   SEARCH BOX
   ===================================================== */
.search-box {
    position: relative;
    max-width: 420px;
}
.search-box input {
    padding-right: 50px;
    border-radius: 25px;
    border: 2px solid var(--border);
    padding-left: 18px;
}
.search-box input:focus { border-color: var(--kesari); }
.search-box .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    background: var(--kesari);
    color: #fff;
    border: none;
    border-radius: 0 25px 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.search-box .search-btn:hover { background: var(--kesari-dark); }

/* =====================================================
   ALERT & BADGE OVERRIDES
   ===================================================== */
.badge {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 6px;
}

/* =====================================================
   SECTION BACKGROUNDS
   ===================================================== */
.section-light { background: var(--light); }
.section-white { background: #fff; }
.section-navy  { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }

/* =====================================================
   UTILITY
   ===================================================== */
.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--kesari), var(--gold));
    border-radius: 2px;
    margin: 16px auto;
}
.divider-left { margin-left: 0; }

.card-hover {
    transition: var(--transition);
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 15px; }
    .hero-stat { min-width: 110px; padding: 15px 18px; }
    .hero-emblem { display: none; }
    .hero-section { min-height: auto; padding: 60px 0; }
    .main-navbar .dropdown-menu {
        background: rgba(255,255,255,0.05);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.7rem; }
    .section-title h2 { font-size: 1.6rem; }
    .page-hero { padding: 50px 0; }
    .page-hero h1 { font-size: 1.7rem; }
    .brand-marathi { font-size: 0.78rem; }
    .brand-english { display: none; }
    .hero-stats { gap: 10px; }
    .hero-stat { min-width: 100px; padding: 12px 14px; }
    .hero-stat .stat-num { font-size: 1.6rem; }
    .form-box { padding: 22px; }
    .footer-top { padding: 40px 0 24px; }
    .stat-card .stat-number { font-size: 2.2rem; }
}

@media (max-width: 576px) {
    .ticker-label { font-size: 0.72rem; padding: 0 12px; }
    .brand-marathi { font-size: 0.7rem; }
    .logo-emblem { width: 40px; height: 40px; font-size: 1.1rem; }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .main-navbar, .ticker-wrapper, .footer-bottom,
    .whatsapp-float, .back-to-top { display: none !important; }
}
