* {
    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/Services.bg-1.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;
}



.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: #6b4c57;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.services-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

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

.service-card.card-blue:hover {
    box-shadow: 0 10px 25px rgba(79, 195, 247, 0.3);
}


.service-image {
    margin-bottom: 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 50%;
    object-fit: fill;
    height: auto;
    border-radius: 10px;
    opacity: 0.9;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .services-description {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}

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

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}




.clarity-services {
    padding: 60px 0;
    min-height: 70vh;
    background-color: #ffffff;
}

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

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

/* Pricing Sidebar Styles */
.pricing-sidebar {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: sticky;
    top: 20px;
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1.2;
    margin-bottom: 25px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    display: inline-block;
}

.service-type {
    font-size: 1.8rem;
    font-weight: 600;
}

.pricing-note {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-top: 20px;
}

.pricing-note strong {
    color: #2c5aa0;
    font-weight: 600;
}

/* Main Content Styles */
.main-content {
    padding: 20px 0;
}

.service-description {
    margin-bottom: 40px;
}

.intro-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 25px;
}

.clients-served {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    font-weight: 500;
}

/* Disorder Tags Styles */
.disorder-tags {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tag-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.disorder-tag {
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(87, 206, 235, 0.3);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.disorder-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 206, 235, 0.4);
}

.large-tag {
    flex: 1;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-sidebar {
        position: static;
        order: 2;
        margin-top: 30px;
    }
    
    .main-content {
        order: 1;
    }
    
    .pricing-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .service-type {
        font-size: 1.5rem;
    }
    
    .tag-row {
        flex-direction: column;
    }
    
    .disorder-tag {
        min-width: auto;
        flex: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .clarity-services {
        padding: 40px 0;
    }
    
    .pricing-sidebar {
        padding: 30px 20px;
    }
    
    .pricing-title {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .service-type {
        font-size: 1.3rem;
    }
    
    .intro-text,
    .clients-served {
        font-size: 1rem;
    }
    
    .disorder-tag {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

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

.disorder-tag {
    animation: fadeInUp 0.6s ease forwards;
}

.disorder-tag:nth-child(1) {
    animation-delay: 0.1s;
}

.disorder-tag:nth-child(2) {
    animation-delay: 0.2s;
}

/* Additional hover effect for pricing sidebar */
.pricing-sidebar:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


.beneficiaries-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 100vh;
}

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

/* Category Cards */
.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.card-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Category Images */
.category-image {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

/* Adult Illustration */
.adult-illustration {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.person {
    width: 60px;
    height: 80px;
    border-radius: 30px 30px 10px 10px;
    position: relative;
}

.person::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4a261;
}

.person-male {
    background: #2a9d8f;
}

.person-female {
    background: #e76f51;
}

/* Maternal Illustration */
.maternal-illustration {
    position: relative;
}

.mother-child {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mother {
    width: 70px;
    height: 90px;
    background: #e76f51;
    border-radius: 35px 35px 15px 15px;
    position: relative;
}

.mother::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f4a261;
}

.child {
    width: 30px;
    height: 40px;
    background: #264653;
    border-radius: 15px 15px 8px 8px;
    position: absolute;
    right: -10px;
    top: 20px;
}

.child::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f4a261;
}

.wings {
    position: absolute;
    top: -10px;
    left: -30px;
    right: -30px;
    height: 20px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50px;
    opacity: 0.7;
}

/* Youth Illustration */
.youth-illustration {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.youth-group {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.youth-person {
    width: 35px;
    height: 60px;
    border-radius: 20px 20px 8px 8px;
    position: relative;
}

.youth-person:nth-child(1) { background: #2a9d8f; height: 65px; }
.youth-person:nth-child(2) { background: #e76f51; height: 70px; }
.youth-person:nth-child(3) { background: #264653; height: 60px; }
.youth-person:nth-child(4) { background: #f4a261; height: 68px; }

.youth-person::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #f4a261;
}

/* Category Labels */
.category-label {
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 -10px;
}

.category-label a{
    color: white;
    text-decoration: none;
}

/* Stories Section */
.stories-section {
    text-align: center;
}

.stories-title {
    font-size: 3rem;
    font-weight: 700;
    color: #6b4c57;
    margin-bottom: 15px;
}

.stories-subtitle {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 60px;
}

/* Testimonial Slider */
.testimonial-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.testimonial-slider {
    flex: 1;
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 25px;
    text-align: left;
}

.testimonial-author h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
}

/* Navigation Arrows */
.nav-arrow {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.nav-arrow:hover {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
    transform: scale(1.1);
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #2c5aa0;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .stories-title {
        font-size: 2.5rem;
    }
    
    .testimonial-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-arrow {
        position: static;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .beneficiaries-section {
        padding: 60px 0;
    }
    
    .category-card {
        min-height: 250px;
        padding: 30px 15px;
    }
    
    .stories-title {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 25px 15px;
    }
}



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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #87CEEB;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.content-container {
    display: flex;
    align-items: center;
    gap: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 400px;
}

.image-container {
    flex: 1;
    height: auto;
    overflow: hidden;
}

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

.text-container {
    flex: 1;
    padding: 60px 50px;
    background: white;
    display: flex;
    align-items: center;
}

.text-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
}

.text-container a{
    color: #ffffff;
    text-decoration: none;
    background-color: #1483ae;
    border-radius: 20px;
    padding: 10px 10px;
}

.text-container a:hover {
    background-color: #17b9dd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        min-height: auto;
    }

    .image-container {
        height: 250px;
    }

    .text-container {
        padding: 30px 25px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .text-content {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}


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

/* Brief Intervention Section */
.brief-intervention-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.brief-intervention-section .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.brief-intervention-section .content-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.brief-intervention-section .text-content {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

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

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

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Service Section Transitions */
.clarity-services,
.outreach-section,
.brief-intervention-section {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.clarity-services[style*="block"],
.outreach-section[style*="block"],
.brief-intervention-section[style*="block"] {
    opacity: 1;
}