/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #5bc0be;
}

.section-underline.white {
    background-color: #ffffff;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background-color: #5bc0be;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-blue {
    background-color: #3a506b;
    color: #ffffff;
}

.btn-teal {
    background-color: #5bc0be;
    color: #ffffff;
}

.btn-full {
    width: 100%;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #3a506b;
    background-color: #5bc0be;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #3a506b;
}

.logo p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: #333;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #5bc0be;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #5bc0be;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 999;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 2rem;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

/* Hero Section */
#welcome {
    position: relative;
    background: linear-gradient(to right, #3a506b, #1c2541);
    color: #ffffff;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1593113630400-ea4288922497?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ceo-icon-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    background-color: #3a506b;
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ceo-icon-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-icon {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.ceo-icon.active {
    opacity: 1;
}

.ceo-icon i {
    font-size: 8rem;
    color: #ffffff;
}

.ceo-info {
    margin-top: 1.5rem;
    text-align: center;
}

.ceo-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.ceo-info p {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Welcome Message Section */
.welcome-message {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.welcome-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #5bc0be;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.welcome-card h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3a506b;
}

/* About Section */
#about {
    padding: 6rem 0;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid #5bc0be;
    z-index: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-additional {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #3a506b;
}

/* Vision Section */
#vision {
    padding: 6rem 0;
    background: linear-gradient(to right, #3a506b, #1c2541);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.vision-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.vision-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mission Section */
#mission {
    padding: 6rem 0;
    background-color: #ffffff;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    position: relative;
}

.image-border-right {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid #3a506b;
    z-index: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* What We Do Section */
#what-we-do {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.what-we-do-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-blue {
    border-top: 5px solid #3a506b;
}

.card-teal {
    border-top: 5px solid #5bc0be;
}

.what-we-do-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.card-blue h3 {
    color: #3a506b;
}

.card-teal h3 {
    color: #5bc0be;
}

.what-we-do-card h3 i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.what-we-do-summary {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    border-top: 5px solid #3a506b;
}

/* Slideshow Section */
.slideshow {
    padding: 6rem 0;
    background-color: #ffffff;
}

.professional-slideshow {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    margin-top: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide-content {
    background-color: rgba(28, 37, 65, 0.8);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.slideshow-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.slide-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slideshow-dots {
    display: flex;
    gap: 8px;
}

.slideshow-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #5bc0be;
    transition: width 5s linear;
    z-index: 10;
}

/* Gallery Section */
#gallery {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Donation Section */
#donation {
    padding: 6rem 0;
    background: linear-gradient(to right, #3a506b, #1c2541);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

#donation .container {
    position: relative;
    z-index: 2;
}

#donation .section-header h2 {
    color: #ffffff;
}

#donation .section-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 3rem auto;
    color: #ffffff;
}

.donation-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.donation-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.donation-icon {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.donation-icon img {
    width: 70%;
    height: auto;
}

.donation-icon i {
    font-size: 3rem;
    color: #5bc0be;
}

.donation-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.donation-card:first-child h3 {
    color: #3a506b;
}

.donation-card:last-child h3 {
    color: #5bc0be;
}

.donation-card p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #333333;
}

/* Contact Section */
#contact {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-info {
    background: linear-gradient(to bottom right, #3a506b, #1c2541);
    color: #ffffff;
    padding: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-links {
    margin-top: 3rem;
}

.social-links h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #ffffff;
}

.social-icons a:hover {
    background-color: #5bc0be;
    transform: translateY(-5px);
}

.contact-form {
    padding: 3rem;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #3a506b;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Thank You Section */
.thank-you {
    padding: 6rem 0;
    background: linear-gradient(to right, #3a506b, #1c2541);
    color: #ffffff;
    text-align: center;
}

.thank-you h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.thank-you p {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #1c2541;
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    margin-right: 0.75rem;
    border: 2px solid #5bc0be;
}

.footer-logo h3 {
    font-weight: 700;
    margin: 0;
}

.footer-logo p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 1px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #5bc0be;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    margin-right: 0.75rem;
    color: #5bc0be;
}

.footer-social {
    margin-top: 3rem;
}

.footer-social h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-social .social-icons {
    flex-wrap: wrap;
}

.footer-social .social-icons a {
    width: 40px;
    height: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    margin-top: 0.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    margin: 0 0.75rem;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .ceo-icon-container {
        width: 250px;
        height: 250px;
    }
    
    .ceo-icon i {
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .welcome-card,
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .ceo-icon-container {
        width: 200px;
        height: 200px;
    }
    
    .ceo-icon i {
        font-size: 5rem;
    }
}