/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(44, 62, 80, 0.95);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
    transition: transform 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05) rotate(-5deg);
}

.logo-icon {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: color 0.3s ease;
}

.brand:hover .brand-text {
    color: #3498db;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    padding: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #3498db;
}

/* ============================================
   DROPDOWN
   ============================================ */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2c3e50;
    min-width: 200px;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    display: block;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-left-color: #3498db;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle .hamburger {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   HOMEPAGE SLIDER - FULL SCREEN
   ============================================ */
.slider-fullscreen {
    height: 100vh !important;
    min-height: 600px;
    padding: 0 !important;
    background: rgba(0,0,0,0.85);
    position: relative;
}

.slider-fullscreen .slider-container {
    height: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.slider-fullscreen .slider {
    height: 100%;
    position: relative;
}

.slider-fullscreen .slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider-fullscreen .slide.active {
    display: block;
}

.slider-fullscreen .slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slider-fullscreen .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.slider-fullscreen .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
    padding: 2rem;
}

.slider-fullscreen .slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: slideUp 0.8s ease;
}

.slider-fullscreen .slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-slide {
    display: inline-block;
    padding: 1rem 3rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: slideUp 1.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-slide:hover {
    background: transparent;
    border-color: #fff;
    transform: scale(1.05);
}

.slider-fullscreen .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1.5rem 1.8rem;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-fullscreen .slider-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-fullscreen .slider-btn.prev {
    left: 30px;
}

.slider-fullscreen .slider-btn.next {
    right: 30px;
}

.slider-fullscreen .slider-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
    z-index: 5;
}

.slider-fullscreen .dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-fullscreen .dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.slider-fullscreen .dot.active {
    background: #3498db;
    border-color: #fff;
    transform: scale(1.2);
}

/* ============================================
   BLOG SECTION (Homepage)
   ============================================ */
.blog-section {
    padding: 4rem 0;
    background: #f9f9f9;
    position: relative;
    z-index: 1;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    color: #2c3e50;
    position: relative;
}

.blog-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 0.5rem auto 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 1.8rem;
}

.blog-content h3 {
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-content p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2980b9;
    text-decoration: underline;
}

.btn-view-all {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0.8rem 3rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-all:hover {
    background: #2980b9;
    transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #2c3e50;
    color: #fff;
    padding: 2.5rem 0;
    text-align: center;
    margin-top: 0;
}

/* ============================================
   PAGE STYLES (Shared)
   ============================================ */
.page-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.92);
    margin-top: 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.breadcrumb {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   ABOUT US PAGE
   ============================================ */
.about-us-page {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.92);
    margin-top: 80px;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.about-us-image {
    position: sticky;
    top: 100px;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-us-image img:hover {
    transform: scale(1.02);
}

.about-us-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #3498db;
    transition: all 0.3s ease;
}

.about-section:hover {
    background: #f0f7ff;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.1);
}

.about-section h2 {
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: #3498db;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

.about-section p {
    color: #555;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-section p strong {
    color: #2c3e50;
}

/* Core Values */
.core-values {
    margin: 3rem 0;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.core-values h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.core-values h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #3498db;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    display: block;
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.value-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   STATS (Shared)
   ============================================ */
.about-stats,
.finances-stats,
.ministry-stats,
.training-stats,
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.about-stats .stat-item,
.finances-stats .stat-item,
.ministry-stats .stat-item,
.training-stats .stat-item,
.gallery-stats .stat-item {
    text-align: center;
}

.about-stats .stat-number,
.finances-stats .stat-number,
.ministry-stats .stat-number,
.training-stats .stat-number,
.gallery-stats .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #3498db;
}

.about-stats .stat-label,
.finances-stats .stat-label,
.ministry-stats .stat-label,
.training-stats .stat-label,
.gallery-stats .stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* ============================================
   CTA (Shared)
   ============================================ */
.about-cta,
.finance-cta,
.ministry-cta,
.training-cta,
.gallery-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 3.5rem;
    border-radius: 16px;
    text-align: center;
}

.about-cta h2,
.finance-cta h2,
.ministry-cta h2,
.training-cta h2,
.gallery-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.about-cta p,
.finance-cta p,
.ministry-cta p,
.training-cta p,
.gallery-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.about-cta .btn-primary,
.finance-cta .btn-primary,
.ministry-cta .btn-primary,
.training-cta .btn-primary,
.gallery-cta .btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.about-cta .btn-primary:hover,
.finance-cta .btn-primary:hover,
.ministry-cta .btn-primary:hover,
.training-cta .btn-primary:hover,
.gallery-cta .btn-primary:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transform: scale(1.05);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c3e50;
    transform: scale(1.05);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    padding: 4rem 0;
    background: rgba(249, 249, 249, 0.92);
    margin-top: 80px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-info > p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: #7f8c8d;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.success-message {
    padding: 1rem;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.error-message {
    padding: 1rem;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.map-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.map-container h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
}

/* ============================================
   TRAINING INFO BOX (Contact Page)
   ============================================ */
.training-info-box {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: #e8f4fd;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.training-info-box h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.training-info-box p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.training-info-box .training-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.training-info-box .training-link:hover {
    background: #229954;
    transform: scale(1.05);
}

/* ============================================
   FINANCES PAGE
   ============================================ */
.finances-page {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.92);
    margin-top: 80px;
}

