/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

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

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

.nav-logo h2 {
    color: #3b82f6;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

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

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="600" r="400" fill="url(%23a)"/><circle cx="500" cy="800" r="250" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: blur(2px);
    transition: all 0.3s ease;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-email {
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.6s both;
    text-align: center;
}

.hero-email p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-email-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-email-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-email-link i {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

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

.email-highlight {
    margin-top: 30px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.email-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
}

.email-highlight i {
    color: white;
    font-size: 1.5rem;
}

.email-link {
    color: white !important;
    text-decoration: none !important;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #f0f0f0 !important;
    text-decoration: underline !important;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image-container {
    margin-bottom: 30px;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

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

.about-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    margin: 0;
}

.timeline-highlight {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #3b82f6;
}

.timeline-highlight h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-highlight i {
    color: #3b82f6;
    font-size: 1.3rem;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid #3b82f6;
}

.timeline-item:hover {
    background: #3b82f6;
    color: white;
    transform: translateX(10px);
}

.timeline-item .year {
    font-weight: 700;
    font-size: 1.1rem;
    color: #3b82f6;
    min-width: 80px;
    text-align: center;
    padding: 5px 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.timeline-item:hover .year {
    color: #3b82f6;
    background: white;
}

.timeline-item .milestone {
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.mission-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-image {
    width: 100%;
    max-width: 350px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.mission-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.3);
}

.mission-text h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.mission-description,
.mission-belief {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

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

.value-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.value-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.value-item p {
    opacity: 0.9;
    margin: 0;
}

/* Impact Section */
.impact {
    background: #f8f9fa;
}

.impact-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.impact-image-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 120px;
}

.impact-image {
    width: 100%;
    max-width: 400px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.beneficiaries {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.beneficiary-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.beneficiary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

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

.beneficiary-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.beneficiary-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.location {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
}

.description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.transparency-note {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.transparency-note i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.transparency-note h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.transparency-note p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #3b82f6;
    color: white;
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.8rem;
    color: #3b82f6;
    min-width: 40px;
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: white;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.4;
}

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

.contact-item a:hover {
    color: #667eea;
    text-decoration: underline;
}

.contact-item:hover a {
    color: white;
}

.email-featured {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    border: 3px solid #3b82f6;
    transform: scale(1.05);
    order: -1;
}

.email-featured:hover {
    background: linear-gradient(135deg, #1e9e3e 0%, #1d4ed8 100%) !important;
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4) !important;
}

.email-featured i {
    color: white !important;
    font-size: 2rem;
}

.email-featured h3 {
    color: white !important;
    margin-bottom: 10px;
}

.email-address {
    margin-bottom: 8px !important;
}

.email-address a {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.1rem;
    text-decoration: none !important;
}

.email-address a:hover {
    color: #f0f0f0 !important;
    text-decoration: underline !important;
}

.email-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0 !important;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #3b82f6;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section p a:hover {
    color: #667eea;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.footer-email:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateX(5px);
}

.footer-email i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.footer-email a {
    color: #ccc !important;
    font-weight: 600;
    font-size: 1rem;
}

.footer-email a:hover {
    color: #3b82f6 !important;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-email {
        margin-top: 30px;
    }
    
    .hero-email p {
        font-size: 1rem;
    }
    
    .hero-email-link {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .email-highlight {
        padding: 15px 25px;
    }
    
    .email-link {
        font-size: 1.1rem;
    }
    
    .email-featured {
        transform: scale(1) !important;
    }
    
    .email-featured:hover {
        transform: translateY(-5px) !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-info {
        grid-template-columns: 1fr;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-image-section {
        order: -1;
    }
    
    .mission-image {
        max-width: 300px;
        height: 250px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .impact-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-image-section {
        position: static;
        order: -1;
    }
    
    .impact-image {
        max-width: 350px;
        height: 250px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .beneficiaries {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .stat-item,
    .info-card,
    .value-item {
        padding: 20px 15px;
    }
    
    .beneficiary-card,
    .transparency-note {
        padding: 30px 20px;
    }
    
    .about-image {
        height: 200px;
    }
    
    .timeline-highlight {
        margin-top: 30px;
        padding: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }
    
    .timeline-item .year {
        min-width: auto;
        align-self: flex-start;
    }
    
    .mission-image {
        max-width: 250px;
        height: 200px;
    }
    
    .impact-image {
        max-width: 280px;
        height: 200px;
    }
    
    .documents {
        background: #f8f9fa;
    }
    
    .pdf-container {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    
    .pdf-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-width: 500px;
        transition: all 0.3s ease;
    }
    
    .pdf-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .pdf-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
    
    .pdf-icon i {
        font-size: 2rem;
        color: white;
    }
    
    .pdf-card h3 {
        color: #333;
        margin-bottom: 15px;
        font-size: 1.5rem;
    }
    
    .pdf-card p {
        color: #666;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .pdf-card .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    .pdf-actions {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pdf-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.pdf-viewer.active {
    display: block;
}
    
    .pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}
    
    .pdf-header h3 {
        margin: 0;
        color: #333;
        font-size: 1.2rem;
    }
    
    .close-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #666;
        cursor: pointer;
        padding: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .close-btn:hover {
        background: #f8f9fa;
        color: #333;
    }
    
    .pdf-frame-container {
    height: calc(100vh - 80px);
    background: white;
}

.pdf-frame-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform-origin: top left;
}

/* Gallery Bootstrap Carousel */
.gallery {
    padding: 80px 0;
    background: var(--light-background);
}

#galleryCarousel {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
}

#galleryCarousel .carousel-item {
    height: 400px;
    aspect-ratio: 16/9;
    width: 100%;
}

#galleryCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Custom carousel controls */
#galleryCarousel .carousel-control-prev,
#galleryCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

#galleryCarousel .carousel-control-prev:hover,
#galleryCarousel .carousel-control-next:hover {
    background: rgba(220, 38, 38, 1);
}

#galleryCarousel .carousel-control-prev {
    left: 0;
}

#galleryCarousel .carousel-control-next {
    right: 0;
}

/* Custom carousel indicators */
#galleryCarousel .carousel-indicators {
    bottom: 20px;
}

#galleryCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#galleryCarousel .carousel-indicators button.active {
    background-color: #3b82f6;
    transform: scale(1.2);
}

/* Mobile responsive for carousel */
@media (max-width: 768px) {
    #galleryCarousel .carousel-item {
        height: 280px;
        aspect-ratio: 16/9;
    }
    
    #galleryCarousel .carousel-control-prev,
    #galleryCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    #galleryCarousel .carousel-item {
        height: 200px;
        aspect-ratio: 16/9;
    }
    
    #galleryCarousel .carousel-control-prev,
    #galleryCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
}

