/* About Hero Section */
.about-us-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%);
    padding: 8rem 5% 5rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us-hero .hero-content {
    max-width: 800px;
}

.about-us-hero h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-us-hero p {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Introduction Section */
.introduction {
    padding: 6rem 5%;
    background: white;
}

.introduction .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.introduction h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.introduction > .container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.introduction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.intro-card {
    background: #f9fafb;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.intro-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.intro-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.intro-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    text-align: center;

}
.team h2 {
    margin-bottom: 4rem;
}
.team p {
    margin-bottom: 2rem;
}
.team .container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.member-image {
    height: 250px;
    overflow: hidden;
    background: #f1f5f9;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.member-bio {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Values Section */
.values {
    padding: 6rem 5%;
    background: white;
    text-align: center;
}
.values h2{
    margin-bottom: 2rem;

}

.values .container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    
}

.value-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-us-hero h1 {
        font-size: 2.5rem;
    }

    .about-us-hero p {
        font-size: 1.1rem;
    }

    .introduction h2,
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-us-hero {
        padding: 6rem 5% 3rem;
        min-height: 40vh;
    }

    .about-us-hero h1 {
        font-size: 2rem;
    }

    .about-us-hero p {
        font-size: 1rem;
    }

    .introduction,
    .team,
    .values {
        padding: 4rem 5%;
    }

    .introduction-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .intro-card,
    .value-card {
        padding: 1.5rem;
    }

    .member-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .about-us-hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .intro-icon,
    .value-icon {
        width: 60px;
        height: 60px;
    }

    .intro-icon i,
    .value-icon i {
        font-size: 1.8rem;
    }
}

/* Print Styles for About Page */
@media print {
    .about-us-hero {
        background: white !important;
        padding: 2rem 0 !important;
        min-height: auto;
    }

    .introduction,
    .team,
    .values {
        padding: 2rem 0 !important;
        background: white !important;
    }

    .intro-card,
    .team-member,
    .value-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .intro-card,
    .team-member,
    .value-card {
        background: #111827;
        color: #f9fafb;
    }
    .about-us-hero h1 {
        color: #f9fafb;
    }
    .about-us-hero p {
        color: #f9fafb;
    }
    .intro-card h3,
    .member-info h3,
    .value-card h3 {
        color: #f9fafb;
    }

    .intro-card p,
    .introduction{
        background-color: #111827;!important;
    }
    .member-bio,
    .value-card p {
        color: #d1d5db;
    }
    .team{
        background: #111827;
    }
    .team p{
        color: #ffffff;
        background-color:#111827 ;
    }
    .team h2{
        color: #ffffff;
        background-color:#111827 ;
    }
    .team-grid{
        color: #ffffff;
        background-color:#111827 ;
    }
    .introduction p{
        background-color: #111827;!important;
        color: #f9fafb;!important;
    }

    .introduction h2{
        color: white;
        background-color: #111827;
    }
    .introduction-grid{
        background-color: #111827;
    }
    #introduction-container{
        background-color: #111827;

    }

    .member-image {
        background: #374151;
    }

    .navbar, header, nav {
        background: #111827 !important;
        width: 100% !important;
    }
    body {
        background-color: #111827;
        color: #f9fafb;
    }
    .introduction{
        background-color: #111827;!important;
    }
    .container{
        max-width: 1200px;
    }
    .values{
        background-color: #111827;
    }
    /* Ensure all text elements have proper contrast */
     p{
        color: #f9fafb;!important;
    }

    /* Links in dark mode */
    a {
        color:var(--primary-color);
    }

    a:hover {
        color: var(--primary-color);
    }

    /* Form elements */
    input, textarea, select {
        background-color: #1f2937;
        color: #f9fafb;
        border-color: #374151;
    }









    /* Buttons */
    .btn-primary {
        background-color: var(--primary-color);
        border-color: #2563eb;
        color: white;
    }

    .btn-secondary {
        background-color: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
    .values-grid{
        background-color: #111827;
    }
    .values h2 {
        background-color: #111827;!important;
    }

    .values p {
        background-color: #111827;!important;
    }
}