* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    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/maternal-wellness-bg.png') center center/cover no-repeat;
    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;
}




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

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

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

.maternal-health-section {
    background-color: #ffffff;
}

/* Introduction Section */
.intro-section {
    text-align: center;
    margin-bottom: 40px;
}

.intro-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.transition-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.psychoeducation-link {
    color: #7cc7d8;
    text-decoration: none;
    font-weight: 500;
}

.psychoeducation-link:hover {
    text-decoration: underline;
}

/* Video Section */
.video-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.video-container {
    position: relative;
    width: 400px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e8f4f8 0%, #d4ebf2 100%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.9) 0%, rgba(212, 235, 242, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.8) 0%, rgba(212, 235, 242, 0.8) 100%);
}

.clarity-logo {
    font-size: 14px;
    font-weight: 600;
    color: #4a90a4;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.video-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: #ff4444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: #ff3333;
}

/* Who We Help Section */
.help-section {
    margin-top: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.help-intro {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 30px;
    padding-left: 20px;
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    color: #4a90a4;
    margin-bottom: 10px;
}

.service-items {
    list-style: none;
    padding-left: 0;
}

.service-items li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.service-items li:before {
    content: "a.";
    position: absolute;
    left: 0;
    color: #4a90a4;
    font-weight: 500;
}

.service-items li:nth-child(2):before {
    content: "b.";
}

.service-items li:nth-child(3):before {
    content: "c.";
}

.service-description {
    color: #555;
    padding-left: 20px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .intro-text,
    .transition-text,
    .help-intro {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .video-container {
        width: 320px;
        height: 200px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-category {
        padding-left: 10px;
    }
    
    .category-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .video-container {
        width: 280px;
        height: 175px;
    }
    
    .clarity-logo {
        font-size: 12px;
    }
    
    .video-title {
        font-size: 14px;
    }
    
    .intro-text,
    .transition-text,
    .help-intro {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hover effects for service categories */
.service-category {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 8px;
}

.service-category:hover {
    background-color: #f8fdff;
    transform: translateX(5px);
}


.img-milestone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.img-milestone img{
    width: 100%;
    height: auto;
    max-width: 50%;
    object-fit: contain;
    display: block;
}


.clarity-moms-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
    text-align: center;
}

.group-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.content-section {
    max-width: 800px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7cc7d8, #4a90a4);
    border-radius: 2px;
}

.description {
    margin-top: 20px;
}

.description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 100%;
}

.highlight {
    color: #e74c3c;
    font-weight: 500;
}

.learn-more-link {
    color: #7cc7d8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #4a90a4;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .clarity-moms-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .description-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .image-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .description-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .clarity-moms-section {
        padding: 30px 0;
    }
    
    .image-container {
        margin-bottom: 25px;
    }
}

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

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

.image-container {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Additional styling for better visual hierarchy */
.section-title {
    letter-spacing: -0.5px;
}

.description-text {
    word-spacing: 0.5px;
}

/* Focus states for accessibility */
.learn-more-link:focus {
    outline: 2px solid #7cc7d8;
    outline-offset: 2px;
    border-radius: 2px;
}

.group-image:focus {
    outline: 3px solid #7cc7d8;
    outline-offset: 3px;
}


.perinatal-mood-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 6px;
    font-weight: 600;
    color: #6d4c41;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7cc7d8, #4a90a4);
    margin: 0 auto;
    border-radius: 2px;
}

/* Video Container */
.video-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design for Perinatal Section */
@media (max-width: 768px) {
    .perinatal-mood-section {
        padding: 40px 0;
    }
    
    .section-header .section-title {
        font-size: 28px;
    }
    
    .video-wrapper {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .section-header .section-title {
        font-size: 24px;
    }
}


.what-can-you-do-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #6d4c41;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7cc7d8, #4a90a4);
    margin: 0 auto;
    border-radius: 2px;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Illustration Container */
.illustration-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.family-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #f4e4c1 0%, #f0ddb3 50%, #ecd6a5 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.family-group {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Father Figure */
.father {
    position: relative;
    z-index: 3;
}

.father-head {
    width: 50px;
    height: 50px;
    background-color: #d4a574;
    border-radius: 50%;
    position: relative;
    z-index: 4;
}

.father-hair {
    width: 55px;
    height: 35px;
    background-color: #8d6e63;
    border-radius: 30px 30px 0 0;
    position: absolute;
    top: -15px;
    left: -2.5px;
    z-index: 3;
}

.father-body {
    width: 60px;
    height: 80px;
    background-color: #c2756b;
    border-radius: 30px 30px 15px 15px;
    position: absolute;
    top: 35px;
    left: -5px;
    z-index: 2;
}

/* Mother Figure */
.mother {
    position: relative;
    z-index: 4;
    margin-left: -10px;
}

.mother-head {
    width: 45px;
    height: 45px;
    background-color: #d4a574;
    border-radius: 50%;
    position: relative;
    z-index: 6;
}

.mother-hair {
    width: 60px;
    height: 50px;
    background-color: #5d4037;
    border-radius: 30px 30px 20px 20px;
    position: absolute;
    top: -20px;
    left: -7.5px;
    z-index: 5;
}

.mother-body {
    width: 55px;
    height: 75px;
    background-color: #f4a261;
    border-radius: 27px 27px 15px 15px;
    position: absolute;
    top: 30px;
    left: -5px;
    z-index: 4;
}

/* Baby */
.baby {
    position: absolute;
    top: 50px;
    left: 15px;
    z-index: 7;
}

.baby-head {
    width: 20px;
    height: 20px;
    background-color: #e8bb9a;
    border-radius: 50%;
    position: relative;
}

.baby-body {
    width: 25px;
    height: 25px;
    background-color: #7cc7d8;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: -2.5px;
}

/* Text Content */
.text-content {
    text-align: center;
    max-width: 700px;
}

.description-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.test-instruction {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.highlight-link {
    color: #c2756b;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: #a0635a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-can-you-do-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .family-illustration {
        width: 250px;
        height: 250px;
    }
    
    .background-circle {
        width: 230px;
        height: 230px;
    }
    
    .content-wrapper {
        gap: 30px;
    }
    
    .description-text,
    .test-instruction {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .what-can-you-do-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .family-illustration {
        width: 200px;
        height: 200px;
    }
    
    .background-circle {
        width: 180px;
        height: 180px;
    }
    
    .father-body,
    .mother-body {
        height: 60px;
    }
    
    .description-text,
    .test-instruction {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
}

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

.illustration-container {
    animation: fadeInUp 0.6s ease-out;
}

.text-content {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Subtle floating animation for the illustration */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.family-illustration {
    animation: float 4s ease-in-out infinite;
}

/* Hover effect for the illustration */
.family-illustration:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.adult-section-service {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-1 {
    max-width: 300px;
    width: 100%;
}

.brochure-card {
    background: linear-gradient(180deg, #e8f4f8 0%, #d4ebf2 100%);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.image-container {
    margin: 0 0 30px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brochure-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.brochure-image:hover {
    transform: scale(1.02);
}

.view-brochure-btn {
    background-color: #7cc7d8;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.view-brochure-btn:hover {
    background-color: #6bb5c7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 199, 216, 0.3);
}

/* Responsive Design */
@media (max-width: 480px) {
    .brochure-card {
        padding: 25px 20px;
    }
    
    .brochure-image {
        max-width: 250px;
    }
}




.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;
}