* {
    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/about-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;
}

/* mission and vission section */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-section {
    background: white;
    border-radius: 10px;
    padding: 60px;
}

.about-section h1 {
    font-size: 3rem;
    color: #8B4A6B;
    margin-bottom: 20px;
    font-weight: 600;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #87CEEB, #4A90E2);
    margin-bottom: 40px;
    border-radius: 2px;
}

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

.about-text:first-of-type {
    margin-bottom: 25px;
}

.about-text:nth-of-type(2) {
    margin-bottom: 25px;
}

.about-text:last-of-type {
    margin-bottom: 50px;
}

.vision-mission-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.vision-mission-box {
    flex: 1;
    background: linear-gradient(135deg, #87CEEB 0%, #4A90E2 100%);
    border-radius: 15px;
    padding: 10px 30px;
    color: white;
    text-align: left;
}

.vision-mission-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.vision-mission-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .about-section {
        padding: 40px 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .vision-mission-container {
        flex-direction: column;
        gap: 30px;
    }

    .vision-mission-box {
        padding: 30px 25px;
    }

    .vision-mission-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .vision-mission-box {
        padding: 25px 20px;
    }

    .vision-mission-box h2 {
        font-size: 1.6rem;
    }

    .vision-mission-box p {
        font-size: 1rem;
    }
}

/* Principles of Services Section */
.Principles {
    background: url('../images/bg-about-2.png') center center/cover no-repeat;
    position: relative;
    padding: 10px 0;
}

section.Principles\ of\ Services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 2;
}

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

.principles-section {
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 3rem;
    color: #8B4A6B;
    margin-bottom: 20px;
    font-weight: 600;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #87CEEB, #4A90E2);
    margin-bottom: 30px;
    border-radius: 2px;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    font-weight: 400;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.principle-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #87CEEB 0%, #4A90E2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.principle-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    flex: 1;
}

.single-principle {
    grid-column: 1 / -1;
    max-width: 50%;
}

/* Icons as SVG */
.icon-person {
    fill: white;
}

.icon-balance {
    fill: white;
}

.icon-info {
    fill: white;
}

.icon-people {
    fill: white;
}

.icon-family {
    fill: white;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .principles-section {
        padding: 40px 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .single-principle {
        max-width: 100%;
    }

    .principle-card {
        padding: 25px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .principles-section {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .principle-card {
        padding: 20px;
        gap: 15px;
    }

    .principle-text {
        font-size: 1rem;
    }
}

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

.org-chart-section {
    background: white;
    border-radius: 15px;
    padding: 60px;
}

h1 {
    font-size: 3rem;
    color: #8B4A6B;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: left;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #87CEEB, #4A90E2);
    margin-bottom: 50px;
    border-radius: 2px;
}

.org-chart-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

.board-note {
    text-align: left;
    margin-top: 40px;
}

.board-note-box {
    background: linear-gradient(135deg, #87CEEB 0%, #6BB6D6 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Directors Section */
.Directors {
    background: url('../images/bg-about-2.png') center center/cover no-repeat;
}

.Directors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.Directors .staff-profiles-section {
    border-radius: 20px;
    padding: 60px;
}

.staff-profiles-section {
    border-radius: 15px;
    padding: 40px;
}



.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 10px;
    position: relative;
    z-index: 2;
}

.staff-profiles-section {
    border-radius: 20px;
    padding: 60px;
}

.staff-member {
    margin-bottom: 50px;
    padding: 30px;
    max-width: 80%;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-5px);
}

.staff-member:last-child {
    margin-bottom: 0;
}

.position-title {
    font-size: 1.4rem;
    color: #8B4A6B;
    margin-bottom: 8px;
    font-weight: 300;
    font-style: italic;
}

.staff-name {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.staff-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}


@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .staff-profiles-section {
        padding: 40px 30px;
    }

    .staff-member {
        padding: 25px;
        margin-bottom: 30px;
    }

    .position-title {
        font-size: 1.2rem;
    }

    .staff-name {
        font-size: 1.5rem;
    }

    .staff-description {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .staff-profiles-section {
        padding: 30px 20px;
    }

    .staff-member {
        padding: 20px;
    }

    .position-title {
        font-size: 1.1rem;
    }

    .staff-name {
        font-size: 1.3rem;
    }

    .staff-description {
        font-size: 0.95rem;
    }
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #5a4037;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4fc3f7, #29b6f6);
    border-radius: 2px;
}

/* Achievement Section */
.achievement-section {
    padding: 0px 0;
    background-color: #fff;
}

.achievement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 60px;
}

.award-logo {
    flex: 1;
    max-width: 400px;
}

.award-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.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-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Partners Section */
.partners-section {
    margin: 60px 0;
    text-align: center;
}

.partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    padding: 20px 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}



/* Responsive Design */
@media (max-width: 768px) {
    .partners-container {
        gap: 20px;
        justify-content: center;
    }
    
    .partner-logo {
        width: 150px;
        height: 100px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .partners-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .partner-logo {
        width: 180px;
        height: 90px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .achievement-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .partners-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .partner-logo {
        min-width: 100%;
        max-width: 300px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .achievement-section,
    .partners-section {
        padding: 50px 0;
    }
    
    .floating-contact {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .video-title {
        font-size: 0.9rem;
        top: 15px;
        left: 15px;
    }
    
    .play-button svg {
        width: 50px;
        height: 36px;
    }
}

.small-video {
    max-width: 500px;
    margin: 0 auto;
}

.small-video {
    padding-bottom: 22.5%; /* Smaller aspect ratio */
}



/* Media Section Styling */

.media{
    margin: auto;
    padding: 60px;
}

.media-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.media-section h1 {
    font-size: 2.5rem;
    color: #8B4A6B;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: start;
}

.media-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

/* Image Section */
.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.team-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-section:hover .team-image {
    transform: scale(1.05);
}

.image-caption {
    padding: 30px;
    text-align: center;
}

.image-caption h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.image-caption p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.video-section iframe{
    width: 100%;
    min-width: 400px;
    min-height: 200px;
    height: 100%;
    border-radius: 10px;
}

.video-section:hover {
    transform: translateY(-5px);
}

.video-header {
    text-align: center;
    margin-bottom: 25px;
}

.video-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.video-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .media-section {
        padding: 40px 0;
    }
    
    .media-container {
        gap: 30px;
        margin: 0 15px;
    }
    
    .team-image {
        height: 300px;
    }
    
    .image-caption,
    .video-section {
        padding: 20px;
    }
    
    .image-caption h3,
    .video-header h3 {
        font-size: 20px;
    }
    
    .image-caption p,
    .video-header p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .media-container {
        margin: 0 10px;
    }
    
    .team-image {
        height: 250px;
    }
    
    .image-caption,
    .video-section {
        padding: 15px;
    }
    
    .image-caption h3,
    .video-header h3 {
        font-size: 18px;
    }
}




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