/* ============================================
   PRADEEPAN — Main Stylesheet
   Modern NGO Website | PHP + HTML + CSS
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --accent: #FF8F00;
    --accent-light: #FFB300;
    --bg-light: #F9FBF2;
    --bg-alt: #F1F8E9;
    --bg-white: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #E0E0E0;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

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

/* --- Top Bar --- */
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.82rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.top-bar-item svg {
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: #fff;
    opacity: 0.8;
    transition: opacity var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-light);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.lang-switch a {
    color: #fff;
    opacity: 0.7;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all var(--transition);
}

.lang-switch a.active {
    opacity: 1;
    background: rgba(255,255,255,0.2);
}

.lang-switch a:hover {
    opacity: 1;
    color: #fff;
}

.lang-divider {
    opacity: 0.4;
}

/* --- Main Header --- */
.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* --- Navigation --- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--primary);
    background: var(--bg-alt);
}

.nav-donate-btn {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
}

.nav-donate-btn:hover {
    background: var(--accent-light) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,143,0,0.4);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 280px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.dropdown li a:hover {
    background: var(--bg-alt);
    color: var(--primary);
    padding-left: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #388E3C 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/carousel-1.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, var(--bg-white));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

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

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,143,0,0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-green {
    background: var(--primary);
    color: #fff;
}

.btn-green:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,125,50,0.4);
}

/* --- Impact Counter Strip --- */
.impact-strip {
    background: var(--bg-white);
    padding: 60px 0;
    position: relative;
    z-index: 3;
}

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

.impact-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border-bottom: 4px solid transparent;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--accent);
}

.impact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.impact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* --- Section Styles --- */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--primary-dark);
    color: #fff;
}

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

.section-header .label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header h2 .accent {
    color: var(--primary);
}

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

/* --- Thematic Area Cards --- */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.theme-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary);
}

.theme-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.theme-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.theme-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    flex: 1;
    margin-bottom: 16px;
}

.theme-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
}

.theme-card .card-link:hover {
    gap: 10px;
}

/* --- About Preview Section --- */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-text .label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-preview-text h2 {
    margin-bottom: 20px;
}

.about-preview-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-preview-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-preview-image img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

.about-preview-image .experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--accent);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Founder Section --- */
.founder-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.founder-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.founder-image img {
    width: 100%;
    object-fit: cover;
}

.founder-text h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.founder-text .founder-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: block;
}

.founder-text p {
    color: var(--text-light);
}

/* --- Partners Section --- */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-item {
    text-align: center;
    opacity: 0.7;
    transition: opacity var(--transition);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.partner-item:hover {
    opacity: 1;
    border-color: var(--primary);
    color: var(--primary);
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 2rem;
}

.cta-banner p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
}

/* --- Page Banner --- */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-banner h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.page-banner p {
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: #fff;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
    color: #fff;
}

.breadcrumb .separator {
    opacity: 0.5;
}

/* --- Content Pages --- */
.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-alt);
}

.content-wrapper h3 {
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 12px;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 0;
}

.content-wrapper ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.content-wrapper ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* --- Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.value-card .value-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.value-card h4 {
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Registration Table --- */
.reg-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.reg-table th {
    background: var(--primary-dark);
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.reg-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.reg-table tr:nth-child(even) {
    background: var(--bg-alt);
}

.reg-table tr:last-child td {
    border-bottom: none;
}

/* --- Highlight Box --- */
.highlight-box {
    background: linear-gradient(135deg, var(--bg-alt), #E8F5E9);
    border-left: 4px solid var(--primary);
    padding: 24px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
}

.highlight-box h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.highlight-box p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* --- Impact Highlight Cards (for thematic pages) --- */
.impact-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.impact-highlight {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary);
}

.impact-highlight .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.impact-highlight .label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* --- SDG Badges --- */
.sdg-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.sdg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-alt);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-dark);
    border: 1px solid rgba(46,125,50,0.2);
}

/* --- Donate Page --- */
.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.donate-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.donate-card h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.donate-card .bank-detail {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

.donate-card .bank-detail:last-child {
    border-bottom: none;
}

.donate-card .bank-detail .label {
    font-weight: 600;
    color: var(--text);
}

.donate-card .bank-detail .value {
    color: var(--text-light);
}

.tax-note {
    background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 30px;
}

.tax-note p {
    margin-bottom: 0;
    color: var(--text);
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary);
}

