@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Tiro+Devanagari+Sanskrit&display=swap');

/* ========================================
   ROOT VARIABLES - GOVERNMENT COLOUR SCHEME
======================================== */
:root {
    --primary:       #003366;   /* Government deep navy blue */
    --primary-dark:  #002244;
    --primary-light: #1a4d8a;
    --saffron:       #FF6600;   /* BJP / Indian saffron */
    --saffron-dark:  #cc5200;
    --saffron-light: #ff8533;
    --gold:          #C8960C;   /* Heritage gold */
    --gold-light:    #f0b429;
    --white:         #ffffff;
    --off-white:     #FFF8EE;
    --bg-light:      #F5F0E8;
    --text-dark:     #1a1a2e;
    --text-mid:      #3d3d3d;
    --text-light:    #666666;
    --border:        #ddd;
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
    --transition:    all 0.3s ease;
    --radius:        4px;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 15px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Noto Serif', serif;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   GOVERNMENT TOP BAR
======================================== */
.govt-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-bottom: 3px solid var(--saffron);
    padding: 0;
}

.govt-bar-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
}

.govt-emblem {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px 8px 0;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.govt-emblem-text {
    color: var(--white);
}

.govt-emblem-text .ministry {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.75;
    font-weight: 400;
    display: block;
}

.govt-emblem-text .dept {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold-light);
    display: block;
    margin-top: 2px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: rgba(255,255,255,0.85);
    font-size: 11.5px;
    border-right: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}

.top-contact-item i {
    color: var(--saffron-light);
    font-size: 12px;
}

.top-social-bar {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 10px;
}

.top-social-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    transition: var(--transition);
    border-radius: 50%;
}

.top-social-bar a:hover {
    color: var(--saffron-light);
    background: rgba(255,255,255,0.1);
}

/* ========================================
   SAFFRON STRIPE
======================================== */
.saffron-stripe {
    background: linear-gradient(to right, var(--saffron) 0%, #FF8C00 50%, var(--saffron) 100%);
    height: 4px;
}

/* ========================================
   MAIN HEADER / NAV
======================================== */
.site-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e8e0d0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--saffron);
    padding: 3px;
    background: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .org-name {
    font-family: 'Noto Serif', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text .org-sub {
    font-size: 11px;
    color: var(--saffron);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.logo-text .org-tagline {
    font-size: 10px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1px;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    white-space: nowrap;
}

.nav-close {
    display: none;
}


.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--saffron);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--saffron);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.btn-support {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: var(--white) !important;
    padding: 8px 18px !important;
    border-radius: var(--radius);
    font-weight: 700 !important;
    font-size: 11.5px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255,102,0,0.3);
    margin-left: 8px;
}

.btn-support::after {
    display: none !important;
}

.btn-support:hover {
    background: linear-gradient(135deg, var(--saffron-dark) 0%, #a84000 100%) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,102,0,0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 600px;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 22, 51, 0.82) 0%,
        rgba(0, 22, 51, 0.55) 55%,
        rgba(0, 22, 51, 0.15) 100%
    );
}

.hero-saffron-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--saffron), #FF8C00, var(--gold));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,102,0,0.2);
    border: 1px solid rgba(255,102,0,0.5);
    color: var(--saffron-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 52px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-content h1 .highlight {
    color: var(--saffron-light);
}

.hero-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255,102,0,0.35);
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--saffron-dark), #a84000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,102,0,0.45);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    color: var(--white);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ========================================
   SECTION COMMON
======================================== */
section {
    padding: 70px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--saffron);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--saffron);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   MARQUEE STRIP
======================================== */
.marquee-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-top: 3px solid var(--saffron);
    border-bottom: 3px solid var(--saffron);
    padding: 12px 0;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    gap: 60px;
}

.marquee-inner span {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
}

.marquee-inner .dot {
    color: var(--saffron-light);
    font-size: 8px;
}

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

/* ========================================
   WHO WE ARE
======================================== */
.who-we-are {
    background: var(--off-white);
    position: relative;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--saffron), var(--primary));
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.who-text h3 {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 18px;
}

.who-text p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

