/* ============================================
   EVENTS PAGE STYLES
   ============================================ */
.events-hero {
    background: linear-gradient(135deg, #b3271b 0%, #d14a22 55%, #de6830 100%);
    color: white;
    padding: 160px 20px 80px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.events-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.16) 0%, transparent 42%);
    pointer-events: none;
 background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='24' height='24.5' patternTransform='scale(1) rotate(20)'><rect x='0' y='0' width='100%' height='100%' fill='%23c0392bff'/><path d='M10-6V6M10 14v12M26 10H14M6 10H-6' transform='translate(2,0)' stroke-linecap='square' stroke-width='0.5' stroke='%23232428ff' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(-38,-25)' fill='url(%23a)'/></svg>")
}

.events-title {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 10px 32px rgba(0,0,0,0.13);
    position: relative;
}

.hero-grid {
    display: flex;
    align-items: center;
    min-height: 180px;
}

.upcoming-events-section {
    background: linear-gradient(180deg, #fffdf7 0%, #f7f3eb 100%);
    padding: 80px 0 40px;
    text-align: center;
}

.section-label {
    font-size: 18px;
    font-weight: 700;
    color: #bb2a1d;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.upcoming-empty {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(43,44,82,0.07);
    padding: 40px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.upcoming-subtitle {
    color: #666;
    font-size: 15px;
    margin-top: 12px;
}

.past-events-section {
    background: linear-gradient(180deg, #f7f3eb 0%, #fff 100%);
    padding: 80px 0 100px;
}

.section-header-editorial {
    max-width: 1200px;
    margin: 0 auto 48px auto;
    text-align: left;
}

.section-header-editorial h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2b2c52;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.event-article {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(43,44,82,0.07);
    margin-bottom: 48px;
    padding: 32px 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.event-image-wrapper {
    flex: 0 0 260px;
    max-width: 260px;
}

.event-image {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(43,44,82,0.08);
}

.event-card-content {
    flex: 1;
}

.event-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #2b2c52;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.event-meta {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
    display: flex;
    gap: 18px;
    align-items: center;
}

.event-summary {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .event-article {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 24px 10px;
    }
    .event-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .events-title {
        font-size: 38px;
        letter-spacing: -1px;
    }
    .event-article {
        padding: 14px 0;
    }
    .upcoming-empty {
        padding: 24px 8px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ============================================
   GENERAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Language-specific content styles */
[class*="lang-"] {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2b2c52;
    background: linear-gradient(180deg, #fffdf7 0%, #ffffff 20%, #ffffff 100%);
    will-change: scroll-position;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Global H3 Styling */
h3 {
    font-size: 35px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.headroom--not-top {
    background: rgba(43, 44, 82, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

.header.headroom--unpinned {
    transform: translateY(-100%);
}

.header.headroom--pinned {
    transform: translateY(0);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo img {
    width: 140px;
    height: auto;
    display: block;
    transition: width 0.3s ease;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    min-width: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    height: 24px;
    white-space: normal;
    word-break: break-word;
    min-width: 0;
    max-width: 100vw;
}

/* Language Dropdown */
.lang-dropdown-btn {
    background-color: white;
    color: #2b2c52;
    border: none;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.lang-dropdown-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(187, 42, 29, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lang-dropdown-btn:hover::before {
    opacity: 1;
}

.lang-dropdown-btn:hover {
    background-color: #fafafa;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.lang-dropdown-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-dropdown-btn:focus {
    outline: 2px solid #bb2a1d;
    outline-offset: 2px;
}

.lang-dropdown-btn i:first-child {
    font-size: 14px;
}

.lang-dropdown-btn i:last-child {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.active i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    overflow: hidden;
    margin-top: 8px;
    display: none;
    z-index: 1000;
    animation: slideDown 0.2s ease;
}

.lang-dropdown-menu.show {
    display: flex;
    flex-direction: column;
}

.lang-option {
    display: block;
    padding: 12px 16px;
    color: #2b2c52;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    position: relative;
}

.lang-option:focus {
    outline: 2px solid #bb2a1d;
    outline-offset: -2px;
}

.lang-option:hover {
    background-color: #f7f3eb;
    color: #bb2a1d;
}

.lang-option.active {
    background-color: #f7f3eb;
    color: #bb2a1d;
    border-left-color: #bb2a1d;
}

/* CONTACT Button */
.btn-help {
    background-color: #ffffff;
    color: #bb2a1d;
    border: none;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(43, 44, 82, 0.13);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.btn-help:hover {
    background-color: #bb2a1d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 44, 82, 0.2);
}

.btn-help:focus {
    outline: 2px solid #bb2a1d;
    outline-offset: 2px;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #b3271b 0%, #d14a22 55%, #de6830 100%);
    color: white;
    padding: 200px 20px 120px;
    text-align: left;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.16) 0%, transparent 42%);
    pointer-events: none;
    background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='24' height='24.5' patternTransform='scale(1) rotate(20)'><rect x='0' y='0' width='100%' height='100%' fill='%23c0392bff'/><path d='M10-6V6M10 14v12M26 10H14M6 10H-6' transform='translate(2,0)' stroke-linecap='square' stroke-width='0.5' stroke='%23232428ff' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(-38,-25)' fill='url(%23a)'/></svg>")
}

.hero::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -140px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 184, 0.34) 0%, rgba(255, 214, 184, 0) 70%);
    pointer-events: none;
    
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 100px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -5px;
    margin: 0;
    max-width: 900px;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    text-wrap: balance;
    text-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ============================================
   IMPACT METRICS SECTION
   ============================================ */
.metrics-section {
    background-color: #f7f3eb;
    padding: 96px 20px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(43, 44, 82, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 14px 40px rgba(43, 44, 82, 0.06);
}

.metrics-left {
    grid-column: 1;
}

.metrics-heading {
    font-size: 18px;
    font-weight: 600;
    color: #2b2c52;
    line-height: 1.4;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 28px;
    border-left: 1px solid rgba(43, 44, 82, 0.12);
}

.metric-label {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.metric-number {
    font-size: 80px;
    font-weight: 700;
    color: #bb2a1d;
    line-height: 1;
}

/* ============================================
   MISSION INTRODUCTION SECTION
   ============================================ */
.mission-intro {
    background-color: #f7f3eb;
    padding: 120px 20px;
}

.section-title {
    font-size: 100px;
    font-weight: 700;
    color: #2b2c52;
    line-height: 1.2;
    margin-bottom: 80px;
    text-align: left;
    max-width: 1000px;
    margin-left: 0;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -5px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.mission-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-column h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2b2c52;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.mission-column p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ============================================
   FEATURE CARDS SECTION
   ============================================ */
.cards-section {
    background-color: #f7f3eb;
    padding: 96px 20px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 420px;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   
    border: 1px solid rgba(43, 44, 82, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.card-white:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-label {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: inherit;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.3px;
    font-family: 'Poppins', sans-serif;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.8;
    color: inherit;
    margin: 0;
}
#home-con{
    margin: clamp(0px, 6vw, 100px);
}
.card-light {
    background: linear-gradient(155deg, #ebe7cf 0%, #d0cdb5 100%);
    color: #2b2c52;
}

.card-red {
    background: linear-gradient(165deg, #bb2a1d 0%, #a62e20 100%);
    color: white;
    text-align: center;
}

.card-red .card-label {
    display: none;
}

.card-white {
    background: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
    color: #2b2c52;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card-logo {
    font-size: 48px;
    color: #bb2a1d;
    margin-bottom: 8px;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
    background: linear-gradient(180deg, #fff 0%, #f7f3eb 100%);
    padding: 96px 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2b2c52;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.explore-link {
    color: #bb2a1d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.explore-link::after {
    content: '→';
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-link:hover {
    color: #9a1f15;
}

.explore-link:hover::after {
    transform: translateX(4px);
}

.event-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
 
   
}

.event-image {
    width: 100%;
}

.event-image img {
    width: 100%;
    height: auto;
    display: block;
    
}

.event-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2b2c52;
    line-height: 1.35;
    letter-spacing: -0.3px;
    font-family: 'Poppins', sans-serif;
    text-wrap: balance;
}

.event-view-actions {
    margin-top: 20px;
}

.event-view-btn {
    border: none;
    background-color: #bb2a1d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 11px 18px;
    border-radius: 22px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-view-btn:hover {
    background-color: #9a1f15;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(187, 42, 29, 0.25);
}

.event-extra-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.event-card.show-details .event-extra-details {
    max-height: 320px;
    opacity: 1;
    margin-top: 18px;
}

.event-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-bottom: 12px;
}

.event-detail-meta span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.event-detail-meta i {
    color: #bb2a1d;
    font-size: 12px;
}

.event-extra-details p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 12px;
}

.event-full-link {
    color: #bb2a1d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.event-full-link:hover {
    color: #8f2017;
}

/* ============================================
   MISSION STATEMENT SECTION
   ============================================ */
.mission-statement {
    background: linear-gradient(180deg, #f7f3eb 0%, #e3e6f3 100%);
    padding: 120px 20px;
    text-align: center;
}

.mission-statement h2 {
    font-size: 36px;
    color: #2b2c52;
    margin-bottom: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.mission-statement p {
    font-size: 15px;
    line-height: 1.85;
    color: #666;
    max-width: 900px;
    margin: 0 auto 32px;
}

.mission-statement p:last-of-type {
    margin-bottom: 80px;
}

/* Partner Logos */
.partner-logos {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 60px;
    border-top: 1px solid rgba(43, 44, 82, 0.1);
    overflow: hidden;
    height: 200px;
}

.logos-marquee {
    display: flex;
    gap: 32px;
    animation: scroll-marquee 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.logos-marquee:hover {
    animation-play-state: paused;
}

.logo-placeholder {
    width: 140px;
    height: 72px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder img {
    width: 140px;
    height: 80px;
    object-fit: contain;
    padding: 0;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.logo-placeholder img:hover {
    opacity: 1;
}

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

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    background-color: white;
    padding: 96px 20px;
}

/* Featured Article */
.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 96px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-featured:hover .featured-image {
    transform: scale(1.02);
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.featured-title {
    font-size: 32px;
    font-weight: 700;
    color: #2b2c52;
    line-height: 1.3;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.featured-excerpt {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.btn-read-featured {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #bb2a1d;
    color: white;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    box-shadow: 0 4px 12px rgba(187, 42, 29, 0.2);
}

.btn-read-featured:hover {
    background-color: #9a1f15;
    box-shadow: 0 8px 24px rgba(187, 42, 29, 0.3);
    transform: translateY(-2px);
}

.btn-read-featured:focus {
    outline: 2px solid #bb2a1d;
    outline-offset: 2px;
}

.btn-read-featured i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-read-featured:hover i {
    transform: translateX(4px);
}

/* News Categories */
.news-category {
    font-size: 10px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.news-category.featured-category {
    background-color: #bb2a1d;
    color: white;
}

.news-category.update {
    background-color: #4a7ba7;
    color: white;
}

.news-category.insight {
    background-color: #4fb860;
    color: white;
}

.news-category.event {
    background-color: #e8a83c;
    color: white;
}

/* News Date */
.news-date {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.2px;
}

.news-date i {
    font-size: 11px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    display: grid;
    /* Vertical card: image on top, content below */
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 16px;
    align-items: stretch;
    padding: 16px;
    background-color: #ffffff;
    border: 1px solid rgba(43, 44, 82, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(43, 44, 82, 0.06);
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(187, 42, 29, 0.03);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(187, 42, 29, 0.26);
    box-shadow: 0 16px 36px rgba(43, 44, 82, 0.12);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card img {
    width: 100%;
    height: 200px;
    min-height: 0;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.news-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 6px 0;
}

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

.news-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2b2c52;
    margin: 0;
    line-height: 1.32;
    letter-spacing: -0.35px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    text-wrap: balance;
}

.news-card:hover h3 {
    color: #bb2a1d;
}

.news-title-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.news-title-link:hover {
    color: inherit; /* uses .news-card:hover h3 for the premium hover color */
}

.news-title-link:focus {
    outline: 2px solid #bb2a1d;
    outline-offset: 3px;
    border-radius: 10px;
}

.news-description {
    font-size: 14px;
    line-height: 1.75;
    color: #5d607f;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    color: #bb2a1d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: auto;
    padding-top: 6px;
    position: relative;
    z-index: 1000;
}

.news-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: #9a1f15;
}

.news-link:hover i {
    transform: translateX(4px);
}

.news-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    min-height: 44px;
    background-color: #bb2a1d;
    color: white;
    border-radius: 10px;
    font-size: 18px;
    margin-left: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(187, 42, 29, 0.2);
    position: relative;
    display: none;
}

.news-card:hover .news-arrow {
    transform: translateY(4px);
    background-color: #9a1f15;
    box-shadow: 0 8px 20px rgba(187, 42, 29, 0.3);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: radial-gradient(circle at 10% 25%, rgba(255, 255, 255, 0.45) 0%, transparent 34%),
                linear-gradient(160deg, #e8e5cc 0%, #f2efd8 55%, #efe9cc 100%);
    padding: 120px 20px;
}

.cta-newsletter {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.cta-copy {
    text-align: left;
}

.cta-title {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 700;
    color: #2b2c52;
    margin: 0 0 20px;
    letter-spacing: -2px;
    font-family: 'Poppins', sans-serif;
}

.cta-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4d4f72;
    margin: 0;
    max-width: 620px;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(43, 44, 82, 0.1);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 16px 40px rgba(43, 44, 82, 0.15);
    display: grid;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #bb2a1d, #e8a83c, #bb2a1d);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.newsletter-form::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(187, 42, 29, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-form label {
    font-size: 13px;
    font-weight: 600;
    color: #2b2c52;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.newsletter-form input {
    width: 100%;
    border: 1px solid rgba(43, 44, 82, 0.2);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #2b2c52;
    background: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    border-color: #bb2a1d;
    box-shadow: 0 0 0 3px rgba(187, 42, 29, 0.1);
}

.newsletter-submit {
    margin-top: 8px;
    border: none;
    background: linear-gradient(135deg, #bb2a1d 0%, #d14a22 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 10px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.newsletter-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(187, 42, 29, 0.3);
}

.newsletter-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, #b3271b 0%, #d14a22 55%, #de6830 100%);
    padding: 160px 20px 100px;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.16) 0%, transparent 42%);
    pointer-events: none;
}

.contact-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -140px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 184, 0.34) 0%, rgba(255, 214, 184, 0) 70%);
    pointer-events: none;
}

.contact-hero h1 {
    font-size: 86px;
    line-height: 1.05;
    letter-spacing: -3px;
    color: white;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.contact-main {
    background: linear-gradient(180deg, #fffdf7 0%, #f7f3eb 100%);
    padding: 80px 20px;
    position: relative;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(43, 44, 82, 0.08);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 14px 40px rgba(43, 44, 82, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #bb2a1d, #e8a83c, #bb2a1d);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.contact-card h2 {
    font-size: 32px;
    color: #2b2c52;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 30px;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, #bb2a1d 0%, #d14a22 100%);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(187, 42, 29, 0.2);
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1) rotate(360deg);
}

.contact-item h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #2b2c52;
    font-weight: 700;
}

.contact-item p,
.contact-item a {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #bb2a1d;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(43, 44, 82, 0.08);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 14px 40px rgba(43, 44, 82, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #bb2a1d, #e8a83c, #bb2a1d);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.contact-form-card h2 {
    font-size: 32px;
    color: #2b2c52;
    margin: 0 0 25px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
}

.contact-form {
    display: grid;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.contact-form label {
    font-size: 13px;
    font-weight: 600;
    color: #2b2c52;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(43, 44, 82, 0.2);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #2b2c52;
    background: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #bb2a1d;
    box-shadow: 0 0 0 3px rgba(187, 42, 29, 0.1);
}

.contact-submit {
    margin-top: 10px;
    border: none;
    background: linear-gradient(135deg, #bb2a1d 0%, #d14a22 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 10px;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(187, 42, 29, 0.3);
}

.contact-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* Contact Map Section */
.contact-map-section {
    background: linear-gradient(180deg, #fffdf7 0%, #f7f3eb 100%);
    padding: 0 20px 96px;
}

.contact-map-wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(43, 44, 82, 0.08);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 14px 40px rgba(43, 44, 82, 0.08);
    transition: all 0.4s ease;
}

.contact-map-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
    border-radius: 12px;
}

.map-caption {
    padding: 20px 20px 0;
    font-size: 14px;
    color: #666;
    text-align: center;
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #2b2c52;
    color: #aaa;
    padding: 80px 20px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-about h3,
.footer-pages h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 24px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    display: block;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #bb2a1d;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.social-icons a:hover::before {
    transform: scale(1);
}

.social-icons a:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(187, 42, 29, 0.3);
}

.footer-pages ul {
    list-style: none;
    margin-bottom: 32px;
}

.footer-pages ul li {
    margin-bottom: 12px;
}

.footer-pages a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-pages a:hover {
    color: white;
}

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

.footer-lang-btn {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.footer-lang-btn:hover,
.footer-lang-btn.active {
    background-color: #bb2a1d;
    border-color: #bb2a1d;
    color: white;
}

.footer-contact p {
    font-size: 13px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 12px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #c0392b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #bb2a1d;
}

.back-to-top {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #bb2a1d;
    color: white;
}

/* ============================================
   MOBILE NAVIGATION SYSTEM
   ============================================ */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 18px;
}

.menu-toggle i {
    font-size: 18px;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.24);
}

.menu-toggle.active {
    background: #bb2a1d;
    border-color: #bb2a1d;
}

@media (max-width: 960px) {
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .header {
        padding: 12px 0;
    }

    .header.headroom--not-top {
        padding: 8px 0;
    }

    .navbar {
        position: relative;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }

    .logo {
        flex: 1;
    }
    
    .logo img {
        width: 100px;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .language-switcher {
        order: 2;
    }

    .btn-help {
        display: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 60px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 16px;
        background: linear-gradient(160deg, rgba(31, 35, 64, 0.98), rgba(26, 30, 56, 0.97));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1100;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: mobileMenuFadeIn 0.3s ease;
    }

    @keyframes mobileMenuFadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        width: 100%;
        height: auto;
        padding: 16px 12px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        white-space: normal;
        display: block;
        border-radius: 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(187, 42, 29, 0.2);
        color: #ffffff;
        border-left: 3px solid #bb2a1d;
        padding-left: 21px;
    }

    .nav-menu a::before,
    .nav-menu a::after {
        display: none;
    }

    /* Adjust main content padding for fixed header */
    .hero,
    .blog-hero,
    .events-hero,
    .gallery-hero,
    .about-hero,
    .contact-hero {
        padding-top: 80px;
    }

    .hero-title,
    .blog-title,
    .events-title,
    .gallery-title,
    .about-title,
    .contact-hero h1 {
        letter-spacing: -1px;
        line-height: 1.12;
    }
}

@media (max-width: 1024px) {
    .news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-card {
        gap: 14px;
    }

    .news-card img {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-columns {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .event-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 16px;
    }
    
    .news-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }
    
    .news-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .news-arrow {
        margin-left: 0;
        order: 3;
        width: 100%;
        min-height: 44px;
        height: 44px;
        border-radius: 8px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-newsletter {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-copy {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .container {
        margin: 0 20px !important;
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 40px;
        letter-spacing: -2px;
    }
    
    .section-title {
        font-size: 28px;
        letter-spacing: normal !important;
    }
    
    .blog-title,
    .newsroom-title,
    .featured-title,
    .blog-card-content h3 {
        letter-spacing: 0.02em !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .metric-number {
        font-size: 42px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .newsletter-form {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .logo img {
        width: 70px;
    }
    
    .lang-dropdown-btn {
        padding: 4px 6px;
        font-size: 10px;
    }
    
    .menu-toggle {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */
/* ===============================
   NEWS SECTION - DYNAMIC BLOG CARDS
   =============================== */

/* Container for blog cards (grid layout) */
.newsroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual blog card */
.newsroom-grid .blog-card {
    background: var(--card-bg, #fff);
   
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.newsroom-grid .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Blog image */
.newsroom-grid .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Content area */
.newsroom-grid .blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Meta info (category & date) */
.newsroom-grid .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #666;
}

.newsroom-grid .blog-category {
    background: #e74c3c;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsroom-grid .blog-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.newsroom-grid .blog-date i {
    font-size: 0.8rem;
}

/* Title */
.newsroom-grid .blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0;
    line-height: 1.4;
    color: #1a2c3e;
}

.newsroom-grid .blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.newsroom-grid .blog-title a:hover {
    color: #e74c3c;
}

/* Excerpt */
.newsroom-grid .blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 1rem;
    flex: 1;
}

/* Read more link */
.newsroom-grid .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #e74c3c;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
}

.newsroom-grid .read-more:hover {
    gap: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsroom-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .newsroom-grid .blog-card img {
        height: 180px;
    }

    .newsroom-grid .blog-content {
        padding: 1.25rem;
    }

    .newsroom-grid .blog-title {
        font-size: 1.1rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ============================================
   GENERAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2b2c52;
    background: linear-gradient(180deg, #fffdf7 0%, #ffffff 20%, #ffffff 100%);
}

/* Language handling */
[class*="lang-"] {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.headroom--not-top {
    background: rgba(43, 44, 82, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 14px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.logo img {
    width: 130px;
    height: auto;
    transition: width 0.3s ease;
}

/* Desktop Nav */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
}

/* Mobile Hamburger */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    color: white;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lang-dropdown-btn {
    background: white;
    color: #2b2c52;
    border: none;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   HERO SECTION - MOBILE FRIENDLY
   ============================================ */
.hero {
    background: linear-gradient(135deg, #b3271b 0%, #d14a22 55%, #de6830 100%);
    color: white;
    padding: 180px 20px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 82px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -4px;
    max-width: 900px;
}

/* ============================================
   METRICS SECTION
   ============================================ */
.metrics-section {
    background-color: #f7f3eb;
    padding: 80px 20px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: left;
        padding: 40px;
    }
    .metric-item {
        border-left: 1px solid rgba(43,44,82,0.12);
        padding-left: 28px;
    }
}

.metric-number {
    font-size: 68px;
    font-weight: 700;
    color: #bb2a1d;
}

/* ============================================
   MISSION & CARDS
   ============================================ */
.mission-intro, .cards-section, .mission-statement {
    padding: 100px 20px;
}

.section-title {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -3px;
}

.mission-columns {
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 992px) {
    .mission-columns {
        grid-template-columns: 1fr 1fr;
    }
    .section-title {
        font-size: 92px;
    }
}

.cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ============================================
   FOOTER
   ============================================ */
.footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

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

@media (max-width: 960px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(31, 35, 64, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        z-index: 1100;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 18px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .section-title {
        font-size: 42px;
    }

    .cta-newsletter {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 140px 16px 80px;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .metric-number {
        font-size: 52px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .news-featured img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 34px;
    }

    .section-title {
        font-size: 36px;
    }
}

/* ============================================
   INDEX HERO TITLE (Scoped + Responsive)
   ============================================ */
.hero .hero-title {
    text-align: left;
    font-size: 100px;
    margin-left: 0;
    align-self: flex-start;
}

@media (max-width: 1024px) {
    .hero .hero-title {
        font-size: 78px;
    }

    .hero .hero-title.lang-ta,
    .hero .hero-title.lang-si {
        font-size: 70px;
    }
}

@media (max-width: 960px) {
    .hero .hero-title {
        font-size: 64px;
    }

    .hero .hero-title.lang-ta,
    .hero .hero-title.lang-si {
        font-size: 58px;
    }
}

@media (max-width: 768px) {
    .hero .hero-title {
        font-size: 52px;
    }

    .hero .hero-title.lang-ta,
    .hero .hero-title.lang-si {
        font-size: 46px;
    }
}

@media (max-width: 600px) {
    .hero .hero-title {
        font-size: 40px;
    }

    .hero .hero-title.lang-ta,
    .hero .hero-title.lang-si {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero .hero-title {
        font-size: 34px;
    }

    .hero .hero-title.lang-ta,
    .hero .hero-title.lang-si {
        font-size: 30px;
    }
}

@media (max-width: 360px) {
    .hero .hero-title {
        font-size: 30px;
    }

    .hero .hero-title.lang-ta,
    .hero .hero-title.lang-si {
        font-size: 26px;
    }
}

.blog-detail{
    margin-top: 100px;
}

@media (max-width: 960px) {
    .blog-detail {
        margin-top: 68px;
    }
}