.contact-detail span,
.contact-detail a {
    font-size: 0.92rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.gallery-item {
    position: relative;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.gallery-placeholder {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.gallery-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: var(--border);
    margin-bottom: 16px;
}

/* --- Contact Page Enhanced --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.contact-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-detail-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

.contact-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}

.contact-detail-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact-detail-card p {
    margin-bottom: 6px;
}

.contact-detail-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-detail-card a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.required {
    color: #e53e3e;
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 40px;
    margin: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item .year {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.88rem;
    margin-bottom: 4px;
}

.timeline-item h4 {
    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(46,125,50,0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* --- Footer --- */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 16px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #aaa;
    font-size: 0.88rem;
    transition: all var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--accent);
}

.footer-contact-item a {
    color: #aaa;
}

.footer-contact-item a:hover {
    color: var(--accent-light);
}

.footer-reg {
    background: rgba(255,255,255,0.03);
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-reg p {
    font-size: 0.75rem;
    opacity: 0.5;
    text-align: center;
    margin-bottom: 0;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    opacity: 0.6;
    margin-bottom: 0;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

/* ============================================
   TEAM PAGE
   ============================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
    text-align: center;
}

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

.team-card-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-alt);
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

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

.team-card-info {
    padding: 20px 16px;
    border-top: 3px solid var(--primary);
}

.team-card-info h3 {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 6px;
}

.team-card-info .designation {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
}

/* ============================================
   AWARDS SECTION (on About page)
   ============================================ */

.awards-intro {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
    color: var(--text-light);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.award-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: all var(--transition);
}

.award-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.award-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.award-item-caption {
    padding: 12px 14px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    border-top: 2px solid var(--accent);
}

.award-zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.award-item:hover .award-zoom-icon {
    opacity: 1;
}

/* ============================================
   NEWS / MEDIA COVERAGE PAGE
   ============================================ */

.news-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #fff;
}

.news-category-section {
    margin-bottom: 56px;
}

.news-category-section.hidden {
    display: none;
}

.news-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.news-category-header h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.news-count-badge {
    background: var(--primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.tab-count {
    display: inline-block;
    background: rgba(46,125,50,0.15);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 50px;
    margin-left: 5px;
    transition: background var(--transition), color var(--transition);
}

.filter-btn.active .tab-count,
.filter-btn:hover .tab-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.news-page-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Pagination */
.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 2px solid var(--border);
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-alt);
}

.pagination-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pagination-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 700;
}

.news-clippings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.news-clipping-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    position: relative;
    background: var(--bg-alt);
    transition: all var(--transition);
}

.news-clipping-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.news-clipping-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.clipping-zoom {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.clipping-zoom svg {
    color: #fff;
    width: 32px;
    height: 32px;
}

.news-clipping-item:hover .clipping-zoom {
    opacity: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    z-index: 10000;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    text-align: center;
    max-width: 600px;
}

.lightbox-counter {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* ============================================
   DOCUMENT DOWNLOAD LIST
   ============================================ */

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: all var(--transition);
}

.doc-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.doc-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.doc-info {
    flex: 1;
    min-width: 0;
}

.doc-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.doc-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.doc-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
}

.doc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.doc-download-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(46,125,50,0.3);
}

.doc-note {
    text-align: center;
    padding: 18px 24px;
    color: var(--text-muted);
    font-size: 0.88rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px dashed var(--border);
    margin-top: 16px;
}

.doc-note a {
    color: var(--primary);
    font-weight: 600;
}
.mb-40 { margin-bottom: 40px; }

/* ============================================
   TEAM LIST (bios shown directly on page)
   ============================================ */

.team-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 20px;
}

.team-member {
    display: grid;
    grid-template-columns: 190px 1fr;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-top: 3px solid var(--primary);
}

.team-member-photo {
    background: var(--bg-alt);
    overflow: hidden;
    flex-shrink: 0;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    min-height: 220px;
    display: block;
}

.team-member-body {
    padding: 28px 32px;
}

.team-member-body h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 4px;
}

.team-member-role {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.team-member-org {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.team-member-bio {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.75;
}

.team-member-bio p {
    margin-bottom: 12px;
}

.team-member-bio p:last-child {
    margin-bottom: 0;
}
