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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

body.loaded {
    animation: fadeIn 0.5s ease-in;
}

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

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    width: 45px;
    height: 45px;
}

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

.logo-main {
    font-size: 1.1rem;
    font-weight: bold;
    color: #dc2626;
    line-height: 1;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #dc2626;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #dc2626;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.donate-btn {
    background: #dc2626 !important;
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    font-size: 0.9rem;
}

.donate-btn:hover {
    background: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    background-color: #dc2626;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 650px;
    color: white;
    animation: slideInUp 1s ease-out 0.5s both;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    transform: translateY(-50%);
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.prev-btn i, .next-btn i {
    font-size: 1.2rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slide Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: #fff;
    color: #dc2626;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #dc2626;
    transform: translateY(-2px);
}

/* Quick Actions */
.quick-actions {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.action-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-top: 4px solid #dc2626;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s;
}

.action-card:hover::before {
    left: 100%;
}

.action-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
}

.action-card.emergency {
    border-top-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2, #ffffff);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1) rotate(5deg);
}

.action-card.emergency .action-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: pulse 2s infinite;
}

.action-icon i {
    font-size: 2rem;
    color: white;
}

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.action-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.action-stats {
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.action-stats span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.action-stats i {
    color: #dc2626;
    font-size: 0.8rem;
}

.action-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #dc2626;
    border-radius: 25px;
    background: transparent;
}

.action-link:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
}

.emergency-link {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    animation: glow 2s ease-in-out infinite alternate;
}

.emergency-link:hover {
    background: #dc2626;
    border-color: #dc2626;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px #ef4444;
    }
    to {
        box-shadow: 0 0 20px #ef4444, 0 0 30px #ef4444;
    }
}

/* Featured Programs Section */
.featured-programs {
    padding: 100px 0;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
}

.featured-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.3));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.featured-badge {
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.featured-content {
    padding: 2rem;
}

.featured-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.featured-stats span {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-stats i {
    color: #dc2626;
    font-size: 0.8rem;
}

.featured-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    padding: 0.8rem 0;
    border-bottom: 2px solid transparent;
}

.featured-link:hover {
    border-bottom-color: #dc2626;
    transform: translateX(5px);
}

.featured-link::after {
    content: '→';
    transition: transform 0.3s;
}

.featured-link:hover::after {
    transform: translateX(5px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.point i {
    color: #dc2626;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-top: 4px solid #dc2626;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.service-card li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    color: #dc2626;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-btn {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.service-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: white;
}

.programs-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #dc2626;
    color: #dc2626;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.15s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #dc2626;
    color: white;
}

.tab-pane {
    display: none;
    opacity: 0;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    animation: fadeInFast 0.2s ease-in-out;
}

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

.program-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.program-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.program-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.program-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #dc2626;
    font-size: 1.2rem;
    width: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #dc2626;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-top: 0.2rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.contact-form button {
    background: #dc2626;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.contact-form button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #dc2626;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #dc2626;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #dc2626;
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #b91c1c;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #ccc;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #dc2626;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.history-section {
    margin-bottom: 5rem;
}

.history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.history-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.leadership-section {
    background: #f8f9fa;
    padding: 5rem 0;
    margin: 5rem -20px;
    border-radius: 15px;
}

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

.leader-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.leader-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.leader-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.position {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1rem;
}

.principles-section {
    margin-bottom: 5rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-left: 4px solid #dc2626;
}

.principle-card:hover {
    transform: translateY(-5px);
}

.principle-card i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.principle-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Goals Section */
.goals-section {
    margin-bottom: 5rem;
}

.goals-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.goals-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.achievements-section {
    background: #f8f9fa;
    padding: 5rem 0;
    margin: 5rem -20px;
    border-radius: 15px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 1rem;
}

.achievement-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* COVID Activities Styles */
.covid-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 2rem;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.covid-activities {
    padding: 80px 0;
    background: #f8f9fa;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 4px solid #dc2626;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.activity-icon i {
    font-size: 1.8rem;
    color: white;
}

.activity-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.activity-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.activity-card ul {
    list-style: none;
    padding: 0;
}

.activity-card li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.activity-card li::before {
    content: '✓';
    color: #dc2626;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.covid-impact {
    padding: 80px 0;
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #dc2626;
    transition: transform 0.3s;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 1rem;
}

.impact-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.volunteer-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
}

