/* About Page Styles */

.about-hero {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Company Overview */
.company-overview {
    padding: 5rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.company-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
}

.mv-icon {
    margin-bottom: 2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.125rem;
}

/* Core Values */
.core-values {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Expertise */
.expertise {
    padding: 5rem 0;
    background: #f8fafc;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-4px);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.expertise-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-item h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.expertise-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Team */
.team {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Certifications */
.certifications {
    padding: 5rem 0;
    background: #f8fafc;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-left: 4px solid #2563eb;
}

.cert-item h3 {
    font-size: 1.25rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.cert-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

    .company-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .expertise-grid,
    .team-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 5rem 0 2rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .company-overview,
    .mission-vision,
    .core-values,
    .expertise,
    .team,
    .certifications {
        padding: 3rem 0;
    }

    .mv-card {
        padding: 2rem;
    }

    .overview-content h2 {
        font-size: 1.75rem;
    }

    .contact-cta {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/*logo*/

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    height: 40px;   /* Adjust logo height */
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;    /* Change color based on your header background */
    font-family: 'Inter', sans-serif;
}
