﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/*Main Styles*/
/* ==========================================
   NHRC - National Human Rights Council
   Premium NGO Website Stylesheet
========================================== */

:root {
    --primary-blue: #0A2E73;
    --secondary-blue: #123D91;
    --red: #D72638;
    --gold: #D4A017;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border: #E2E8F0;

    --ff-heading: 'Poppins', sans-serif;
    --ff-body: 'Roboto', sans-serif;

    --shadow-sm: 0 2px 8px rgba(10, 46, 115, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 46, 115, 0.10);
    --shadow-lg: 0 20px 50px rgba(10, 46, 115, 0.15);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: all 0.35s cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 { font-family: var(--ff-heading); font-weight: 600; color: var(--text-dark); }
a { text-decoration: none; color: var(--primary-blue); transition: var(--transition); }
a:hover { color: var(--secondary-blue); }
img { max-width: 100%; height: auto; }

/* Utilities */
.text-primary-blue { color: var(--primary-blue) !important; }
.text-gold { color: var(--gold) !important; }
.text-white-75 { color: rgba(255, 255, 255, 0.78); }
.bg-primary-blue { background: var(--primary-blue); }
.bg-gold { background: var(--gold); }

/* Buttons */
.btn {
    font-family: var(--ff-heading);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    border: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

.btn-primary-blue { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); }
.btn-primary-blue:hover { background: var(--secondary-blue); border-color: var(--secondary-blue); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 24px rgba(10,46,115,0.3); }

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

.btn-gold { background: var(--gold); color: #1a1a1a; border-color: var(--gold); }
.btn-gold:hover { background: #b8890f; border-color: #b8890f; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 24px rgba(212,160,23,0.35); }

.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #1a1a1a; }

.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: #b91d2e; border-color: #b91d2e; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 24px rgba(215,38,56,0.3); }

.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--primary-blue); }

/* Section Common */
section { padding: 60px 0; position: relative; }
.section-head { margin-bottom: 20px; }
.section-badge {
    display: inline-block;
    background: rgba(10, 46, 115, 0.08);
    color: var(--primary-blue);
    padding: 8px 22px;
    border-radius: 50px;
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-badge.light { background: rgba(255,255,255,0.15); color: var(--gold); }
.section-title { font-size: 2.4rem; line-height: 1.2; margin-bottom: 12px; font-weight: 700; }
.section-title-sm { font-size: 1.8rem; line-height: 1.25; font-weight: 700; }
.section-desc { color: var(--text-muted); font-size: 1rem; }

/* ============ TOP BAR ============ */
.top-bar {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 100;
}
.top-bar .top-info { color: rgba(255,255,255,0.9); font-family: var(--ff-body); }
.top-bar .top-info i { color: var(--gold); margin-right: 6px; }
.top-bar a.top-info:hover { color: var(--gold); }
.top-bar .social-icons a {
    color: #fff; width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center;
    margin-right: 6px; font-size: 0.8rem;
}
.top-bar .social-icons a:hover { background: var(--gold); color: #1a1a1a; }

/* ============ HEADER ============ */
.main-header {
    position: sticky; top: 0; z-index: 999;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(10,46,115,0.08);
    transition: var(--transition);
}
.main-header.scrolled { background: #fff; box-shadow: var(--shadow-md); }
.navbar { padding: 12px 0; }

.logo-wrapper { display: flex; align-items: center; gap: 12px; }
.logo-mark {
    width: 50px; height: 50px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.3rem;
    box-shadow: 0 8px 18px rgba(10,46,115,0.25);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-family: var(--ff-heading); font-weight: 800; font-size: 1.4rem; color: var(--primary-blue); letter-spacing: 1px; }
.logo-subtitle { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

.main-menu { gap: 4px; }
.main-menu .nav-link {
    font-family: var(--ff-heading);
    font-weight: 500; font-size: 0.92rem;
    color: var(--text-dark);
    padding: 8px 14px !important;
    border-radius: 8px;
    position: relative;
}
.main-menu .nav-link:hover, .main-menu .nav-link.active {
    color: var(--primary-blue); background: rgba(10,46,115,0.06);
}
.main-menu .nav-link.active::after {
    content: ''; position: absolute; bottom: -3px; left: 50%;
    width: 6px; height: 6px; background: var(--gold); border-radius: 50%; transform: translateX(-50%);
}

/* Mega Dropdown */
.mega-dropdown .dropdown-toggle::after { display: none; }
.mega-menu {
    min-width: 700px; border: none; border-radius: 18px;
    box-shadow: var(--shadow-lg); padding: 0; overflow: hidden;
    margin-top: 12px;
}
.mega-title { font-family: var(--ff-heading); font-weight: 700; color: var(--primary-blue); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.mega-link { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--text-dark); font-size: 0.9rem; }
.mega-link i { width: 28px; height: 28px; border-radius: 8px; background: rgba(10,46,115,0.08); color: var(--primary-blue); display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.mega-link:hover { color: var(--primary-blue); padding-left: 6px; }
.mega-link:hover i { background: var(--primary-blue); color: #fff; }
.mega-highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff; border-radius: 14px; padding: 20px !important;
}

.header-search-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: transparent; color: var(--primary-blue); }
.header-search-btn:hover { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); }

.navbar-toggler {
    border: none; background: transparent; padding: 8px;
    display: flex; flex-direction: column; gap: 5px; box-shadow: none !important;
}
.navbar-toggler span { width: 26px; height: 3px; background: var(--primary-blue); border-radius: 2px; }

.mobile-menu { width: 320px; }
.mobile-nav-list { list-style: none; padding: 0; }
.mobile-nav-list li a { display: block; padding: 12px 8px; color: var(--text-dark); font-family: var(--ff-heading); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav-list li a:hover { color: var(--primary-blue); padding-left: 18px; }
.mobile-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(10,46,115,0.08); color: var(--primary-blue); display: inline-flex; align-items: center; justify-content: center; }
.mobile-social a:hover { background: var(--primary-blue); color: #fff; }

/* ============ HERO ============ */
.hero-section {
    position: relative; min-height: 92vh; overflow: hidden;
    display: flex; align-items: center; color: #fff;
}
.hero-bg-slider { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slider .swiper-slide { background-size: cover; background-position: center; min-height: 92vh; }
.hero-content { position: relative; z-index: 2; padding: 60px 0; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px; border-radius: 50px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff; font-family: var(--ff-heading); font-weight: 500; font-size: 0.85rem;
    margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-title { font-size: 3.6rem; font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 22px; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 620px; }

.hero-mini-stats .mini-stat { display: flex; flex-direction: column; padding-left: 16px; border-left: 3px solid var(--gold); }
.hero-mini-stats .mini-stat strong { font-family: var(--ff-heading); font-size: 1.6rem; font-weight: 700; color: #fff; }
.hero-mini-stats .mini-stat span { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* Hero Cards */
.hero-card-stack { position: relative; padding: 30px; }
.hero-card {
    background: rgba(255,255,255,0.98); color: var(--text-dark);
    border-radius: 22px; padding: 30px; box-shadow: var(--shadow-lg);
    position: relative; z-index: 2;
}
.hero-card-header { display: flex; align-items: center; gap: 10px; color: var(--gold); font-family: var(--ff-heading); font-weight: 600; margin-bottom: 14px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-card h4 { font-size: 1.35rem; margin-bottom: 8px; color: var(--primary-blue); }
.hero-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; }
.hero-card-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-card-badges span { background: rgba(10,46,115,0.08); color: var(--primary-blue); padding: 6px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.hero-card-badges i { color: var(--gold); margin-right: 4px; }

.hero-floating-badge {
    position: absolute; background: #fff; padding: 14px 18px; border-radius: 14px;
    display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); z-index: 3;
    animation: floatY 4s ease-in-out infinite;
}
.hero-floating-badge.badge-top { top: -10px; right: -10px; }
.hero-floating-badge.badge-bottom { bottom: -20px; left: -10px; animation-delay: 1.5s; max-width: 220px; }
.hero-floating-badge i { color: var(--gold); font-size: 1.8rem; }
.hero-floating-badge strong { display: block; color: var(--text-dark); font-family: var(--ff-heading); font-size: 0.9rem; }
.hero-floating-badge span, .hero-floating-badge p { display: block; color: var(--text-muted); font-size: 0.75rem; margin: 0; }
.badge-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; }
.badge-circle strong { color: #fff; font-size: 1rem; line-height: 1; }
.badge-circle span { color: rgba(255,255,255,0.9); font-size: 0.65rem; }

.floating { animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* Hero shapes */
.hero-shape { position: absolute; border-radius: 50%; background: rgba(212,160,23,0.15); z-index: 1; filter: blur(30px); }
.shape-1 { width: 200px; height: 200px; top: 10%; left: 5%; }
.shape-2 { width: 300px; height: 300px; bottom: -80px; right: -80px; background: rgba(215,38,56,0.1); }
.shape-3 { width: 150px; height: 150px; top: 60%; left: 40%; background: rgba(255,255,255,0.06); }

.hero-scroll { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 3; }
.hero-scroll a { color: rgba(255,255,255,0.8); font-size: 0.8rem; font-family: var(--ff-heading); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll span { width: 2px; height: 40px; background: rgba(255,255,255,0.5); display: block; animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ============ TRUST INDICATORS ============ */
.trust-section { padding: 60px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.trust-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 22px 14px; text-align: center; transition: var(--transition); height: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.trust-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trust-card i { font-size: 2rem; color: var(--primary-blue); background: rgba(10,46,115,0.08); width: 60px; height: 60px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 6px; transition: var(--transition); }
.trust-card:hover i { background: var(--primary-blue); color: var(--gold); }
.trust-card span { font-family: var(--ff-heading); font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.trust-card small { color: var(--text-muted); font-size: 0.75rem; }

/* ============ ABOUT ============ */
.about-section { background: var(--bg-light); }
.about-image-wrap { position: relative; }
.about-img-main img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.about-img-sub { position: absolute; bottom: -30px; right: -20px; width: 55%; border: 8px solid var(--bg-light); border-radius: var(--radius-lg); overflow: hidden; }
.about-img-sub img { display: block; width: 100%; }
.about-experience {
    position: absolute; top: 30px; left: -20px;
    background: var(--gold); color: #fff; padding: 20px 24px; border-radius: 18px;
    text-align: center; box-shadow: var(--shadow-lg);
}
.about-experience strong { display: block; font-family: var(--ff-heading); font-size: 2.4rem; line-height: 1; }
.about-experience span { font-size: 0.8rem; letter-spacing: 1px; }
.about-shape { position: absolute; top: -20px; right: 10px; width: 100px; height: 100px; border-radius: 50%; background: rgba(215,38,56,0.15); z-index: -1; }

.about-features { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.feature-item { display: flex; gap: 16px; }
.feature-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.feature-item h5 { font-size: 1.1rem; margin-bottom: 4px; }
.feature-item p { color: var(--text-muted); margin: 0; font-size: 0.92rem; }

/* ============ MVV ============ */
.mvv-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff; position: relative; overflow: hidden;
}
.mvv-section::before { content:''; position:absolute; width: 400px; height: 400px; background: rgba(212,160,23,0.08); border-radius: 50%; top: -100px; right: -100px; }
.mvv-section::after { content:''; position:absolute; width: 300px; height: 300px; background: rgba(215,38,56,0.08); border-radius: 50%; bottom: -100px; left: -100px; }
.mvv-section .container { position: relative; z-index: 2; }
.mvv-section .section-badge { background: rgba(255,255,255,0.15); color: var(--gold); }

.mvv-card {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg); padding: 40px 32px; height: 100%;
    position: relative; overflow: hidden; transition: var(--transition);
}
.mvv-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.1); border-color: var(--gold); }
.mvv-card.highlight { background: var(--gold); border-color: var(--gold); }
.mvv-card.highlight h3, .mvv-card.highlight p { color: #1a1a1a; }
.mvv-card.highlight .mvv-icon { background: rgba(0,0,0,0.15); color: #fff; }
.mvv-card.highlight .mvv-number { color: rgba(0,0,0,0.1); }

.mvv-icon { width: 70px; height: 70px; border-radius: 20px; background: rgba(255,255,255,0.12); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
.mvv-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.mvv-card p { color: rgba(255,255,255,0.85); margin: 0; }
.mvv-number { position: absolute; right: 24px; bottom: 10px; font-family: var(--ff-heading); font-weight: 800; font-size: 5rem; color: rgba(255,255,255,0.06); line-height: 1; }

/* ============ SERVICES ============ */
.services-section { background: var(--white); }
.service-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 36px 28px; height: 100%; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content:''; position: absolute; top:0; left:0; width: 4px; height: 100%; background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); transform-origin: top; }
.service-icon { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg, rgba(10,46,115,0.08), rgba(212,160,23,0.12)); color: var(--primary-blue); display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 22px; transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); color: var(--gold); }
.service-card h4 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); margin-bottom: 18px; font-size: 0.95rem; }
.service-link { color: var(--primary-blue); font-family: var(--ff-heading); font-weight: 600; font-size: 0.9rem; }
.service-link i { margin-left: 6px; transition: var(--transition); }
.service-link:hover i { transform: translateX(6px); }

/* ============ COUNTERS ============ */
.counter-section { background-size: cover; background-attachment: fixed; background-position: center; color: #fff; }
.counter-card { text-align: center; padding: 24px 10px; }
.counter-card i { font-size: 2rem; color: var(--gold); background: rgba(255,255,255,0.08); width: 72px; height: 72px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px; border: 2px solid rgba(255,255,255,0.15); }
.counter-card strong { font-family: var(--ff-heading); font-size: 2.6rem; font-weight: 800; color: #fff; display: block; line-height: 1.1; }
.counter-card span { color: rgba(255,255,255,0.85); font-size: 0.88rem; letter-spacing: 0.5px; }

/* ============ FOCUS AREAS ============ */
.focus-section { background: var(--bg-light); }

.focus-icon-wrap {
    width: 80px; height: 80px; border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 22px; transition: var(--transition);
}

.focus-card h4 { font-size: 1.25rem; margin-bottom: 10px; }
.focus-card p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }
.focus-num { position: absolute; right: 24px; top: 20px; font-family: var(--ff-heading); font-weight: 800; font-size: 3rem; color: rgba(10,46,115,0.07); line-height: 1; }

/* ============ MEMBERSHIP ============ */
.membership-section { background: #fff; }
.member-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px 30px; height: 100%; position: relative; transition: var(--transition);
    display: flex; flex-direction: column;
}
.member-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.member-card.featured { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); color: #fff; border: none; }
.member-card.featured h4, .member-card.featured span, .member-card.featured .member-benefits li { color: #fff; }
.member-card.featured .member-benefits i { color: var(--gold); }
.member-card.featured .member-head i { color: var(--gold); background: rgba(255,255,255,0.14); }

.ribbon {
    position: absolute; top: 18px; right: -34px;
    background: var(--gold); color: #1a1a1a; padding: 6px 40px;
    font-family: var(--ff-heading); font-weight: 600; font-size: 0.75rem;
    transform: rotate(35deg); letter-spacing: 1px;
}

.member-head { text-align: center; margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px dashed rgba(255,255,255,0.2); }
.member-card:not(.featured) .member-head { border-bottom-color: var(--border); }
.member-head i {
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(10,46,115,0.08); color: var(--primary-blue);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 2rem; margin-bottom: 14px;
}
.member-head h4 { margin-bottom: 4px; font-size: 1.4rem; }
.member-head span { color: var(--text-muted); font-size: 0.88rem; }

.member-benefits { list-style: none; padding: 0; margin: 0 0 26px; flex-grow: 1; }
.member-benefits li { padding: 8px 0; color: var(--text-dark); font-size: 0.94rem; display: flex; align-items: center; gap: 10px; }
.member-benefits i { color: var(--gold); }

.why-join { border-top: 1px solid var(--border); }
.benefit-tile {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 16px 20px; font-family: var(--ff-heading); font-weight: 600; font-size: 0.95rem;
    display: flex; align-items: center; gap: 12px; transition: var(--transition);
}
.benefit-tile i { color: var(--gold); font-size: 1.2rem; }
.benefit-tile:hover { border-color: var(--gold); transform: translateX(6px); box-shadow: var(--shadow-sm); }

/* ============ PROGRAMS ============ */
.programs-section { background: var(--bg-light); }
.program-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); height: 100%; box-shadow: var(--shadow-sm); }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.program-img::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(10,46,115,0.5), transparent 60%); }
.program-tag { position: absolute; top: 16px; left: 16px; background: var(--gold); color: #1a1a1a; padding: 6px 14px; border-radius: 20px; font-family: var(--ff-heading); font-weight: 600; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; z-index: 2; }
.program-body { padding: 26px; }
.program-body h4 { font-size: 1.25rem; margin-bottom: 10px; }
.program-body p { color: var(--text-muted); margin-bottom: 14px; font-size: 0.94rem; }
.program-link { color: var(--primary-blue); font-family: var(--ff-heading); font-weight: 600; font-size: 0.9rem; }
.program-link i { margin-left: 6px; transition: var(--transition); }
.program-link:hover i { transform: translateX(6px); }

/* ============ EVENTS ============ */
.events-section { background: #fff; }
.event-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); height: 100%; display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.event-date { position: absolute; top: 16px; right: 16px; background: var(--red); color: #fff; padding: 10px 16px; border-radius: 12px; text-align: center; line-height: 1; }
.event-date strong { font-family: var(--ff-heading); font-size: 1.5rem; display: block; font-weight: 700; }
.event-date span { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; }
.event-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.event-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; font-size: 0.82rem; color: var(--text-muted); }
.event-meta i { color: var(--gold); margin-right: 4px; }
.event-body h4 { font-size: 1.2rem; margin-bottom: 8px; }
.event-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 14px; }
.countdown { display: flex; gap: 8px; }
.countdown > div { flex: 1; background: rgba(10,46,115,0.06); padding: 10px 4px; border-radius: 10px; text-align: center; }
.countdown strong { font-family: var(--ff-heading); font-size: 1.15rem; color: var(--primary-blue); display: block; line-height: 1; }
.countdown span { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ============ GALLERY ============ */
.gallery-section { background: var(--bg-light); }
.masonry-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.masonry-item { position: relative; overflow: hidden; border-radius: var(--radius); display: block; }
.masonry-item.tall { grid-row: span 2; }
.masonry-item.wide { grid-column: span 2; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.masonry-item:hover img { transform: scale(1.08); }
.masonry-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,46,115,0.85), transparent 60%); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: var(--transition); }
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay span { color: #fff; font-family: var(--ff-heading); font-weight: 600; }

/* ============ LEADERSHIP ============ */
.leadership-section { background: #fff; }
.leader-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.leader-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.leader-img { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.leader-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.leader-card:hover .leader-img img { transform: scale(1.08); }
.leader-social { position: absolute; bottom: -50px; left: 0; right: 0; padding: 14px; text-align: center; background: linear-gradient(to top, var(--primary-blue), transparent); transition: bottom 0.4s ease; display: flex; justify-content: center; gap: 10px; }
.leader-card:hover .leader-social { bottom: 0; }
.leader-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--primary-blue); display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.leader-social a:hover { background: var(--gold); color: #fff; }
.leader-body { padding: 20px; text-align: center; }
.leader-body h5 { font-size: 1.15rem; margin-bottom: 4px; }
.leader-body span { color: var(--gold); font-family: var(--ff-heading); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; }

/* ============ TESTIMONIALS ============ */
.testimonial-section { background: var(--bg-light); }
.testimonial-swiper { padding-bottom: 60px; }
.testimonial-card {
    background: #fff; padding: 40px 32px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); position: relative; height: 100%;
    border: 1px solid var(--border);
}
.testimonial-card .quote { position: absolute; top: 24px; right: 30px; font-size: 2.5rem; color: rgba(212,160,23,0.15); }
.testimonial-card p { color: var(--text-dark); font-size: 1.02rem; line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.testimonial-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.testimonial-author strong { display: block; font-family: var(--ff-heading); font-size: 1rem; color: var(--text-dark); }
.testimonial-author span { color: var(--text-muted); font-size: 0.85rem; }
.testimonial-swiper .swiper-pagination-bullet { background: var(--primary-blue); }
.testimonial-swiper .swiper-pagination-bullet-active { background: var(--gold); width: 28px; border-radius: 4px; }

/* ============ NEWS ============ */
.news-section { background: #fff; }
.news-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); height: 100%; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.news-tag { position: absolute; top: 16px; left: 16px; background: var(--red); color: #fff; padding: 6px 14px; border-radius: 20px; font-family: var(--ff-heading); font-weight: 600; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; }
.news-body { padding: 26px; }
.news-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 10px; font-size: 0.82rem; color: var(--text-muted); }
.news-meta i { color: var(--gold); margin-right: 4px; }
.news-body h4 { font-size: 1.15rem; line-height: 1.4; margin-bottom: 14px; }
.news-link { color: var(--primary-blue); font-family: var(--ff-heading); font-weight: 600; font-size: 0.9rem; }
.news-link i { margin-left: 6px; transition: var(--transition); }
.news-link:hover i { transform: translateX(6px); }

/* ============ PARTNERS ============ */
.partners-section { background: var(--bg-light); padding: 80px 0; }
.partner-swiper .swiper-slide { display: flex; align-items: center; justify-content: center; }
.partner-logo {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    height: 90px; width: 100%; display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-heading); font-weight: 700; color: var(--primary-blue); font-size: 0.95rem;
    text-align: center; padding: 10px 20px; transition: var(--transition);
}
.partner-logo:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ============ DONATE CTA ============ */
.donate-cta { padding: 120px 0; color: #fff; background-size: cover; background-position: center; background-attachment: fixed; text-align: center; }
.donate-heading { font-size: 3rem; color: #fff; font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.donate-desc { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 720px; }

/* ============ FAQ ============ */
.faq-section { background: #fff; }
.faq-img { border-radius: var(--radius-lg); margin-top: 30px; box-shadow: var(--shadow-lg); }
.faq-accordion .accordion-item { border: 1px solid var(--border); border-radius: 14px !important; margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq-accordion .accordion-button {
    font-family: var(--ff-heading); font-weight: 600; font-size: 1rem;
    color: var(--text-dark); padding: 20px 24px; background: #fff;
    box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) { background: rgba(10,46,115,0.04); color: var(--primary-blue); }
.faq-accordion .accordion-button::after {
    background: none; content: '\002B'; font-size: 1.5rem; font-weight: 600;
    color: var(--gold); width: auto; height: auto; transform: none !important;
}
.faq-accordion .accordion-button:not(.collapsed)::after { content: '\2212'; }
.faq-accordion .accordion-body { padding: 0 24px 22px; color: var(--text-muted); font-size: 0.95rem; }

/* ============ CONTACT ============ */
.contact-section { background: var(--bg-light); }
.contact-info-card { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); color: #fff; padding: 40px 30px; border-radius: var(--radius-lg); height: 100%; }
.contact-info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-info-item:last-child { border-bottom: none; }
.info-icon { flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.12); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.contact-info-item h6 { color: #fff; margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.9rem; }

.contact-form-wrap { background: #fff; padding: 40px 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.contact-form-wrap .form-label { font-family: var(--ff-heading); font-weight: 500; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 6px; }
.contact-form-wrap .form-control {
    border: 1px solid var(--border); padding: 12px 16px; border-radius: 10px;
    font-family: var(--ff-body); background: var(--bg-light); transition: var(--transition);
}
.contact-form-wrap .form-control:focus { border-color: var(--primary-blue); background: #fff; box-shadow: 0 0 0 4px rgba(10,46,115,0.08); }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 220px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============ FOOTER ============ */
.footer { background: #061e4d; color: rgba(255,255,255,0.85); }
.footer-top { padding: 80px 0 50px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: #fff; }
.footer-brand .logo-mark { width: 46px; height: 46px; font-size: 1.15rem; }
.footer-brand strong { display: block; font-family: var(--ff-heading); font-size: 2.3rem; color: #fff; letter-spacing: 1px; }
.footer-brand span { font-size: 0.72rem; color: rgba(255,255,255,0.65); }
.footer-desc { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold); color: #1a1a1a; }

.footer-title { color: #fff; font-family: var(--ff-heading); font-weight: 600; font-size: 1.1rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-title::after { content:''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--gold); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.92rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.newsletter-form { display: flex; background: rgba(255,255,255,0.08); border-radius: 50px; padding: 6px; }
.newsletter-form input { flex-grow: 1; background: transparent; border: none; color: #fff; padding: 10px 18px; outline: none; font-size: 0.9rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button { background: var(--gold); border: none; color: #1a1a1a; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: #fff; }
.footer-contact p { margin-bottom: 6px; font-size: 0.9rem; }
.footer-contact i { color: var(--gold); }

.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,0.65); }
.footer-legal a:hover { color: var(--gold); }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px;
    border-radius: 50%; background: var(--primary-blue); color: var(--gold);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); z-index: 998;
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--primary-blue); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2rem; }
    .mega-menu { min-width: 600px; }
}

@media (max-width: 991px) {
    section { padding: 50px 0; }
    .hero-section { min-height: auto; padding: 80px 0; }
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 1.8rem; }
    .donate-heading { font-size: 2.2rem; }
    .about-image-wrap { margin-bottom: 40px; }
    .about-img-sub { display: none; }
    .about-experience { top: 20px; left: 20px; }
    .hero-card-stack { margin-top: 40px; padding: 20px; }
    .hero-floating-badge.badge-top { top: -5px; right: 5px; }
    .hero-floating-badge.badge-bottom { bottom: -10px; left: 5px; }
    .masonry-grid { grid-template-columns: repeat(3, 1fr); }
    .counter-card strong { font-size: 2rem; }
}

@media (max-width: 767px) {
    section { padding: 0px 0; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 0.95rem; }
    .section-title { font-size: 1.6rem; }
    .donate-heading { font-size: 1.8rem; }
    .masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
    .masonry-item.wide { grid-column: span 2; }
    .btn-lg { padding: 0.8rem 1.6rem; font-size: 0.9rem; }
    .footer-legal { flex-direction: column; gap: 6px; margin-top: 10px; }
    .contact-form-wrap { padding: 28px 20px; }
    .hero-mini-stats { flex-direction: column; gap: 16px !important; }
    .counter-card strong { font-size: 1.8rem; }
    .about-experience { top: 15px; left: 15px; padding: 14px 18px; }
    .about-experience strong { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .section-title { font-size: 1.4rem; }
    .hero-title { font-size: 1.7rem; }
    .donate-heading { font-size: 1.5rem; }
    .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .masonry-item.wide { grid-column: span 1; }
    .masonry-item.tall { grid-row: span 1; }
    .logo-subtitle { display: none; }
    .countdown > div { padding: 8px 2px; }
    .countdown strong { font-size: 0.95rem; }
    .countdown span { font-size: 0.55rem; }
    .hero-card { padding: 22px; }
    .hero-floating-badge { padding: 10px 12px; }
    .hero-floating-badge i { font-size: 1.4rem; }
}




/*Header Starts From Here*/
.top-bar{
    background:#111;
    font-size:14px;
}

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

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.top-left a,
.top-right a{
    color:#fff;
    text-decoration:none;
}

.top-left i{
    color:#d32f2f;
    margin-right:6px;
}

.top-right a:hover{
    color:rgb(190, 29, 29);
}

.main-header{
    background:#fff;
    padding:15px 0;
}

.main-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo img{
    width:100px;
}

.header-content{
    flex:1;
}
.main-header .container{
    width:95%;
}

.header-content h1{
    font-size:30px;
    color:#0A2E73;
    font-weight:700;
    text-transform:uppercase;
}

.header-content span{
    display:block;
    font-size:17px;
    color:#d32f2f;
}

.header-content p{
    color:#666;
    margin-bottom:0;
}

.certificates{
    display:flex;
    gap:12px;
}

.certificates img{
    height:70px;
}

nav{
    background:#0A2E73;
}

nav .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:60px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
    margin-bottom:0;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#ffd54f;
}

.join-btn{
    background:#d32f2f;
    color:#fff;
    padding:11px 24px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.join-btn:hover{
    background:#b71c1c;
}
.footer .logo img{
    border-radius:50%;
}
@media(max-width:768px){
    .top-left{
    display:flex;
    align-items:center;
    gap:0px;
    justify-content:center;
    flex-direction:column;
}
    .top-right{
    display:none;
  
}
    .top-bar .container {
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
  .logo img {
  width: 70px;
}
  .header-content h1 {
  font-size: 20px;
  color: #0A2E73;
  font-weight: 700;
  text-transform: uppercase;
}
  .header-content span {
  display: block;
  font-size: 10px;
  color: #d32f2f;
}
  .header-content p {
  color: #666;
  margin-bottom: 0;
  font-size: 10px;
}
}

/*Hero section*/
.hero{
    background:linear-gradient(rgba(10, 46, 115, 0),rgba(10, 46, 115, 0)),url("../img/homebg.png") center/cover;
    padding:0px 0;
    overflow:hidden;
}

.hero-content{
    color:#fff;
}

.hero-tag{
    display:inline-block;
    padding:10px 20px;
    background:#d62828;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:55px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
    text-transform:uppercase;
    color:#ffd54f;
}

.hero-content h1 span{
    display:block;
    color:#ffd54f;
}

.hero-content p{
    max-width:550px;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
    color:#e4e8f1;
}

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

.btn-primary,
.btn-outline{
    padding:15px 35px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#d62828;
    color:#fff;
}

.btn-primary:hover{
    background:#b71c1c;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#0a2e73;
}

.hero-image{
    position:relative;
    text-align:right;
}

.hero-image>img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.floating-card{
    position:absolute;
    width:180px;
    background:#fff;
    padding:8px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.floating-card img{
    width:100%;
    border-radius:10px;
}

.card1{
    left:-40px;
    bottom:40px;
}

.card2{
    right:-30px;
    top:50px;
}

@media(max-width:991px){

.hero{
    padding:80px 0;
}

.hero-content{
    text-align:center;
    margin-bottom:5px;
}

.hero-content h1{
    font-size:46px;
}

.hero-btns{
    justify-content:center;
}

.hero {
  background:linear-gradient(rgba(10, 46, 115, 0),rgb(10, 46, 115)),url("../img/homebg.png") center/cover;
  padding: 0px 0;
  overflow: hidden;
  background-position-x: 100%;
}
.hero-tag {
  display: inline-block;
  padding: 8px 17px;
  font-size: 12px;

}
.btn-primary, .btn-outline {
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

}

/*About section*/
.py-100{
    padding:60px 0;
}

.about-images{
    position:relative;
}

.about-main{
    width:100%;
    border-radius:20px;
}

.experience-box{
    position:absolute;
    right:-20px;
    bottom:30px;
    width:170px;
    padding:25px;
    background:#0A2E73;
    color:#fff;
    border-radius:15px;
    text-align:center;
}

.experience-box h3{
    font-size:42px;
    margin-bottom:5px;
    color:#ffc107;
}

.section-tag{
    display:inline-block;
    font-size:14px;
    margin-bottom:10px;
}

.about p{
    color:#666;
    line-height:1.8;
}

.about-list{
    margin:35px 0;
}

.about-item{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}

.about-item i{
    width:50px;
    height:50px;
     min-width:50px;
    background:#0A2E73;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.about-item h5{
    margin-bottom:8px;
    color:#0A2E73;
}

.theme-btn{
    display:inline-block;
    padding:14px 35px;
    background:#D62828;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
}

.theme-btn:hover{
    background:#0A2E73;
    color:#fff;
}

/*section*/
.focus-area{
    padding:60px 0;
    background:#0f1e4c;
}

.focus-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:380px;
    cursor:pointer;
}

.focus-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.focus-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
}

.overlay{
    position:absolute;
    left:30px;
    right:30px;
    bottom:25px;
    color:#fff;
    z-index:2;
}

.overlay i{
    width:65px;
    height:65px;
    background:#d62828;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    margin-bottom:20px;
}

.overlay h4{
    margin-bottom:10px;
    font-size:24px;
    color:#ffd54f;
}

.overlay p{
    opacity:.9;
    margin:0;
    color:#fff;
}

.focus-card:hover img{
    transform:scale(1.1);
}

.focus-card:hover::before{
    background:linear-gradient(to top,rgba(0,0,0,1),rgba(255,255,255,0),transparent);
}
@media(max-width:768px){
    .focus-card::before{
      background:linear-gradient(to top,rgba(0,0,0,1),rgba(255,255,255,0),transparent);
   }
}

/*impact*/
.impact-section{
    padding:60px 0;
}

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

.impact-item{
    text-align:center;
    color:#fff;
    padding:40px 20px;
    border-radius:15px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    transition:.3s;
}

.impact-item:hover{
    transform:translateY(-8px);
    border: 1px solid #d628289c;
}

.impact-item i{
    font-size:42px;
    color:rgb(214, 40, 40);
    margin-bottom:20px;
}

.impact-item h3{
    font-size:42px;
    margin-bottom:10px;
}

.impact-item p{
    margin:0;
    color:#002083;
}

@media(max-width:991px){
    .impact-wrapper{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .impact-wrapper{
        grid-template-columns:1fr 1fr;
    }
    
.impact-item {
  text-align: center;
  color: #fff;
  padding: 10px;
}
.impact-item h3 {
  font-size: 37px;
  margin-bottom: 10px;
}
}

/*registrations*/
.recognition-section{
    background:#fff;
}

.recognition-item{
    display:flex;
    align-items:center;
    gap:22px;
    padding:18px 0;
    border-bottom:1px solid #ececec;
}

.recognition-item:last-child{
    border-bottom:none;
}

.recognition-item img{
    width:75px;
    height:75px;
    object-fit:contain;
    flex-shrink:0;
}

.recognition-item h5{
    font-size:20px;
    color:#18346d;
    margin-bottom:6px;
    font-weight:600;
}

.recognition-item p{
    margin:0;
    color:#666;
    font-size:15px;
    line-height:1.6;
}
.registration{
    justify-content:center;
}

@media(max-width:991px){

    .recognition-item{
        gap:16px;
    }

    .recognition-item img{
        width:65px;
        height:65px;
    }

}

/* Leadershiop section*/
.initiatives{
    background:#f7f9fc;
}

.section-heading span{
    color:#d62828;
    font-size:15px;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
}

.focus-area .section-heading h2{
    font-size:38px;
    font-weight:600;
    color:#fff;
    margin-top:10px;
}

.initiative-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    height:100%;
}

.initiative-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.initiative-content{
    padding:28px;
}

.initiative-content h5{
    font-size:22px;
    font-weight:600;
    color:#1b2b52;
    margin-bottom:12px;
}

.initiative-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:18px;
}

.initiative-content a{
    color:#d62828;
    text-decoration:none;
    font-weight:500;
}

.initiative-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.leadership{
    background:#0f284e;
}

.leadership h2{
    color:#fff;
}

.leader-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.leader-card:hover{
    transform:translateY(-8px);
}

.leader-image{
    overflow:hidden;
}

.leader-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.4s;
}

.leader-content{
    padding:15px;
    text-align:center;
}

.leader-content h4{
    font-size:28px;
    font-weight:600;
    color:#1f2d5c;
    margin-bottom:8px;
}

.leader-content span{
    display:block;
    color:#d62828;
    margin-bottom:20px;
    font-size:15px;
}

.leader-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:10px;
}
.leader h4{
    color:#ffd54f;
}
.leader p{
    color:#fff;
}
.mv-content h4{
    color:#ffd54f;
}
.mv-content p{
    color:#fff;
}


/*Testimonial section*/
.testimonial-section{
    background:#f8f9fc;
    padding:50px 0px 30px;
}

.testimonial-card{
    position:relative;
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:20px;
    padding:20px;
    transition:.3s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.quote{
    position:absolute;
    right:30px;
    top:25px;
    font-size:42px;
    color:#e8d8aa;
}

.testimonial-card p{
    color:#444;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
    padding-right:40px;
}

.client{
    display:flex;
    align-items:center;
    gap:16px;
    border-top:1px solid #ececec;
    padding-top:22px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #d4a017;
}

.client h5{
    margin:0 0 4px;
    font-size:22px;
    font-weight:600;
    color:#1f2d5c;
}

.client span{
    color:#6d7a90;
    font-size:15px;
}

.swiper-pagination-bullet{
    width:8px;
    height:8px;
}

.swiper-pagination-bullet-active{
    width:28px;
    border-radius:20px;
    background:#d4a017;
}
.swiper-horizontal > .swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal{
  bottom: 0;
  top: var(--swiper-pagination-top,auto);
  left: 0;
  width: 100%;
}
@media(max-width:768px){
    .testimonial-card{
    padding:20px;
    margin-bottom:30px;
}
}

/*CTA*/
.cta-wrapper{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.cta-image{
    height:100%;
}

.cta-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.cta-content{
    padding:70px 60px;
    background:#da3f3d2b;
}

.cta-content span{
    display:inline-block;
    color:#d62828;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.cta-content h2{
    font-size:46px;
    color:#333;
    font-weight:600;
    margin-bottom:20px;
    line-height:1.2;
}

.cta-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

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

.theme-btn{
    background:#17346b;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.theme-btn:hover{
    background:#d62828;
    color:#fff;
}

.theme-btn-outline{
    border:2px solid #17346b;
    color:#17346b;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.theme-btn-outline:hover{
    background:#17346b;
    color:#fff;
}

@media(max-width:991px){

    .cta-image img{
        height:350px;
    }

    .cta-content{
        padding:30px 20px;
    }

    .cta-content h2{
        font-size:34px;
    }
    .cta-btns {
  display: flex;
  gap: 15px;
  flex-direction: column;
}
    .theme-btn-outline,.theme-btn{
        text-align:center
}

}

/*Contact page*/
.contact-info-box{
    padding-right:40px;
}

.contact-info-box h3,
.contact-form-box h3{
    margin-bottom:18px;
}

.contact-info-box>p{
    color:#666;
    margin-bottom:35px;
    line-height:1.8;
}

.info-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.info-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:#0d2b5c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.info-item h5{
    margin-bottom:8px;
}

.info-item p{
    margin:0;
    color:#666;
    line-height:1.8;
}

.contact-form-box{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form-box .form-control{
    height:58px;
    border-radius:10px;
    border:1px solid #ddd;
    box-shadow:none;
    padding:0 18px;
}

.contact-form-box textarea.form-control{
    height:auto;
    padding:18px;
    resize:none;
}

.contact-form-box .form-control:focus{
    border-color:#0d2b5c;
}

@media(max-width:991px){

    .contact-info-box{
        padding-right:0;
        margin-bottom:40px;
    }

    .contact-form-box{
        padding:20px;
    }
    .info-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 15px;
}
    .info-item {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}
    .info-item p {
  margin: 0;
  color: #666;
  line-height: 1.5;
  font-size: 14px;
}
    .contact-right{
        padding:0px 15px;
        margin-top:0;
    }
    .contact-left{
        padding:0px 15px;
    }
    .contact-form-box .form-control {
  height: 50px;
  border-radius: 10px;
}
}

/*Menu bar*/
nav{
    background:#0d2b5c;
    position:relative;
}

nav .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:70px;
}

.nav-menu{
    display:flex;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
}

.mobile-nav{
    display:none;
    width:100%;
    align-items:center;
    justify-content:space-between;
}


.menu-toggle{
    background:none;
    border:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

@media(max-width:991px){

    .certificates{
        display:none;
    }

    nav .container{
        display:block;
        height:auto;
        padding:0;
    }

    .mobile-nav{
        display:flex;
        padding:5px 10px;
    }

    .join-btn{
        display:none;
    }
        .mob{
        display:block;
  background: #d32f2f;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

    .nav-menu{
        display:none;
        flex-direction:column;
        gap:0;
        background:#0d2b5c;
    }

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

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

    .nav-menu li a{
        display:block;
        padding:16px 20px;
        border-top:1px solid rgba(255,255,255,.1);
    }

}

/*Breadcrumb*/
.breadcrumb-section{
    background:#a52828;
    padding:20px 0;
    text-align:center;
    color:#fff;
}

.breadcrumb-section h1{
    font-size:30px;
    margin-bottom:15px;
    color:#fff;
}

.breadcrumb-list{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    list-style:none;
    margin:0;
    padding:0;
}

.breadcrumb-list li{
    color:rgba(255,255,255,.8);
    font-size:14px;
}

.breadcrumb-list a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-list a:hover{
    color:#f4b400;
}

@media(max-width:768px){

    .breadcrumb-section h1{
        font-size:30px;
    }
    .breadcrumb-section h1 {
     font-size: 30px;
     margin-bottom: 8px;
     color: #fff;
}

}
.section-heading{
    line-height:3;
}