.volunteer-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.story-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.role {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Timeline Styles */
.activities-timeline {
    padding: 80px 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dc2626;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 0 2rem;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-content h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #f8f9fa;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 10px solid #f8f9fa;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* Acknowledgment Section */
.covid-acknowledgment {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.acknowledgment-content h2 {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 2rem;
}

.acknowledgment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.covid-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.nav-menu .active {
    color: #dc2626;
    font-weight: 600;
}

/* Donation Page Styles */
.donation-section {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.donation-section .section-header h1 {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: bold;
}

.donation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.donation-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.donation-card:hover {
    transform: translateY(-10px);
}

.card-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-header h2 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.card-content {
    padding: 2.5rem;
}

.card-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.bank-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.bank-details h3 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.detail-item .label {
    font-weight: 600;
    color: #333;
}

.detail-item .value {
    color: #666;
    font-weight: 500;
    text-align: right;
}

.qr-section {
    text-align: center;
}

.qr-section h3 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.qr-code {
    display: inline-block;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.qr-code img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
}

.qr-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.csr-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.csr-info h3 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.csr-info ul {
    list-style: none;
    padding: 0;
}

.csr-info li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.csr-info li::before {
    content: '✓';
    color: #dc2626;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-person {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #dc2626;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

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

.csr-action {
    text-align: center;
}

.csr-action .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    background: #dc2626;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.csr-action .btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.impact-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.impact-section h2 {
    color: #dc2626;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
    border-left: 4px solid #dc2626;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.impact-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 45px;
    height: 45px;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #dc2626;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #dc2626;
}

.footer-section .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-section .contact-item i {
    color: #dc2626;
    font-size: 1rem;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #ccc;
}

/* Certificates Page Styles */
.certificates-section {
    padding: 80px 0;
    background: white;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.certificate-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
    border-top: 4px solid #dc2626;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

.certificate-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.certificate-info {
    padding: 1.5rem;
}

.certificate-info h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.certificate-info .issuer {
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.certificate-info .date {
    color: #999;
    font-size: 0.9rem;
}

.appreciations-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.appreciations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.appreciation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

.appreciation-card:hover {
    transform: translateY(-5px);
}

.appreciation-content i {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.appreciation-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.appreciation-author {
    color: #dc2626;
    font-weight: 600;
    text-align: right;
}

/* Annual Reports Page Styles */
.reports-section {
    padding: 80px 0;
    background: white;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.report-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s;
    border-top: 4px solid #dc2626;
}

.report-card:hover {
    transform: translateY(-5px);
}

.report-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.report-icon i {
    font-size: 1.5rem;
    color: white;
}

.report-info h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.report-year {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.report-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.report-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.report-stats span {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-stats i {
    color: #dc2626;
}

.report-highlights {
    padding: 80px 0;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 1rem;
}

.highlight-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Tax Images Styles */
.tax-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.tax-images img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.tax-images img:hover {
    transform: scale(1.02);
}

/* Responsive Design for Donation Page */
@media (max-width: 768px) {
    .donation-section {
        padding: 100px 0 60px;
    }
    
    .donation-section .section-header h1 {
        font-size: 2.2rem;
    }
    
    .donation-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-header {
        padding: 2rem;
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-item .value {
        text-align: left;
        font-weight: 600;
        color: #dc2626;
    }
    
    .qr-code img,
    .qr-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-section {
        padding: 2rem;
    }
    
    .impact-section h2 {
        font-size: 1.8rem;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .appreciations-grid {
        grid-template-columns: 1fr;
    }
    
    .certificate-image {
        height: 200px;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .image-container {
        padding: 1rem;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #dc2626;
    padding-left: 1.5rem;
}

.dropdown-menu a.active {
    background: #dc2626;
    color: white;
}

.dropdown > a i {
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Program Pages Styles */
.program-content {
    padding: 80px 0;
    background: white;
}

.program-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}



.program-intro h2 {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.program-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.program-meta {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
    text-align: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
}

.meta-item i {
    color: #dc2626;
    font-size: 1rem;
}

.meta-item span {
    font-size: 0.95rem;
}

.program-gallery {
    margin-bottom: 5rem;
}

.program-gallery h3 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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



.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(185, 28, 28, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        max-width: 90%;
        max-height: 80vh;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .modal-image {
        width: 100%;
        height: auto;
        max-height: 80vh;
        object-fit: contain;
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close:hover {
    color: #dc2626;
}

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

.program-details {
    background: #f8f9fa;
    padding: 5rem 0;
    margin: 5rem -20px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 4px solid #dc2626;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.detail-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.detail-card p {
    color: #666;
    line-height: 1.6;
}

.program-impact {
    text-align: center;
    margin-top: 5rem;
}

.program-impact h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #dc2626;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 1rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
}

/* COVID Gallery Styles */
.covid-gallery {
    padding: 80px 0;
    background: white;
}

.covid-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.covid-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.covid-gallery .gallery-item:hover {
    transform: translateY(-5px);
}

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

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

/* Founder Page Styles */
.founder-content {
    padding: 80px 0;
}

.founder-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.founder-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-title {
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-dates {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.story-section {
    margin-bottom: 5rem;
}

.story-text h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.story-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.achievements-timeline {
    margin-bottom: 5rem;
}

.legacy-section {
    margin-bottom: 5rem;
}

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

.legacy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #dc2626;
}

.legacy-card i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.legacy-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.quote-section {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    border-radius: 15px;
}

.quote-content blockquote {
    font-size: 1.5rem;
    color: #333;
    font-style: italic;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-content i {
    font-size: 3rem;
    color: #dc2626;
    opacity: 0.3;
}

.quote-content cite {
    color: #dc2626;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Disaster Management Styles */
.disaster-activities {
    margin: 3rem 0;
}

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

.activity-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 4px solid #dc2626;
}

.activity-item:hover {
    transform: translateY(-5px);
}

.activity-item i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.activity-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.activity-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        overflow-y: auto;
        z-index: 999;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 200px;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 50px;
        height: 50px;
    }
    
    .prev-btn i, .next-btn i {
        font-size: 1rem;
    }
    
    .prev-btn, .next-btn {
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid rgba(255, 255, 255, 0.9);
        color: #dc2626;
    }
    
    .slider-nav {
        top: 70%;
    }
    
    .slider-indicators {
        bottom: 20px;
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .featured-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .program-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-section {
        margin: 3rem -20px;
        padding: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .leadership-section,
    .achievements-section {
        margin: 3rem -20px;
        padding: 3rem 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-date {
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    /* Program Pages Mobile Styles */
    .program-intro h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-details {
        margin: 3rem -20px;
        padding: 3rem 0;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-card {
        padding: 2rem 1.5rem;
    }
    
    .program-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .covid-gallery .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .founder-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .legacy-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-content blockquote {
        font-size: 1.2rem;
    }
    
    .activity-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Committee Table Mobile Styles */
    .committee-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .committee-table thead {
        display: none;
    }
    
    .committee-table tbody {
        display: block;
    }
    
    .committee-table tr {
        display: block;
        border: 1px solid #e5e7eb;
        margin-bottom: 1rem;
        border-radius: 8px;
        padding: 1rem;
        background: white;
        white-space: normal;
    }
    
    .committee-table td {
        display: block;
        text-align: left;
        border: none;
        padding: 0.5rem 0;
    }
    
    .committee-table td:before {
        content: attr(data-label) ": ";
        font-weight: bold;
        color: #dc2626;
        display: inline-block;
        width: 120px;
    }
    
    .committee-images-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}
/* Certificate Categories */
.certificate-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dc2626;
}

.certificate-icon {
    font-size: 4rem;
    color: #dc2626;
    margin: 2rem 0;
}

.certificate-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.modal-pdf {
    width: 100%;
    height: 80vh;
    border: none;
    border-radius: 8px;
}
/* News and Views Styles */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
    border-left: 4px solid #dc2626;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    background: #dc2626;
    color: white;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    float: left;
    margin: 1rem;
    border-radius: 10px;
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.news-date .month {
    display: block;
    font-size: 0.9rem;
}

.news-date .year {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.news-content {
    padding: 2rem;
    margin-left: 100px;
}

.news-content h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #999;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Important Notice Styles */
.notice-section {
    padding: 80px 0;
    background: white;
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.notice-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s;
}

.notice-card:hover {
    transform: translateY(-5px);
}

.notice-card.urgent {
    border-left: 5px solid #dc2626;
    background: linear-gradient(135deg, #fef2f2, #ffffff);
}

.notice-card.important {
    border-left: 5px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #ffffff);
}

.notice-card.general {
    border-left: 5px solid #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.notice-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.notice-card.urgent .notice-type {
    color: #dc2626;
}

.notice-card.important .notice-type {
    color: #f59e0b;
}

.notice-card.general .notice-type {
    color: #3b82f6;
}

.notice-date {
    color: #666;
    font-size: 0.9rem;
}

.notice-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.notice-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notice-details {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
}

.notice-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notice-details i {
    color: #dc2626;
}

/* Alert Event Styles */
.alert-section {
    padding: 80px 0;
    background: white;
}

.alert-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: pulse 2s infinite;
}

.alert-banner.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.alert-icon {
    font-size: 2rem;
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 50%;
}

.alert-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.alert-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.alert-time {
    font-size: 0.8rem;
    opacity: 0.7;
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.alert-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s;
}

.alert-card:hover {
    transform: translateY(-5px);
}

.alert-card.critical {
    border-left: 5px solid #dc2626;
}

.alert-card.warning {
    border-left: 5px solid #f59e0b;
}

.alert-card.info {
    border-left: 5px solid #3b82f6;
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.alert-level {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.alert-card.critical .alert-level {
    color: #dc2626;
}

.alert-card.warning .alert-level {
    color: #f59e0b;
}

.alert-card.info .alert-level {
    color: #3b82f6;
}

.alert-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.alert-status.active {
    background: #dc2626;
    color: white;
}

.alert-status.resolved {
    background: #10b981;
    color: white;
}

.alert-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.alert-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.alert-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
}

.alert-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-meta i {
    color: #dc2626;
}

.emergency-contacts {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.emergency-contacts h3 {
    color: #dc2626;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-card p {
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-content {
        margin-left: 0;
        padding-top: 1rem;
    }
    
    .news-date {
        float: none;
        margin: 1rem auto;
        width: fit-content;
    }
    
    .notice-details,
    .alert-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .alert-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* What's New Section */
.whats-new {
    padding: 80px 0;
    background: #f8f9fa;
}

.whats-new-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-preview, .notice-preview, .alert-preview {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s;
}

.news-preview:hover, .notice-preview:hover, .alert-preview:hover {
    transform: translateY(-5px);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.preview-header h3 {
    color: #dc2626;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all {
    color: #dc2626;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.view-all:hover {
    color: #b91c1c;
}

.news-item, .notice-item, .alert-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.news-item:last-child, .notice-item:last-child, .alert-item:last-child {
    border-bottom: none;
}

.news-date-small {
    background: #dc2626;
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    font-size: 0.8rem;
    font-weight: bold;
}

.news-content-small h4 {
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.news-content-small p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notice-badge, .alert-status-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 70px;
    text-align: center;
}

.notice-item.urgent .notice-badge {
    background: #dc2626;
    color: white;
}

.notice-item.important .notice-badge {
    background: #f59e0b;
    color: white;
}

.alert-status-badge {
    background: #dc2626;
    color: white;
}

.notice-item h4, .alert-item h4 {
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.notice-item p, .alert-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.alert-time {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.3rem;
    display: block;
}

.alert-item {
    flex-direction: column;
    gap: 0.5rem;
}

.alert-item .alert-status-badge {
    align-self: flex-start;
}

/* Mobile Responsive for What's New */
@media (max-width: 768px) {
    .whats-new-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .news-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .news-date-small {
        width: fit-content;
        margin: 0 auto;
    }
}
/* Junior & Youth Red Cross Styles */
.youth-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.youth-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.youth-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(185, 28, 28, 0.6));
}

.youth-hero .container {
    position: relative;
    z-index: 2;
}

.youth-hero .hero-content {
    text-align: center;
    color: white;
}

.youth-hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.youth-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.hero-stats .label {
    font-size: 1rem;
    opacity: 0.9;
}

.programs-overview {
    padding: 100px 0;
    background: white;
}

.overview-grid {
    display: grid;
    gap: 5rem;
}

.program-section {
    display: flex;
    flex-direction: column;
}

.program-header {
    text-align: center;
    margin-bottom: 3rem;
}

.program-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-badge.junior {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.program-badge.youth {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.program-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.program-header p {
    font-size: 1.2rem;
    color: #666;
}

.program-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.youth-section .program-content {
    grid-template-columns: 1fr 1fr;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.content-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.features-list .feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.features-list .feature:hover {
    transform: translateX(5px);
}

.features-list .feature i {
    color: #dc2626;
    font-size: 1.2rem;
    width: 20px;
}

.features-list .feature span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.activities-gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-tabs .tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #dc2626;
    color: #dc2626;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.gallery-tabs .tab-btn.active,
.gallery-tabs .tab-btn:hover {
    background: #dc2626;
    color: white;
}

.activities-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.activities-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.activities-gallery .gallery-item:hover {
    transform: translateY(-10px);
}

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

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

.activities-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(185, 28, 28, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.activities-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.activities-gallery .overlay-content {
    text-align: center;
    color: white;
}

.activities-gallery .overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.activities-gallery .overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.training-programs {
    padding: 100px 0;
    background: white;
}

.training-programs .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.training-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s;
    border: 1px solid #f1f5f9;
}

.training-card:hover {
    transform: translateY(-10px);
}

.training-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.training-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.training-card .card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.training-card .card-content {
    padding: 2rem;
}

.training-card .card-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.training-card .card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.training-card .card-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.training-card .card-features span {
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.training-card .card-features i {
    color: #dc2626;
    font-size: 0.7rem;
}

.join-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.action-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.action-item:hover {
    transform: translateY(-5px);
}

.action-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s;
}

.action-icon.junior {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.action-icon.youth {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.action-icon.youth i {
    color: #dc2626;
}

.action-item:hover .action-icon {
    transform: scale(1.1);
}

.action-icon i {
    font-size: 2rem;
    color: white;
}

.action-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.action-item p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.action-item .btn {
    background: white;
    color: #dc2626;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.action-item .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Mobile Responsive for Junior & Youth */
@media (max-width: 768px) {
    .youth-hero {
        height: 60vh;
    }
    
    .youth-hero h1 {
        font-size: 2.5rem;
    }
    
    .youth-hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-stats .number {
        font-size: 2rem;
    }
    
    .program-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .youth-section .program-content {
        grid-template-columns: 1fr;
    }
    
    .program-header h2 {
        font-size: 2rem;
    }
    
    .content-text h3 {
        font-size: 1.6rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .activities-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .training-programs .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-actions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .action-item {
        padding: 2rem;
    }
}
/* Newspaper Cuttings Styles */
.newspaper-cuttings {
    padding: 80px 0;
    background: #f8f9fa;
}

.cuttings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cutting-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.cutting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.cutting-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.cutting-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(185, 28, 28, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.cutting-card:hover .cutting-overlay {
    opacity: 1;
}

.cutting-overlay i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cutting-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Mobile Responsive for Newspaper Cuttings */
@media (max-width: 768px) {
    .cuttings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cutting-card {
        aspect-ratio: 2/3;
    }
    
    .cutting-overlay i {
        font-size: 2rem;
    }
    
    .cutting-overlay span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cuttings-grid {
        grid-template-columns: 1fr;
    }
}

/* Junior & Youth Red Cross Page Styles */
.intro-section {
    padding: 80px 0;
    background: white;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.intro-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.programs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    border: 1px solid #f1f5f9;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
}

.program-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.program-content {
    padding: 2.5rem;
}

.program-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.program-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.program-features .feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.program-features .feature:hover {
    transform: translateX(5px);
}

.program-features .feature i {
    color: #dc2626;
    font-size: 1.1rem;
    width: 18px;
}

.program-features .feature span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.program-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.program-stats .stat {
    text-align: center;
}

.program-stats .number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.3rem;
}

.program-stats .label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.activities-section {
    padding: 80px 0;
    background: white;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
}

.activity-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-item:hover img {
    transform: scale(1.05);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(185, 28, 28, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.activity-item:hover .activity-overlay {
    opacity: 1;
}

.activity-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.activity-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.training-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.training-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #dc2626;
}

.training-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

.training-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.training-item:hover .training-icon {
    transform: scale(1.1) rotate(5deg);
}

.training-icon i {
    font-size: 1.8rem;
    color: white;
}

.training-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.training-item p {
    color: #666;
    line-height: 1.6;
}

.join-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.join-content {
    text-align: center;
}

.join-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.join-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.join-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.join-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.join-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.join-option h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.join-option p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1rem;
}

.join-option .btn {
    background: white;
    color: #dc2626;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.join-option .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive for Junior & Youth Page */
@media (max-width: 768px) {
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-content p {
        font-size: 1.1rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-features {
        grid-template-columns: 1fr;
    }
    
    .program-stats {
        gap: 1.5rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .training-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .join-content h2 {
        font-size: 2.2rem;
    }
    
    .join-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-option {
        padding: 2rem;
    }
}