/* About Us Page Redesign CSS */

:root {
    --primary-navy: #101c26;
    /* Dark Navy from Contact Page */
    --accent-green: #25D366;
    /* Bright Green from Contact Page/WhatsApp */
    --text-dark: #191c20;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Reset / Fonts inherited from script.css/bootstrap */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

a {
    text-decoration: none;
}

/* =========================================
   Header/Nav Global Fixed
   ========================================= */
/* Ensure header sits on top */
header#header {
    z-index: 1000;
}

/* =========================================
   Hero Section
   ========================================= */
.about-hero {
    /* Gradient: Dark Navy to slightly lighter/greenish navy */
    background: linear-gradient(135deg, #0f1c29 0%, #1a3c3f 100%);
    padding: 180px 0 120px;
    color: var(--white);
    position: relative;
}

.hero-badge {
    background-color: rgba(37, 211, 102, 0.15);
    /* Transparent Green */
    color: var(--accent-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--white);
}

.about-hero h1 .text-green {
    color: var(--accent-green);
}

.about-hero p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* =========================================
   Stats Section
   ========================================= */
.stats-section {
    position: relative;
    margin-top: -60px;
    /* Overlap Hero */
    padding-bottom: 80px;
    z-index: 10;
}

.stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 20px;
    display: inline-block;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.stat-card p {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0;
    font-size: 1rem;
}

/* =========================================
   Our Story Section
   ========================================= */
.our-story {
    padding: 100px 0;
    background-color: var(--white);
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-navy);
}

.story-content h2 .text-green {
    color: var(--accent-green);
}

.story-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-green-arrow {
    background-color: var(--accent-green);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-green-arrow:hover {
    background-color: #1eb655;
    color: var(--white);
    transform: translateX(5px);
}

.story-image {
    position: relative;
}

.story-image img {
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

/* Header Button Special */
.btn-green-quote {
    background-color: var(--accent-green) !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-green-quote:hover {
    background-color: #1eb655 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* =========================================
   Our Values Section
   ========================================= */
.our-values {
    padding: 100px 0;
    background-color: #fceceb;
    /* Very faint warm tone or just white if per screenshot? Screenshot looks like white cards on light bg */
    background-color: #f9f9fa;
    /* Light greyish */
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.section-heading h2 .text-green {
    color: var(--accent-green);
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    /* Slightly smaller radius or 20px */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.value-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--accent-green);
    border-radius: 8px;
    /* Rounded square based on checkmark look */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
   Our Team Section
   ========================================= */
.our-team {
    padding: 100px 0;
    background-color: var(--white);
}

.team-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    /* Gradient for the icon circle */
    background: linear-gradient(135deg, #a88d5e 0%, #d4b47a 100%);
    /* Goldish tone from screenshot? Or Green? Screenshot has distinct colors */
    /* Screenshot: E(Tech) is Green/Gold?, C(Support) is Green, Q(QA) is Green/Gold. Let's stick to a nice Gradient Green-Gold logic or strictly Green */
    background: linear-gradient(135deg, #7ad493 0%, #25D366 100%);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Variant colors if desired to match specific "E", "C", "Q" colors from screenshot if they differ. 
   Assuming consistent Green branding for now. */

.team-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-navy);
}

.team-role {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 20px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    padding: 100px 0;
    background-color: var(--accent-green);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-white-arrow {
    background-color: var(--white);
    color: var(--accent-green);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white-arrow:hover {
    background-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-3px);
}

/* =========================================
   Responsive Adjustments
   ========================================= */

/* =========================================
   MOBILE-FIRST RESPONSIVE OVERRIDES (About)
   ========================================= */

@media (max-width: 768px) {

    /* About Hero */
    .about-hero {
        padding: 120px 0 60px;
        /* Reduced padding */
        text-align: center;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    /* Stats Section */
    .stats-section {
        margin-top: 30px;
        /* Remove negative margin overlap */
        padding-bottom: 40px;
    }

    .stat-card {
        margin-bottom: 15px;
        padding: 25px 15px;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    /* Our Story */
    .story-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .story-image {
        margin-top: 20px;
    }

    .btn-green-arrow {
        width: 100%;
        justify-content: center;
    }

    /* Our Values */
    .value-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
        padding: 25px;
    }

    .value-icon {
        margin-bottom: 10px;
    }

    /* Team */
    .team-card {
        margin-bottom: 20px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .btn-white-arrow {
        width: 100%;
        justify-content: center;
    }
}