.who-image {
    text-align: center;
    position: relative;
}

.who-image::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: var(--saffron);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(30px);
}

.who-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 50% 50% 0 0;
    border: 6px solid var(--white);
    box-shadow: 0 15px 40px rgba(0,51,102,0.2);
    display: inline-block;
}

.vmv-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vmv-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--saffron);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vmv-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.vmv-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.vmv-text h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 4px;
}

.vmv-text p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ========================================
   FOCUS AREAS
======================================== */
.focus-areas {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.focus-areas::after {
    content: '॰';
    position: absolute;
    font-size: 400px;
    color: rgba(0,51,102,0.03);
    right: -50px;
    bottom: -100px;
    font-family: serif;
    line-height: 1;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.focus-card {
    text-align: center;
    padding: 35px 25px;
    border: 1px solid #e8e0d0;
    border-top: 4px solid transparent;
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--saffron), var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.focus-card:hover::before {
    transform: scaleX(1);
}

.focus-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--off-white), var(--bg-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--saffron);
    border: 2px solid #e8e0d0;
    transition: var(--transition);
}

.focus-card:hover .focus-icon-wrap {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    border-color: var(--saffron);
    transform: scale(1.1);
}

.focus-card h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 10px;
}

.focus-card p {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   HERITAGE SITES SECTION
======================================== */
.heritage-sites {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.heritage-sites::before {
    content: '';
    position: absolute;
    inset: 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");
}

.heritage-sites .section-header h2 {
    color: var(--white);
}

.heritage-sites .section-header p {
    color: rgba(255,255,255,0.75);
}

.heritage-sites .section-tag {
    color: var(--gold-light);
    justify-content: center;
}

.heritage-sites .section-tag::before,
.heritage-sites .section-tag::after {
    background: var(--gold-light);
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.heritage-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.heritage-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.heritage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: transform 0.5s ease;
}

.heritage-card:first-child img {
    min-height: 420px;
}

.heritage-card:hover img {
    transform: scale(1.06);
}

.heritage-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,22,51,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: var(--transition);
}

.heritage-card:hover .heritage-card-overlay {
    background: linear-gradient(to top, rgba(0,22,51,0.92) 0%, rgba(0,22,51,0.2) 60%);
}

.heritage-card-overlay .site-tag {
    font-size: 10px;
    color: var(--saffron-light);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.heritage-card-overlay h4 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 5px;
}

.heritage-card:first-child .heritage-card-overlay h4 {
    font-size: 22px;
}

.heritage-card-overlay p {
    font-size: 11.5px;
    color: rgba(255,255,255,0.75);
    display: none;
}

.heritage-card:hover .heritage-card-overlay p {
    display: block;
}

/* ========================================
   PROJECTS SECTION
======================================== */
.projects-section {
    background: var(--bg-light);
    padding: 70px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e8e0d0;
}

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

.project-img {
    height: 190px;
    overflow: hidden;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-img-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--saffron);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.project-info {
    padding: 20px;
}

.project-info .location {
    font-size: 11px;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-info h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.project-info p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   IMPACT STATS
======================================== */
.impact-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a2240 50%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--saffron), var(--gold), var(--saffron));
}

.impact-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--saffron), var(--gold), var(--saffron));
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.impact-item {
    text-align: center;
    padding: 30px 15px;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.impact-item:last-child {
    border-right: none;
}

.impact-icon {
    font-size: 36px;
    color: var(--saffron-light);
    margin-bottom: 12px;
    display: block;
}

.impact-item h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 700;
}

.impact-item p {
    font-size: 11.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   EVENTS & NEWS
======================================== */
.events-news {
    background: var(--off-white);
}

.events-news-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 50px;
}

.col-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--bg-light);
}

.col-title h3 {
    font-size: 16px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.col-title .title-dot {
    width: 8px;
    height: 8px;
    background: var(--saffron);
    border-radius: 50%;
    flex-shrink: 0;
}

.col-title a {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.event-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e8e0d0;
}

.event-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.event-date-box {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    width: 58px;
    height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,102,0,0.25);
}

.event-date-box .day {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Noto Serif', serif;
}

