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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    gap: 100px;
    /* padding: 15px 20px; */
    display: flex;
    justify-content:center;
    align-items: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

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

.logo img {
    width: 80%;
    font-size: 20px;
    color: #4fc3f7;
}

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

.clarity {
    font-size: 28px;
    font-weight: bold;
    color: #666;
    letter-spacing: 2px;
}

.tagline {
    font-size: 12px;
    color: #999;
    margin-top: -2px;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #666;
}

.phone, .email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.phone i, .email i {
    color: #999;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #999;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4fc3f7;
}

.search-icon {
    color: #4fc3f7;
    font-size: 18px;
    cursor: pointer;
}

/* Navigation Menu */
.nav-menu {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 5px;
    justify-content: space-evenly;
    align-items: center;
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 40px;
    padding: 15px 0;
}

.menu-items li a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.menu-items li a:hover {
    color: #4fc3f7;
}

.menu-item li a{
    color: white;
}

.menu-items li.dropdown a i {
    font-size: 10px;
}

.menu-items .dropdown-menu {
    display: none;
    position: absolute;
    border-radius: 20px;
    background: #1483ae;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 100;
    margin-top: 10px;
    padding: 0;
    list-style: none;
}

.menu-items .dropdown.open > .dropdown-menu {
    display: block;
}

.menu-items .dropdown {
    position: relative;
}

.menu-items .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.menu-items .dropdown-menu li a:hover {
    background: #17b9dd;
    border-radius: 10px;
}

/* Donate Button */
.btn-donate {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

.btn-donate i {
    color: #ff6b6b;
}

/* Hero Section */
.hero-section {
    background: url('../images/bg-1.png') center center/cover no-repeat;
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    color: #503444;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 18px;
    padding-bottom: 50px;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    color: black;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-image: url('../images/bg-2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 500px;
}

.services .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

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

.service-card {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-img {
    width: 100%;
    height: 180px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Who We Serve Section */
.who-we-serve-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.serve-card {
    text-align: center;
    position: relative;
}

.serve-image {
    height: 200px;
    background: white;
    border-radius: 20px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.serve-button {
    background: #87ceeb;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.serve-button:hover {
    background: #5fb3d4;
    transform: scale(1.05);
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    position: relative;
}

.who-we-are h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.who-card {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.who-image {
    height: 250px;
    background: white;
    border-radius: 20px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.who-button {
    background: #4fc3f7;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.who-button:hover {
    background: #29b6f6;
    transform: scale(1.05);
}

/* Adults Illustration */
.adults {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.adults .adult-male {
    width: 40px;
    height: 50px;
    background: #34495e;
    border-radius: 20px 20px 8px 8px;
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.adults .adult-female {
    width: 38px;
    height: 48px;
    background: #8e44ad;
    border-radius: 19px 19px 8px 8px;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

/* Maternal Illustration */
.maternal {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe0e6 100%);
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.maternal .mother {
    width: 45px;
    height: 55px;
    background: #e91e63;
    border-radius: 22px 22px 8px 8px;
    position: absolute;
    left: 40px;
    bottom: 30px;
}

.maternal .baby {
    width: 20px;
    height: 25px;
    background: #ffb3d1;
    border-radius: 10px 10px 5px 5px;
    position: absolute;
    left: 55px;
    bottom: 50px;
}

.maternal .heart-decoration {
    width: 15px;
    height: 15px;
    background: #ff69b4;
    transform: rotate(45deg);
    position: absolute;
    top: 25px;
    right: 30px;
}

.maternal .heart-decoration::before,
.maternal .heart-decoration::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #ff69b4;
    border-radius: 50%;
}

.maternal .heart-decoration::before {
    top: -7px;
    left: 0;
}

.maternal .heart-decoration::after {
    left: -7px;
    top: 0;
}

/* Youth Illustration */
.youth {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.youth-group {
    position: relative;
    width: 120px;
    height: 80px;
}

.youth1 {
    width: 25px;
    height: 35px;
    background: #3498db;
    border-radius: 12px 12px 5px 5px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.youth2 {
    width: 23px;
    height: 33px;
    background: #f39c12;
    border-radius: 11px 11px 5px 5px;
    position: absolute;
    left: 30px;
    bottom: 0;
}

.youth3 {
    width: 24px;
    height: 34px;
    background: #e74c3c;
    border-radius: 12px 12px 5px 5px;
    position: absolute;
    left: 60px;
    bottom: 0;
}

.youth4 {
    width: 26px;
    height: 36px;
    background: #27ae60;
    border-radius: 13px 13px 5px 5px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.youth-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #87ceeb;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.newsletter h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

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

.newsletter-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.newsletter-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.newsletter-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.newsletter-content h3 {
    font-size: 24px;
    text-align: start;
    font-weight: 900;
    color: #333;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    background: #4fc3f7;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #29b6f6;
}

.view-all-newsletters {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

/* E-Newsletter Section */
.e-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    position: relative;
}

.e-newsletter h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.e-newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.e-newsletter-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.e-newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.e-newsletter-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
    object-fit:fill;
}

.e-newsletter-info {
    padding: 25px;
    text-align: center;
}

.newsletter-date {
    color: #4fc3f7;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.e-newsletter-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.newsletter-btn {
    background: #4fc3f7;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #29b6f6;
}

.view-more-newsletters {
    text-align: center;
    margin-top: 50px;
}

.btn-view-more {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 32px;
    color: #4fc3f7;
    margin-bottom: 8px;
    font-weight: bold;
}

.stat-item span {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.learn-more-btn {
    background: #4fc3f7;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
}

.learn-more-btn:hover {
    background: #29b6f6;
    transform: translateY(-2px);
}

.about-video {
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    margin-top: 20px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

/* Background Shapes */
.background-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.services-bg {
    width: 400px;
    height: 400px;
    background: #f4d03f;
    top: -100px;
    left: -100px;
}

.serve-bg {
    width: 350px;
    height: 350px;
    background: #85c1e9;
    bottom: -100px;
    right: -100px;
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .menu-items {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .menu-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .serve-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card,
    .serve-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .newsletter-card {
        flex-direction: column;
    }
    
    .newsletter-img {
        width: 100%;
        height: 200px;
    }
    
    .newsletter-content {
        padding: 20px;
    }
    
    .who-we-are-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text .clarity {
        font-size: 24px;
    }
    
    .menu-items {
        gap: 15px;
    }
    
    .menu-items li a {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-image {
        height: 150px;
    }
}

.footer {
    background-color: #e7e7e7;
    color: #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Logo Section */
.logo-section .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #4db8e8;
}

.logo-text h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Links Section */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4db8e8;
}

/* Location Sections */
.location-section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.location-section p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Social Section */
.social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.phone {
    background-color: #4db8e8;
    color: white;
}

.social-icon.email {
    background-color: #4db8e8;
    color: white;
}

.social-icon.instagram {
    background-color: #4db8e8;
    color: white;
}

.social-icon.facebook {
    background-color: #4db8e8;
    color: white;
}

.social-icon.linkedin {
    background-color: #4db8e8;
    color: white;
}

.mailing-list-btn {
    background-color: #4db8e8;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mailing-list-btn:hover {
    background-color: #3da3d3;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a1a1a;
    color: #888;
    padding: 20px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-bottom p {
    font-size: 0.85rem;
    text-align: center;
}



/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-section {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .chat-icon {
        position: static;
        margin-top: 15px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .logo-section {
        grid-column: 1 / -1;
        text-align: center;
    }
}

.hidden-newsletter {
    display: none;
}

.hidden-e-newsletter {
    display: none;
}