
/* About Us Section */
.about-section {
    padding: 10rem 0;
    background: var(--card-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-effect {
    position: relative;
    width: 450px;
    height: 500px;
    border-radius: 50% 50% 45% 55% / 60% 45% 55% 40%;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    animation: morph 8s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes morph {
    0%, 100% { border-radius: 50% 50% 45% 55% / 60% 45% 55% 40%; }
    25% { border-radius: 45% 55% 40% 60% / 55% 50% 50% 45%; }
    50% { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
    75% { border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%; }
}

.blob-effect img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50% 50% 45% 55% / 60% 45% 55% 40%;
    animation: morph 8s ease-in-out infinite;
    animation-delay: 0.5s;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: url('../imgaes/background.jpg') center/cover no-repeat;
}
[data-theme="dark"] .mission-vision {
    background: black;
}


.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}


/* Core Values Section */
.core-values-section {
    padding: 6rem 0;
    color: var(--primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.value-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.value-card:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* What We Do Section */
.what-we-do-section {
    padding: 6rem 0;
    background: var(--card-bg);
}

.what-we-do-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.what-we-do-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.what-we-do-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.what-we-do-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.what-we-do-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.what-we-do-image:hover img {
    transform: scale(1.05);
}

/* Impact Section */
.impact-section {
    padding: 6rem 0;
    color: var(--primary);
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.impact-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.impact-image:hover img {
    transform: scale(1.05);
}

.impact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.impact-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;

}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question.active {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer.open {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Join Team Section */
.join-team-section {
    padding: 6rem 0;
    background: url('../images/join.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

[data-theme="dark"] .join-team-section {
    background:  url('../images/join.jpg') center/cover no-repeat;
}

.join-team-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-team-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.join-team-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Management Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--card-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-member {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.team-member:hover .member-image::before {
    transform: translateX(100%);
}

.member-info {
    padding: 1.5rem;
}

.member-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.member-info p {
    color: var(--text-light);
    font-style: italic;
}



/* Responsive Design */
@media (max-width: 992px) {
    .about-content,
    .mission-vision-grid,
    .values-grid,
    .what-we-do-content,
    .impact-content,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header-content h1 {
        font-size: 2.8rem;
    }
    
    .blob-effect {
        width: 400px;
        height: 380px;
    }
    .member-image {
        width: 100%;
        height: 500px;
    }
    
    .member-image img {
        width: 100%;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links, .theme-toggle {
        display: none;
    }
    .blob-effect {
        width: 320px;
        height: 350px;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .page-header-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mv-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
    .member-image {
        width: 100%;
        height: 350px;
    }
    .member-image img {
        width: 100%;
        height: 350px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blob-effect {
        width: 320px;
        height: 350px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card, .team-member {
        margin-bottom: 1.5rem;
    }
    
    .join-team-content h2 {
        font-size: 2.2rem;
    }
}