.event-date-box .month {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-info h4 {
    font-size: 13.5px;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.4;
}

.event-info .event-meta {
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-info .event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-info .event-meta i {
    color: var(--saffron);
    width: 12px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e8e0d0;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 16px;
}

.news-card-body .date {
    font-size: 10px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-body .date i {
    color: var(--saffron);
}

.news-card-body h4 {
    font-size: 13px;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.news-card-body a {
    font-size: 11px;
    font-weight: 700;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-body a:hover {
    gap: 8px;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: #0d1b2e;
    color: #a0aec0;
    position: relative;
    overflow: hidden;
}

.footer-saffron-bar {
    height: 5px;
    background: linear-gradient(to right, var(--saffron) 0%, #FF8C00 50%, var(--gold) 100%);
}

.footer-main {
    padding: 55px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Logo Column */
.footer-brand .footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-brand .footer-logo-wrap img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255,102,0,0.5);
    padding: 4px;
    background: rgba(255,255,255,0.05);
}

.footer-brand .footer-logo-text .name {
    font-family: 'Noto Serif', serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
    display: block;
}

.footer-brand .footer-logo-text .sub {
    font-size: 10px;
    color: var(--saffron-light);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.75;
    color: #8a9bb0;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: #8a9bb0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Column Headings */
.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    font-family: 'Noto Serif', serif;
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
    font-weight: 600;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(to right, var(--saffron), var(--gold));
    border-radius: 2px;
}

/* Footer Links */
.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list li a {
    color: #8a9bb0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links-list li a::before {
    content: '›';
    color: var(--saffron);
    font-size: 16px;
    line-height: 1;
}

.footer-links-list li a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* Footer Contact */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #8a9bb0;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: var(--saffron-light);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: #5a6a7a;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: #5a6a7a;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--saffron-light);
}

.footer-govt-seal {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,102,0,0.1);
    border: 1px solid rgba(255,102,0,0.2);
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 11px;
    color: var(--saffron-light);
}

/* ========================================
   FLOATING ELEMENTS
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 28px;
    background-color: #25d366;
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255,102,0,0.35);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-4px);
}

/* ========================================
   MOBILE RESPONSIVE
======================================== */
@media (max-width: 1100px) {
    .heritage-grid { grid-template-columns: repeat(2, 1fr); }
    .heritage-card:first-child { grid-column: span 2; }
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .who-grid { grid-template-columns: 1fr 1fr; }
    .who-image { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .focus-grid { grid-template-columns: repeat(2, 1fr); }
    .events-news-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .top-contact { display: none; }
}

@media (max-width: 1200px) {
    .main-nav a {
        padding: 8px 8px;
        font-size: 11px;
    }
    .btn-support {
        padding: 8px 14px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 1024px) {
    .hamburger { display: flex; }

    .site-logo {
        max-width: 80%;
    }

    .site-logo img {
        height: 50px !important;
        width: 50px !important;
    }

    .logo-text .org-name {
        font-size: 13px !important;
        white-space: normal;
        line-height: 1.2;
    }

    .logo-text .org-sub {
        font-size: 9px !important;
        white-space: normal;
        letter-spacing: 0.5px;
    }

    .logo-text .org-tagline {
        display: none !important;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 9999;
        padding: 40px 20px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        font-size: 16px;
        padding: 14px 20px;
        text-align: center;
    }

    .main-nav .nav-close {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        color: var(--primary);
    }

    .hero-content h1 { font-size: 34px; }
    .hero-content p { font-size: 14px; }
    .hero-btns { flex-direction: column; align-items: flex-start; }

    .who-grid { grid-template-columns: 1fr; }
    .who-image { display: block; }

    .focus-grid { grid-template-columns: 1fr 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .impact-item { border-bottom: 1px solid rgba(255,255,255,0.1); border-right: none; }
    .impact-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
    .heritage-grid { grid-template-columns: 1fr; }
    .heritage-card:first-child { grid-column: span 1; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .section-header h2 { font-size: 26px; }

    .govt-emblem { display: none; }
    .top-social-bar { margin-left: auto; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .focus-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .site-logo img { height: 60px; width: 60px; }
}
