/* ================= TOP BAR ================= */
.top-bar {
    background: #073763;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 0;
}

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

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

.top-bar a,
.top-bar span {
    color: #ffffff;
}

.top-bar i {
    color: #ffd43b;
}

/* ================= HEADER ================= */
.main-header {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    min-height: 82px;
}

/* ================= BRAND ================= */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #073763;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand h1 {
    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;
    color: #073763;
    margin: 0;
}

.brand p {
    font-size: 11px;
    font-weight: 700;
    color: #0b7a3b;
    letter-spacing: 0.5px;
    margin: 3px 0 0;
}

/* ================= NAVIGATION ================= */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 11px;
    border-radius: 7px;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: #e7f7ee;
    color: #0b7a3b;
}

.main-nav .donate-btn {
    background: #e63946;
    color: #ffffff;
    margin-left: 5px;
    padding: 11px 15px;
}

.main-nav .donate-btn:hover {
    background: #c92f3b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ================= MENU TOGGLE ================= */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 8px;
    background: #073763;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .brand h1 {
        font-size: 18px;
    }

    .main-nav a {
        font-size: 13px;
        padding: 9px 8px;
    }
}

@media (max-width: 992px) {
    .top-flex {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .nav-flex {
        min-height: 75px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        gap: 4px;
        box-shadow: 0 14px 28px rgba(0,0,0,0.12);
        display: none;
    }

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

    .main-nav a {
        width: 100%;
        padding: 13px 14px;
        border-radius: 8px;
    }

    .main-nav .donate-btn {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
    }

    .top-left,
    .top-right {
        justify-content: center;
        gap: 8px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand h1 {
        font-size: 15px;
    }

    .brand p {
        font-size: 9px;
    }

    .nav-flex {
        min-height: 68px;
    }

    .main-nav {
        top: 68px;
    }
}


/* ================= ADVANCED HEADER EFFECTS ================= */
.main-header {
    transition: 0.3s ease;
}

.main-header:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.brand:hover img {
    transform: scale(1.05);
}

.brand img {
    transition: 0.3s ease;
}

/* ================= NAV ACTIVE LINE EFFECT ================= */
.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: #0b7a3b;
    transform: scaleX(0);
    transition: 0.25s ease;
}

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

.main-nav .donate-btn::after {
    display: none;
}

/* ================= DONATE BUTTON ANIMATION ================= */
.donate-btn {
    animation: donatePulse 2s infinite;
}

@keyframes donatePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230,57,70,0.45);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(230,57,70,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230,57,70,0);
    }
}

/* ================= MOBILE MENU ANIMATION ================= */
@media (max-width: 992px) {
    .main-nav {
        animation: slideDown 0.28s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav a::after {
        display: none;
    }
}

/* ================= TOP SOCIAL HOVER ================= */
.top-right a i {
    transition: 0.25s ease;
}

.top-right a:hover i {
    transform: translateY(-2px);
    color: #ffffff;
}

/* ================= MOBILE POLISH ================= */
@media (max-width: 576px) {
    .top-right span {
        display: none;
    }

    .brand {
        max-width: 78%;
    }

    .brand div {
        overflow: hidden;
    }

    .brand h1,
    .brand p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}






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

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f4f7fb;
    color: #1f2937;
}

a {
    text-decoration: none;
}

.container {
    width: 92%;
    max-width: 1180px;
    margin: auto;
}

section {
    padding: 70px 0;
}

/* ================= SECTION TITLE ================= */
.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title span {
    display: inline-block;
    color: #0b7a3b;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 34px;
    color: #073763;
    margin-bottom: 10px;
}

.section-title p {
    color: #6b7280;
    font-size: 15px;
}

/* ================= HERO ================= */
.arsp-hero {
    background: linear-gradient(135deg, #073763, #0b7a3b);
    padding: 80px 0;
    color: #fff;
}

.arsp-hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 45px;
}

.arsp-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 9px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 18px;
}

.arsp-hero-left h1 {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.arsp-hero-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #e5eef7;
    margin-bottom: 22px;
}

.hero-announcement {
    background: rgba(255,255,255,0.13);
    padding: 13px 16px;
    border-left: 4px solid #ffd43b;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 25px;
}

.hero-announcement i {
    color: #ffd43b;
}

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