.finances-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.finances-intro-text h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.finances-intro-text p {
    color: #555;
    line-height: 1.8;
}

.finances-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.finances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.finance-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.finance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.12);
    border-color: #3498db;
}

.finance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.finance-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.finance-card p {
    color: #7f8c8d;
    margin-bottom: 1.2rem;
}

.finance-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.finance-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* ============================================
   PROJECT SLIDER (Finances)
   ============================================ */
.project-slider-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.project-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f9fa;
    min-height: 400px;
}

.project-slider {
    position: relative;
}

.project-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    min-height: 400px;
    width: 100%;
}

.project-slide.active {
    display: grid;
}

.project-slide-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-slide-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-slide-image img:hover {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
}

.project-badge span {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.project-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(255,255,255,0.3);
    z-index: 2;
}

.project-progress-bar {
    height: 100%;
    background: #27ae60;
    transition: width 0.5s ease;
}

.project-slide-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    background: #fff;
}

.project-category {
    display: inline-block;
    padding: 0.2rem 1rem;
    background: #3498db;
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    width: fit-content;
}

.project-slide-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.project-slide-content p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.project-quote {
    font-style: italic;
    color: #7f8c8d;
    padding: 0.5rem 1rem;
    border-left: 3px solid #3498db;
    margin: 0.8rem 0;
    font-size: 0.95rem;
}

.missionary-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 0.8rem 0;
    padding: 0.8rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 8px;
}

.missionary-detail {
    font-size: 0.9rem;
}

.missionary-detail strong {
    color: #2c3e50;
}

.missionary-detail span {
    color: #555;
}