/* Documents Section */
.documents {
    padding: 80px 0;
    background: white;
}

.pdf-container {
    max-width: 800px;
    margin: 0 auto;
}

.pdf-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    border-color: #3b82f6;
}

.pdf-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.pdf-card h3 {
    color: #3b82f6;
    margin-bottom: 15px;
}

.pdf-card p {
    color: var(--light-text);
    margin-bottom: 30px;
}

.pdf-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile responsive for PDF viewer */
@media (max-width: 768px) {
    .pdf-viewer {
        padding: 10px;
    }
    
    .pdf-header {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .pdf-header h3 {
        font-size: 1rem;
        margin: 0;
    }
    
    .pdf-frame-container {
        height: calc(100vh - 120px);
        overflow: hidden;
        position: relative;
    }
    
    .pdf-frame-container iframe {
        min-height: 400px;
        display: block;
        transform: scale(0.9);
        transform-origin: top left;
        width: 111.11%; /* Compensate for scale(0.9) */
        height: 111.11%;
    }
    
    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pdf-viewer {
        padding: 5px;
    }
    
    .pdf-header {
        padding: 10px;
    }
    
    .pdf-header h3 {
        font-size: 0.9rem;
    }
    
    .pdf-frame-container {
        height: calc(100vh - 100px);
        overflow: hidden;
        position: relative;
    }
    
    .pdf-frame-container iframe {
        min-height: 300px;
        display: block;
        transform: scale(0.8);
        transform-origin: top left;
        width: 125%; /* Compensate for scale(0.8) */
        height: 125%;
    }
    
    .close-btn {
        top: 5px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}
} 