.hero-btn {
    padding: 13px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.hero-btn.secondary {
    background: #fff;
    color: #073763;
}

.hero-btn.rtse {
    background: #ffd43b;
    color: #111827;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* ================= SLIDER ================= */
.arsp-slider {
    position: relative;
    width: 100%;
    height: 390px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

.slider-window {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

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

.slide-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(7,55,99,0.82);
    padding: 15px;
    border-radius: 12px;
    color: #fff;
}

.slide-caption h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.slide-caption p {
    font-size: 14px;
    color: #e5e7eb;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.slider-control.prev {
    left: 14px;
}

.slider-control.next {
    right: 14px;
}

.slider-control:hover {
    background: #0b7a3b;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: flex;
    gap: 7px;
    z-index: 15;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
}

.slider-dot.active {
    background: #ffd43b;
}

/* ================= COUNTER ================= */
.counter-section {
    background: #fff;
    padding: 45px 0;
}

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

.counter-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.counter-item i {
    font-size: 32px;
    color: #0b7a3b;
    margin-bottom: 12px;
}

.counter-item h3 {
    font-size: 34px;
    color: #073763;
}

.counter-item p {
    color: #6b7280;
    font-weight: 600;
}

/* ================= FOCUS AREAS ================= */
.focus-section {
    background: #f4f7fb;
}

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

.focus-card {
    background: #fff;
    padding: 28px 18px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.focus-card:hover {
    transform: translateY(-6px);
}

.focus-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #e7f7ee;
    color: #0b7a3b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.focus-card h3 {
    color: #073763;
    font-size: 17px;
}

/* ================= INITIATIVES ================= */
.initiative-section {
    background: #fff;
}

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

.initiative-card {
    background: #f8fafc;
    padding: 25px 18px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.initiative-card:hover {
    transform: translateY(-6px);
}

.initiative-card i {
    font-size: 32px;
    color: #0b7a3b;
    margin-bottom: 15px;
}

.initiative-card h3 {
    color: #073763;
    font-size: 18px;
    margin-bottom: 10px;
}

.initiative-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.initiative-card a {
    color: #e63946;
    font-weight: 700;
}



/* ================= ANNOUNCEMENT + EVENT ================= */
.announcement-event {
    background: linear-gradient(135deg, #073763, #0b7a3b);
    color: #fff;
}

.announce-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.announcement-box,
.event-box {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 28px;
    border-radius: 18px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.announce-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffd43b;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.announcement-box h3,
.event-box h3 {
    margin-bottom: 10px;
}

.announcement-box p,
.event-box p {
    color: #e5e7eb;
    line-height: 1.6;
}

.announcement-box a,
.event-box a {
    display: inline-block;
    margin-top: 10px;
    color: #ffd43b;
    font-weight: 700;
}

.event-box span {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    color: #ffd43b;
}

/* ================= MANAGEMENT BODY ================= */
.management-preview-section {
    background: #f4f7fb;
}

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

.management-card {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.management-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e7f7ee;
}

.management-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.management-card h3 {
    color: #073763;
    font-size: 18px;
}

.management-card p {
    color: #0b7a3b;
    font-weight: 700;
    margin-top: 5px;
}

/* ================= GALLERY ================= */
.gallery-preview-section {
    background: #fff;
}

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

.gallery-item {
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.section-action {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #073763;
    color: #fff;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
}

.view-more-btn:hover {
    background: #0b7a3b;
}

/* ================= NEWSLETTER ================= */
.newsletter-section {
    background: #073763;
    color: #fff;
}

.newsletter-box {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 38px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 25px;
    align-items: center;
}

.newsletter-content span {
    color: #ffd43b;
    font-weight: 700;
    text-transform: uppercase;
}

.newsletter-content h2 {
    font-size: 30px;
    margin: 8px 0;
}

.newsletter-content p {
    color: #e5e7eb;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.newsletter-form button {
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    background: #ffd43b;
    color: #111827;
    font-weight: 800;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .arsp-hero-container,
    .newsletter-box {
        grid-template-columns: 1fr;
    }

    .counter-grid,
    .card-grid,
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .initiative-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arsp-hero-left h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .arsp-hero {
        padding: 55px 0;
    }

    .arsp-hero-left h1 {
        font-size: 31px;
    }

    .arsp-hero-left p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        justify-content: center;
        width: 100%;
    }

    .arsp-slider {
        height: 260px;
    }

    .counter-grid,
    .card-grid,
    .initiative-grid,
    .announce-grid,
    .management-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .announcement-box,
    .event-box {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 94%;
    }

    .arsp-hero-left h1 {
        font-size: 27px;
    }

    .arsp-slider {
        height: 220px;
        border-radius: 14px;
    }

    .slide-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px;
    }

    .slide-caption h3 {
        font-size: 16px;
    }

    .slide-caption p {
        font-size: 12px;
    }

    .counter-item h3 {
        font-size: 28px;
    }

    .newsletter-box {
        padding: 25px;
    }
}


/* ==========================================
   MANAGEMENT BODY PAGE
========================================== */

.page-banner{
    background:linear-gradient(135deg,#003366,#0b7a3b);
    padding:70px 20px;
    color:#fff;
    text-align:center;
}

.page-banner h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
}

.page-banner p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
    font-size:17px;
    color:#f5f5f5;
}

.breadcrumb{
    margin-top:20px;
    font-size:15px;
}

.breadcrumb a{
    color:#FFD54F;
    text-decoration:none;
}

.breadcrumb span{
    margin:0 8px;
}

/* ========================================== */

.management-section,
.chief-advisor-section{
    padding:80px 0;
    background:#f7f9fc;
}

.management-section:nth-child(even){
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title span{
    display:inline-block;
    color:#0b7a3b;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:36px;
    color:#003366;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ========================================== */

.management-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.management-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    padding:25px;
}

.management-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.management-photo{
    width:160px;
    height:160px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #0b7a3b;
}

.management-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.management-card h3{
    margin-top:20px;
    font-size:22px;
    color:#003366;
}

.management-card h4{
    margin-top:8px;
    color:#0b7a3b;
    font-size:17px;
    font-weight:700;
}

.management-card .qualification{
    margin-top:12px;
    color:#555;
    font-size:14px;
    line-height:1.7;
}

.management-card .qualification i{
    color:#f4b400;
    margin-right:6px;
}

/* ==========================================
Chief Advisor
========================================== */

.chief-advisor-card{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:45px;
    align-items:center;
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.chief-photo{
    width:300px;
    height:300px;
    margin:auto;
    border-radius:20px;
    overflow:hidden;
    border:6px solid #0b7a3b;
}

.chief-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.chief-details h2{
    color:#003366;
    font-size:34px;
    margin-bottom:12px;
}

.chief-details h4{
    color:#0b7a3b;
    font-size:22px;
    margin-bottom:18px;
}

.chief-details .qualification{
    color:#444;
    margin-bottom:18px;
}

.chief-details .description{
    line-height:1.9;
    color:#666;
    text-align:justify;
}

/* ========================================== */

.empty-box{
    background:#fff;
    padding:60px;
    border-radius:18px;
    text-align:center;
    color:#888;
    font-size:18px;
}

/* ==========================================
Responsive
========================================== */

@media(max-width:992px){

.chief-advisor-card{
grid-template-columns:1fr;
text-align:center;
}

.chief-photo{
width:240px;
height:240px;
}

}

@media(max-width:768px){

.page-banner{
padding:55px 20px;
}

.page-banner h1{
font-size:32px;
}

.section-title h2{
font-size:30px;
}

.management-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.management-grid{
grid-template-columns:1fr;
}

.management-photo{
width:140px;
height:140px;
}

.management-card{
padding:20px;
}

.chief-photo{
width:200px;
height:200px;
}

.chief-details h2{
font-size:28px;
}

.chief-details h4{
font-size:18px;
}

}


.page-banner{
    background:#073763;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.page-banner h1{
    font-size:40px;
    margin-bottom:10px;
}

.page-banner p{
    max-width:700px;
    margin:auto;
    opacity:.9;
}

.join-section{
    padding:70px 20px;
    background:#f5f7fb;
}

.join-card{
    max-width:800px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    text-align:center;
}

.join-card h2{
    color:#073763;
    margin-bottom:20px;
}

.join-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:18px;
}

.join-btn{
    display:inline-block;
    margin-top:15px;
    background:#0b7a3b;
    color:#fff;
    padding:14px 30px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.join-btn:hover{
    background:#095f2e;
}

@media(max-width:768px){

    .page-banner{
        padding:50px 15px;
    }

    .page-banner h1{
        font-size:30px;
    }

    .join-card{
        padding:25px;
    }

}
/*==========================
DONATE PAGE
==========================*/

.donate-hero{
    background:linear-gradient(135deg,#0b3d91,#0d6efd);
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.donate-hero h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.donate-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    opacity:.95;
}

.donate-section{
    padding:70px 0;
    background:#f5f7fb;
}

.donate-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.donate-card,
.donate-form-box{
    background:#fff;
    border-radius:14px;
    padding:28px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.donate-card h2,
.donate-form-box h2{
    color:#0b3d91;
    margin-bottom:15px;
    font-size:26px;
}

.donate-card p{
    color:#555;
    line-height:1.8;
}

.qr-box{
    text-align:center;
    margin:20px 0;
}

.qr-box img{
    width:220px;
    max-width:100%;
    border:6px solid #f3f3f3;
    border-radius:12px;
}

.bank-list{
    margin:0;
    padding:0;
    list-style:none;
}

.bank-list li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    color:#444;
}

.copy-btn{
    margin-top:15px;
    background:#0b3d91;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.copy-btn:hover{
    background:#082b65;
}

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

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:13px 15px;
    border:1px solid #d7d7d7;
    border-radius:8px;
    outline:none;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#0b3d91;
    box-shadow:0 0 0 3px rgba(11,61,145,.12);
}

.form-group textarea{
    resize:vertical;
}

.donate-submit-btn{
    width:100%;
    padding:15px;
    border:none;
    background:#28a745;
    color:#fff;
    font-size:17px;
    font-weight:700;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.donate-submit-btn:hover{
    background:#1f8a38;
}

@media(max-width:992px){

    .donate-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .donate-hero{
        padding:55px 20px;
    }

    .donate-hero h1{
        font-size:32px;
    }

    .donate-hero p{
        font-size:16px;
    }

    .donate-card,
    .donate-form-box{
        padding:22px;
    }

}

@media(max-width:480px){

    .donate-hero h1{
        font-size:27px;
    }

    .donate-card h2,
    .donate-form-box h2{
        font-size:22px;
    }

    .qr-box img{
        width:180px;
    }

    .copy-btn,
    .donate-submit-btn{
        font-size:15px;
    }

}

.success-section{
    background:#f5f7fb;
    padding:70px 0;
}

.success-card{
    max-width:700px;
    margin:auto;
    background:#fff;
    border-radius:15px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.success-icon{
    text-align:center;
    font-size:70px;
    color:#28a745;
    margin-bottom:20px;
}

.success-card h1{
    text-align:center;
    color:#0b3d91;
    margin-bottom:10px;
}

.success-card p{
    text-align:center;
    color:#555;
    margin-bottom:30px;
}

.success-table{
    width:100%;
    border-collapse:collapse;
}

.success-table th,
.success-table td{
    border:1px solid #e5e5e5;
    padding:12px;
}

.success-table th{
    width:35%;
    background:#f8f8f8;
    text-align:left;
}

.status-pending{
    background:#ffc107;
    color:#000;
    padding:5px 12px;
    border-radius:20px;
    font-weight:bold;
}

.success-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.print-btn,
.home-btn,
.donate-btn2{
    padding:12px 22px;
    border:none;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    cursor:pointer;
}

.print-btn{
    background:#0b3d91;
    color:#fff;
}

.home-btn{
    background:#198754;
    color:#fff;
}

.donate-btn2{
    background:#dc3545;
    color:#fff;
}

@media(max-width:768px){

.success-card{
    padding:20px;
}

.success-table th,
.success-table td{
    font-size:14px;
}

}

/* ================= PAGE BANNER ================= */
.page-banner {
    background: linear-gradient(135deg, #073763, #0b7a3b);
    color: #fff;
    padding: 75px 0;
}

.page-banner-content {
    max-width: 760px;
}

.page-banner-content span {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffd43b;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 13px;
}

.page-banner-content h1 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.page-banner-content p {
    color: #e5e7eb;
    font-size: 16px;
    line-height: 1.8;
}

/* ================= BREADCRUMB ================= */
.breadcrumb-section {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 14px;
}

.breadcrumb-box a {
    color: #073763;
    font-weight: 700;
}

.breadcrumb-box a:hover {
    color: #0b7a3b;
}

/* ================= GALLERY SEARCH ================= */
.gallery-search-section {
    background: #f4f7fb;
    padding: 30px 0 0;
}

.gallery-search-form {
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    display: flex;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.gallery-search-form input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 9px;
    padding: 14px 15px;
    font-size: 14px;
    outline: none;
}

.gallery-search-form input:focus {
    border-color: #0b7a3b;
}

.gallery-search-form button,
.reset-search {
    border: none;
    background: #073763;
    color: #fff;
    padding: 14px 20px;
    border-radius: 9px;
    font-weight: 700;
    cursor: pointer;
}

.reset-search {
    background: #e63946;
    display: inline-flex;
    align-items: center;
}

/* ================= GALLERY PAGE ================= */
.gallery-page-section {
    background: #f4f7fb;
    padding: 55px 0;
}

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

.gallery-album-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.gallery-album-card:hover {
    transform: translateY(-6px);
}

.album-image {
    height: 235px;
    position: relative;
    overflow: hidden;
}

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

.gallery-album-card:hover .album-image img {
    transform: scale(1.08);
}

.album-photo-count {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: rgba(7,55,99,0.9);
    color: #fff;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.album-content {
    padding: 22px;
}

.album-content h3 {
    color: #073763;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.35;
}

.album-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 18px;
}

.album-meta i {
    color: #0b7a3b;
    width: 18px;
}

.view-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b7a3b;
    color: #fff;
    padding: 11px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.view-gallery-btn:hover {
    background: #073763;
}

/* ================= NO GALLERY ================= */
.no-gallery-found {
    background: #fff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.no-gallery-found i {
    font-size: 52px;
    color: #0b7a3b;
    margin-bottom: 15px;
}

.no-gallery-found h3 {
    color: #073763;
    font-size: 24px;
    margin-bottom: 8px;
}

.no-gallery-found p {
    color: #6b7280;
    margin-bottom: 18px;
}

.no-gallery-found a {
    background: #073763;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
}

/* ================= PAGINATION ================= */
.pagination-section {
    background: #f4f7fb;
    padding: 0 0 55px;
}

.pagination-box {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-box a {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: #fff;
    color: #073763;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.pagination-box a.active,
.pagination-box a:hover {
    background: #0b7a3b;
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .gallery-album-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-banner-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .gallery-search-form {
        flex-direction: column;
    }

    .gallery-search-form button,
    .reset-search {
        justify-content: center;
        text-align: center;
    }

    .gallery-album-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        padding: 55px 0;
    }

    .page-banner-content h1 {
        font-size: 30px;
    }

    .album-image {
        height: 220px;
    }
}


.album-info-section {
    background: #f4f7fb;
    padding: 35px 0;
}

.album-info-box {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.album-info-box h2 {
    color: #073763;
    font-size: 28px;
    margin-bottom: 12px;
}

.album-info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #6b7280;
}

.album-info-meta i {
    color: #0b7a3b;
    margin-right: 6px;
}

.back-gallery-btn {
    background: #073763;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.back-gallery-btn:hover {
    background: #0b7a3b;
}

.gallery-details-section {
    background: #f4f7fb;
    padding: 30px 0 70px;
}

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

.gallery-details-item {
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    background: #fff;
}

.gallery-details-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-details-item:hover img {
    transform: scale(1.08);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 88vh;
    border-radius: 10px;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: none;
    background: rgba(255,255,255,0.16);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 20px;
}

.lightbox-close {
    top: 22px;
    right: 22px;
}

.lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #0b7a3b;
}

@media (max-width: 992px) {
    .gallery-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .album-info-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .gallery-details-grid {
        grid-template-columns: 1fr;
    }

    .gallery-details-item {
        height: 220px;
    }

    .album-info-box h2 {
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}


/* ================= RTSE HERO SECTION ================= */

.rtse-hero {
    background: linear-gradient(135deg, #062f5f, #0b7a3b);
    padding: 85px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.rtse-hero::before {
    content: "RTSE";
    position: absolute;
    right: -40px;
    top: 20px;
    font-size: 160px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    letter-spacing: 8px;
}

.rtse-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.rtse-badge {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 18px;
}

.rtse-left h1 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 18px;
}

.rtse-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #e6edf5;
    max-width: 650px;
    margin-bottom: 28px;
}

.rtse-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.rtse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 9px;
    background: #ffffff;
    color: #073763;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.rtse-btn.primary {
    background: #ffd43b;
    color: #111827;
}

.rtse-btn:hover {
    transform: translateY(-3px);
    background: #e63946;
    color: #ffffff;
}

/* ================= CANDIDATE LOGIN CARD ================= */

.rtse-login-card {
    background: #ffffff;
    color: #1f2937;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
    position: relative;
}

.rtse-login-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border-top: 6px solid #ffd43b;
    pointer-events: none;
}

.rtse-login-card h2 {
    color: #073763;
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 900;
}

.rtse-login-card form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rtse-login-card label {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

.rtse-login-card input {
    width: 100%;
    padding: 14px 15px;
    border-radius: 9px;
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 15px;
    background: #f9fafb;
    transition: 0.25s ease;
}

.rtse-login-card input:focus {
    border-color: #0b7a3b;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11,122,59,0.12);
}

.rtse-login-card button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 9px;
    border: none;
    background: #0b7a3b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s ease;
}

.rtse-login-card button:hover {
    background: #073763;
    transform: translateY(-2px);
}

.rtse-login-card a {
    margin-top: 10px;
    text-align: center;
    color: #e63946;
    font-size: 14px;
    font-weight: 700;
}

.rtse-login-card a:hover {
    color: #073763;
}
/* =====================================================
   RTSE ACTION SECTION
===================================================== */

.rtse-actions{
    padding:70px 0;
    background:#f5f7fb;
}

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

.action-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    color:#222;
    border-top:5px solid transparent;
}

.action-card:hover{
    transform:translateY(-8px);
    border-top:5px solid #0b7a3b;
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.action-card i{
    font-size:45px;
    color:#0b7a3b;
    margin-bottom:18px;
}

.action-card h3{
    font-size:22px;
    color:#073763;
    margin-bottom:12px;
    font-weight:700;
}

.action-card p{
    color:#666;
    font-size:15px;
    line-height:1.7;
}

/* =====================================================
   ABOUT RTSE
===================================================== */

.about-rtse{
    padding:80px 0;
    background:#ffffff;
}

.objectives-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:45px;
}

.objective-card{
    background:#ffffff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.objective-card:hover{
    transform:translateY(-6px);
}

.objective-card i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#e9f8ef;
    color:#0b7a3b;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    flex-shrink:0;
}

.objective-card h3{
    color:#073763;
    font-size:22px;
    margin-bottom:10px;
}

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

/* =====================================================
   SECTION TITLE
===================================================== */

.about-rtse .section-title{
    text-align:center;
}

.about-rtse .section-title span{
    display:inline-block;
    color:#0b7a3b;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:12px;
    text-transform:uppercase;
}

.about-rtse .section-title h2{
    color:#073763;
    font-size:38px;
    margin-bottom:15px;
    font-weight:800;
}

.about-rtse .section-title p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

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

@media(max-width:992px){

.action-grid{
grid-template-columns:repeat(2,1fr);
}

.objectives-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.rtse-actions,
.about-rtse{
padding:55px 0;
}

.action-grid{
grid-template-columns:1fr;
}

.action-card{
padding:28px 20px;
}

.objective-card{
flex-direction:column;
text-align:center;
}

.objective-card i{
margin:auto;
}

.about-rtse .section-title h2{
font-size:30px;
}

}

@media(max-width:480px){

.action-card h3{
font-size:20px;
}

.about-rtse .section-title h2{
font-size:26px;
}

.objective-card h3{
font-size:20px;
}

}

/* =====================================================
   RTSE INFO SECTION: NOTICE + EVENT + CONTACT
===================================================== */

.rtse-info-section {
    padding: 75px 0;
    background: #f5f7fb;
}

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

.info-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid #0b7a3b;
    transition: 0.35s ease;
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.info-box h3 {
    color: #073763;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.info-box p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.info-box span {
    display: inline-block;
    color: #0b7a3b;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.info-box small {
    display: block;
    color: #6b7280;
    font-size: 14px;
    margin-top: 6px;
}

.info-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: #e63946;
    color: #ffffff;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.info-box a:hover {
    background: #073763;
    transform: translateY(-2px);
}

.info-box i {
    color: #0b7a3b;
    margin-right: 8px;
}

/* =====================================================
   RTSE PAGE RESPONSIVE FINAL
===================================================== */

@media (max-width: 992px) {
    .rtse-hero-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .rtse-left h1 {
        font-size: 38px;
    }

    .rtse-login-card {
        max-width: 560px;
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .rtse-hero {
        padding: 60px 0;
    }

    .rtse-hero::before {
        font-size: 95px;
        right: -25px;
        top: 25px;
    }

    .rtse-left h1 {
        font-size: 31px;
    }

    .rtse-left p {
        font-size: 15px;
    }

    .rtse-buttons {
        flex-direction: column;
    }

    .rtse-btn {
        width: 100%;
    }

    .rtse-login-card {
        padding: 25px;
        border-radius: 18px;
    }

    .rtse-login-card h2 {
        font-size: 24px;
    }

    .rtse-info-section {
        padding: 55px 0;
    }

    .info-box {
        padding: 24px;
    }

    .info-box h3 {
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .rtse-left h1 {
        font-size: 27px;
    }

    .rtse-badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .rtse-login-card {
        padding: 20px;
    }

    .info-box {
        padding: 20px;
    }
}