.project-funding-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.project-raised {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.project-raised::before {
    content: '💰 ';
}

.project-goal {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.project-progress-bar-full {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.project-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.project-donate {
    text-align: center;
}

.btn-donate {
    display: inline-block;
    padding: 0.7rem 2.5rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.project-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
    border: none;
    padding: 1rem 1.2rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.project-slider-btn:hover {
    background: #3498db;
    color: #fff;
}

.project-slider-btn.prev {
    left: 15px;
}

.project-slider-btn.next {
    right: 15px;
}

.project-slider-dots {
    text-align: center;
    padding: 1.2rem 0 0.5rem;
}

.project-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-dot.active {
    background: #3498db;
    transform: scale(1.2);
}

.project-dot:hover {
    background: #3498db;
}

.download-form-container {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #e8f4fd;
}

.btn-download-form {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.btn-download-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

.download-form-text {
    margin-top: 0.8rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* ============================================
   ADOPTION FORM
   ============================================ */
.adoption-form-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.adoption-form-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.adoption-form-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.submission-summary {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.submission-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.submission-icon {
    font-size: 4rem;
    display: block;
}

.submission-title {
    color: #155724;
    font-size: 1.8rem;
    margin: 0.5rem 0;
}

.submission-message {
    color: #155724;
    font-size: 1.1rem;
}

.submission-id {
    color: #155724;
    font-size: 1rem;
}

.submission-confirmation {
    color: #155724;
    font-size: 0.9rem;
}

.submission-details {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.submission-details h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e8f4fd;
    padding-bottom: 0.8rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.summary-grid div {
    padding: 0.3rem 0;
}

.summary-notes {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.summary-notes p {
    margin-top: 0.3rem;
    color: #555;
}

.submission-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-print {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-print:hover {
    background: #1a252f;
    transform: scale(1.05);
}

.btn-back {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-back:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.adoption-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    grid-column: 1 / -1;
}

.form-section-title {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8f4fd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
}

.form-terms {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-terms label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.form-terms input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-terms span {
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1.5rem;
}

.btn-submit {
    padding: 1rem 4rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.form-security {
    margin-top: 0.8rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* ============================================
   BANK DETAILS
   ============================================ */
.bank-details {
    margin: 3rem 0;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.bank-details h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.bank-details h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #3498db;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.bank-intro {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.bank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.bank-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.12);
    border-color: #3498db;
}

.bank-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.bank-card h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.bank-info {
    margin-bottom: 1.5rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-label {
    color: #7f8c8d;
    font-weight: 500;
}

.bank-value {
    color: #2c3e50;
    font-weight: 600;
    text-align: right;
}

.bank-value.highlight {
    color: #3498db;
    font-size: 1.2rem;
}

.btn-copy {
    width: 100%;
    padding: 0.8rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-copy:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.btn-copy.copied {
    background: #27ae60;
}

.international-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    margin-top: 1rem;
}

.international-info h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.international-info > p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.swift-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.swift-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.swift-row:last-child {
    border-bottom: none;
}

.swift-label {
    color: #7f8c8d;
    font-weight: 500;
}

.swift-value {
    color: #2c3e50;
    font-weight: 600;
}

/* ============================================
   WHY GIVE
   ============================================ */
.why-give {
    margin: 3rem 0;
    padding: 3rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.why-give h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.why-give h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #3498db;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.give-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.give-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.give-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
}

.give-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    display: block;
}

.give-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.give-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PRAYER REQUEST
   ============================================ */
.prayer-request {
    margin: 3rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 16px;
    color: #fff;
}

.prayer-request h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.prayer-request > p {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.prayer-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.prayer-point {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.prayer-point:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.prayer-icon {
    font-size: 2rem;
    min-width: 45px;
}

.prayer-point p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   MINISTRY ARMS PAGE
   ============================================ */
.ministry-arms-page {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.92);
    margin-top: 80px;
}

.ministry-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.ministry-intro-text h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.ministry-intro-text p {
    color: #555;
    line-height: 1.8;
}

.ministry-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.ministry-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.ministry-card-detailed {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.ministry-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.12);
    border-color: #3498db;
}

.ministry-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f7ff;
    flex-shrink: 0;
}

.ministry-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ministry-card-detailed:hover .ministry-card-image img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.ministry-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ministry-card-detailed:hover .ministry-card-overlay {
    opacity: 1;
}

.ministry-card-icon {
    font-size: 3rem;
    color: #fff;
    transform: scale(0.5);
    transition: transform 0.5s ease;
}

.ministry-card-detailed:hover .ministry-card-icon {
    transform: scale(1);
}

.ministry-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.ministry-card-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.ministry-card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.95rem;
}

.ministry-products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.product-tag {
    display: inline-block;
    padding: 0.15rem 0.7rem;
    background: #e8f4fd;
    color: #2c3e50;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid #d4e9fa;
}

.ministry-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.ministry-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: #27ae60;
    color: #fff;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ministry-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.ministry-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* ============================================
   TRAINING INFORMATION SECTION
   ============================================ */
.training-info-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.training-info-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.training-info-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #3498db;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.training-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.training-info-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.training-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #3498db;
    background: #fff;
}

.training-info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.training-info-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.training-info-card p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.training-locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.location-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #e8f4fd;
    color: #2c3e50;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #d4e9fa;
    transition: all 0.3s ease;
}

.location-tag:hover {
    background: #3498db;
    color: #fff;
    transform: scale(1.05);
}

.btn-online-training {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    margin-top: 0.5rem;
}

.btn-online-training:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

/* ============================================
   FOCUS AREAS
   ============================================ */
.focus-areas {
    margin: 4rem 0;
    padding: 3rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.focus-areas h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.focus-areas h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 0.8rem auto 0;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.focus-card {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.1);
}

.focus-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.focus-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.focus-card p {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   TRAINING PAGE
   ============================================ */
.training-page {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.92);
    margin-top: 80px;
}

.training-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.training-intro-text h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.training-intro-text p {
    color: #555;
    line-height: 1.8;
}

.training-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.training-quote {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.training-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.training-quote cite {
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

/* ============================================
   TRAINING PAGE - DETAILED CARDS
   ============================================ */
.training-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.training-card-detailed {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.training-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.12);
    border-color: #3498db;
}

.training-card-detailed.featured {
    border-color: #f39c12;
    background: #fffbf5;
}

.training-card-detailed.featured:hover {
    border-color: #e67e22;
}

.training-card-icon {
    font-size: 2.5rem;
    min-width: 55px;
    text-align: center;
    background: #f0f7ff;
    padding: 0.8rem;
    border-radius: 10px;
    line-height: 1;
    flex-shrink: 0;
}

.training-card-content {
    flex: 1;
    min-width: 0;
}

.training-card-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.training-card-content p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.training-meta-detailed {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.training-meta-detailed span {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.training-duration {
    background: #e8f4fd;
    color: #2980b9;
}

.training-mode {
    background: #f0f7ff;
    color: #2c3e50;
}

.training-level {
    background: #fef3e2;
    color: #b9770e;
}

.featured-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: #f39c12;
    color: #fff;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.training-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.training-link:hover {
    color: #2980b9;
    transform: translateX(3px);
}

/* ============================================
   PROGRAM OVERVIEW TABLE
   ============================================ */
.program-overview {
    margin: 3rem 0;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.program-overview h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.program-overview h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #3498db;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-width: 600px;
}

.program-table thead {
    background: #2c3e50;
    color: #fff;
}

.program-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
}

.program-table tbody tr {
    transition: background 0.3s ease;
}

.program-table tbody tr:hover {
    background: #f8f9fa;
}

.program-table tbody tr:last-child td {
    border-bottom: none;
}

.program-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    margin: 3rem 0;
    padding: 3rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.testimonials h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #3498db;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    background: #fff;
}

.testimonial-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* ============================================
   RESPONSIVE - TRAINING PAGE
   ============================================ */

@media (max-width: 992px) {
    .training-grid-detailed {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .training-grid-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .training-card-detailed {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
    
    .training-card-icon {
        font-size: 2.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .training-meta-detailed {
        justify-content: center;
    }
    
    .program-overview {
        padding: 2rem 1rem;
    }
    
    .program-overview h2 {
        font-size: 1.8rem;
    }
    
    .program-table th,
    .program-table td {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .testimonials {
        padding: 2rem 1rem;
    }
    
    .testimonials h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .training-grid-detailed {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .training-card-detailed {
        padding: 1.2rem;
    }
    
    .training-card-content h3 {
        font-size: 1.1rem;
    }
    
    .training-card-content p {
        font-size: 0.9rem;
    }
    
    .training-meta-detailed span {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .program-overview {
        padding: 1.5rem 0.8rem;
    }
    
    .program-overview h2 {
        font-size: 1.5rem;
    }
    
    .program-table th,
    .program-table td {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .testimonials {
        padding: 1.5rem 1rem;
    }
    
    .testimonials h2 {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }


/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page {
    padding: 4rem 0;
    background: rgba(249, 249, 249, 0.92);
    margin-top: 80px;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.6rem 1.8rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 600;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}

.filter-btn.active:hover {
    background: #2980b9;
    border-color: #2980b9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.gallery-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

.gallery-category {
    display: inline-block;
    padding: 0.2rem 1rem;
    background: rgba(52, 152, 219, 0.8);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-view-btn {
    margin-top: 0.8rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(52, 152, 219, 0.8);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-view-btn {
    background: #3498db;
    transform: scale(1.05);
}

.gallery-view-btn .view-icon {
    margin-right: 0.3rem;
}

.gallery-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    grid-column: 1 / -1;
}

.gallery-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.gallery-empty h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.gallery-empty p {
    color: #7f8c8d;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    max-width: 90%;
}

.lightbox-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.lightbox-caption span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.lightbox-caption #lightbox-counter {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.lightbox-close:hover {
    color: #3498db;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(52, 152, 219, 0.6);
    color: #fff;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(44, 62, 80, 0.98);
        padding: 80px 2rem 2rem;
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 0;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav ul li a {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        display: block;
        border-radius: 8px;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .main-nav ul li a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .main-nav .dropdown-menu {
        position: static;
        background: rgba(255,255,255,0.05);
        padding-left: 1rem;
        border-radius: 8px;
        box-shadow: none;
        min-width: auto;
        animation: none;
        display: none;
    }
    
    .main-nav .dropdown-menu.open {
        display: block;
    }
    
    .main-nav .dropdown-menu li a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .main-nav .dropdown-menu li a:hover {
        border-left-color: #3498db;
    }
    
    .main-nav .dropdown-toggle i {
        font-size: 0.8rem;
    }
    
    .dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    /* Page layouts */
    .about-us-content {
        grid-template-columns: 1fr;
    }
    
    .about-us-image {
        position: relative;
        top: 0;
    }
    
    .about-us-image img {
        max-height: 300px;
        object-fit: cover;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .finances-intro {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .finances-intro-image {
        order: -1;
    }
    
    .finances-intro-image img {
        max-height: 250px;
        object-fit: cover;
    }
    
    .ministry-intro {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .ministry-intro-image {
        order: -1;
    }
    
    .ministry-intro-image img {
        max-height: 250px;
        object-fit: cover;
    }
    
    .ministry-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .training-intro {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .training-intro-image {
        order: -1;
    }
    
    .training-intro-image img {
        max-height: 250px;
        object-fit: cover;
    }
    
    .training-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bank-grid {
        grid-template-columns: 1fr;
    }
    
    .project-slide {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .project-slide-image {
        min-height: 300px;
    }
    
    .project-slide-image img {
        min-height: 300px;
        object-fit: cover !important;
    }
    
    .project-slide-content {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats,
    .finances-stats,
    .ministry-stats,
    .training-stats,
    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
    
    .slider-fullscreen .slide-content h2 {
        font-size: 2.8rem;
    }
    
    .slider-fullscreen .slide-content p {
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .logo-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon {
        font-size: 1.4rem;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .slider-fullscreen .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .slider-fullscreen .slide-content p {
        font-size: 1rem;
    }
    
    .slider-fullscreen .slider-btn {
        width: 45px;
        height: 45px;
        padding: 0;
        font-size: 1.2rem;
    }
    
    .slider-fullscreen .slider-btn.prev {
        left: 15px;
    }
    
    .slider-fullscreen .slider-btn.next {
        right: 15px;
    }
    
    .btn-slide {
        padding: 0.7rem 2rem;
        font-size: 0.9rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-section h2 {
        font-size: 2rem;
    }
    
    .ministry-grid-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ministry-card-image {
        height: 200px;
    }
    
    .ministry-card-content {
        padding: 1.2rem;
    }
    
    .ministry-card-content h3 {
        font-size: 1.1rem;
    }
    
    /* Training Info Section - Mobile */
    .training-info-section {
        padding: 1.5rem;
    }
    
    .training-info-section h2 {
        font-size: 1.8rem;
    }
    
    .training-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .training-info-card {
        padding: 1.5rem;
    }
    
    .training-info-card h3 {
        font-size: 1.2rem;
    }
    
    .training-info-icon {
        font-size: 2.5rem;
    }
    
    .location-tag {
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .btn-online-training {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    .focus-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .focus-areas {
        padding: 2rem 1rem;
    }
    
    .focus-areas h2 {
        font-size: 1.8rem;
    }
    
    .about-stats,
    .finances-stats,
    .ministry-stats,
    .training-stats,
    .gallery-stats {
        grid-template-columns: 1fr 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .about-stats .stat-number,
    .finances-stats .stat-number,
    .ministry-stats .stat-number,
    .training-stats .stat-number,
    .gallery-stats .stat-number {
        font-size: 2.2rem;
    }
    
    .project-slider-section {
        padding: 1.5rem;
    }
    
    .project-slider-container {
        min-height: 350px;
    }
    
    .project-slide {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        display: none !important;
        min-height: auto !important;
    }
    
    .project-slide.active {
        display: grid !important;
    }
    
    .project-slide-image {
        min-height: 250px !important;
        height: 250px !important;
        width: 100% !important;
        grid-row: 1 !important;
        border-radius: 12px 12px 0 0;
        background: #1a1a2e;
    }
    
    .project-slide-image img {
        min-height: 250px !important;
        height: 250px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    
    .project-slide-content {
        padding: 1.5rem !important;
        grid-row: 2 !important;
        background: #fff;
        border-radius: 0 0 12px 12px;
    }
    
    .project-slide-content h3 {
        font-size: 1.2rem;
    }
    
    .project-slide-content p {
        font-size: 0.95rem;
    }
    
    .project-badge {
        top: 10px !important;
        left: 10px !important;
    }
    
    .project-badge span {
        font-size: 0.6rem !important;
        padding: 0.2rem 0.8rem !important;
    }
    
    .project-progress {
        height: 4px !important;
    }
    
    .project-slider-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
        padding: 0.5rem !important;
    }
    
    .project-slider-btn.prev {
        left: 8px !important;
    }
    
    .project-slider-btn.next {
        right: 8px !important;
    }
    
    .project-dot {
        width: 10px !important;
        height: 10px !important;
        margin: 0 5px !important;
    }
    
    .project-funding-info {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .missionary-info {
        grid-template-columns: 1fr;
        padding: 0.6rem;
    }
    
    .missionary-detail {
        font-size: 0.85rem;
    }
    
    .btn-donate {
        padding: 0.6rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .bank-details {
        padding: 2rem 1rem;
    }
    
    .bank-details h2 {
        font-size: 1.8rem;
    }
    
    .bank-card {
        padding: 1.5rem;
    }
    
    .bank-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.2rem;
    }
    
    .bank-value {
        text-align: center;
    }
    
    .swift-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.2rem;
    }
    
    .why-give {
        padding: 2rem 1rem;
    }
    
    .why-give h2 {
        font-size: 1.8rem;
    }
    
    .give-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .prayer-request {
        padding: 2rem 1rem;
    }
    
    .prayer-request h2 {
        font-size: 1.8rem;
    }
    
    .prayer-points {
        grid-template-columns: 1fr;
    }
    
    .finance-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .finance-cta h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .adoption-form-section {
        padding: 1.5rem;
    }
    
    .submission-summary {
        padding: 1.5rem;
    }
    
    .submission-details {
        padding: 1rem;
    }
    
    .btn-print,
    .btn-back {
        width: 100%;
        text-align: center;
    }
    
    .btn-submit {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-info h3 {
        font-size: 1.1rem;
    }
    
    .gallery-info p {
        font-size: 0.85rem;
    }
    
    .gallery-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .gallery-cta h2 {
        font-size: 1.6rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
    
    .lightbox-caption h3 {
        font-size: 1.1rem;
    }
    
    .lightbox-caption span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-placeholder {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon {
        font-size: 1.2rem;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .slider-fullscreen .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slider-fullscreen .slide-content p {
        font-size: 0.9rem;
    }
    
    .slider-fullscreen .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .btn-slide {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .finances-grid {
        grid-template-columns: 1fr;
    }
    
    .give-grid {
        grid-template-columns: 1fr;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .ministry-card-image {
        height: 180px;
    }
    
    .ministry-card-content {
        padding: 1rem;
    }
    
    .ministry-card-content p {
        font-size: 0.9rem;
    }
    
    /* Training Info Section - Small Mobile */
    .training-info-section {
        padding: 1rem;
    }
    
    .training-info-section h2 {
        font-size: 1.5rem;
    }
    
    .training-info-card {
        padding: 1.2rem;
    }
    
    .training-info-card h3 {
        font-size: 1.1rem;
    }
    
    .training-info-card p {
        font-size: 0.9rem;
    }
    
    .training-info-icon {
        font-size: 2rem;
    }
    
    .location-tag {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }
    
    .btn-online-training {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .about-stats,
    .finances-stats,
    .ministry-stats,
    .training-stats,
    .gallery-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .about-stats .stat-number,
    .finances-stats .stat-number,
    .ministry-stats .stat-number,
    .training-stats .stat-number,
    .gallery-stats .stat-number {
        font-size: 2rem;
    }
    
    .project-slide-image {
        min-height: 200px !important;
        height: 200px !important;
    }
    
    .project-slide-image img {
        min-height: 200px !important;
        height: 200px !important;
        object-fit: cover !important;
    }
    
    .project-slide-content {
        padding: 1rem !important;
    }
    
    .project-slide-content h3 {
        font-size: 1rem !important;
    }
    
    .project-slide-content p {
        font-size: 0.85rem !important;
    }
    
    .project-quote {
        font-size: 0.8rem !important;
        padding: 0.3rem 0.6rem;
    }
    
    .project-category {
        font-size: 0.65rem !important;
        padding: 0.15rem 0.8rem;
    }
    
    .project-slider-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
        padding: 0.3rem !important;
    }
    
    .project-slider-btn.prev {
        left: 5px !important;
    }
    
    .project-slider-btn.next {
        right: 5px !important;
    }
    
    .project-dot {
        width: 8px !important;
        height: 8px !important;
        margin: 0 3px !important;
    }
    
    .btn-donate {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .project-badge span {
        font-size: 0.5rem !important;
        padding: 0.15rem 0.6rem !important;
    }
    
    .missionary-detail {
        font-size: 0.75rem;
    }
    
    .main-nav {
        width: 100%;
        max-width: 100%;
        padding: 70px 1.5rem 1.5rem;
    }
    
    .main-nav ul li a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .bank-icon {
        font-size: 2.5rem;
    }
    
    .bank-value.highlight {
        font-size: 1rem;
    }
    
    .international-info {
        padding: 1.5rem;
    }
    
    .swift-info {
        padding: 1rem;
    }
    
    .finance-cta {
        padding: 2rem 1rem;
    }
    
    .finance-cta h2 {
        font-size: 1.3rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .adoption-form-title {
        font-size: 1.6rem;
    }
    
    .submission-title {
        font-size: 1.4rem;
    }
    
    .btn-download-form {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .gallery-item {
        aspect-ratio: 1/1;
    }
    
    .gallery-filter {
        gap: 0.3rem;
    }
    
    .filter-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .gallery-cta {
        padding: 2rem 1rem;
    }
    
    .gallery-cta h2 {
        font-size: 1.3rem;
    }
    
    .gallery-cta .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-close {
        font-size: 2rem;
        top: 5px;
        right: 10px;
    }
    
    .lightbox-content img {
        max-height: 60vh;
    }
}