/* Typography & General Variables */
:root {
    --primary-blue: #0A58CA;
    --dark-blue: #081D33;
    --accent-red: #E11D48;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --border-color: #E2E8F0;
    --white: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    color: var(--dark-blue);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Common Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-badge.center {
    justify-content: center;
}

.section-badge .line {
    width: 24px;
    height: 2px;
    background-color: var(--accent-red);
    display: inline-block;
}

/* Hero Section */
.about-hero {
    position: relative;
    padding: 120px 20px 80px;
    background: url('../images/about_hero_bg.png') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 29, 51, 0.9) 0%, rgba(10, 88, 202, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-btns .btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-blue);
}

.hero-btns .btn-primary:hover {
    background: #084298;
}

.hero-btns .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-btns .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 5px 0;
}

.stat-item span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Trusted Partner Section */
.trusted-partner {
    padding: 100px 0;
    background: var(--white);
}

.trusted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.badge-float {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}

.badge-float h3 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 800;
}

.badge-float span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}

.trusted-content-col h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.trusted-content-col .lead {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-blue);
    line-height: 1.7;
    margin-bottom: 20px;
}

.trusted-content-col p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.trusted-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-box i {
    font-size: 1.3rem;
    color: var(--primary-blue);
    background: rgba(10, 88, 202, 0.1);
    width: 36px;
    padding: 5px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.feature-box h4 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.feature-box span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Vision & Mission Section */
.vision-mission {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-header p {
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.icon-wrapper.blue {
    background: rgba(10, 88, 202, 0.1);
    color: var(--primary-blue);
}

.icon-wrapper.red {
    background: rgba(225, 29, 72, 0.1);
    color: var(--accent-red);
}

.vm-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 15px;
}

.vm-list li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Core Values Section */
.core-values {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: rgba(10, 88, 202, 0.3);
    transform: translateY(-5px);
}

.value-card .icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.value-card:hover .icon {
    background: var(--primary-blue);
    color: var(--white);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* Advantage Section */
.advantage-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantage-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.adv-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.adv-item {
    display: flex;
    gap: 20px;
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.adv-item h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
}

.adv-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.adv-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.adv-stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}

.adv-stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 10px 0;
}

.adv-stat-card span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: 1px;
}

/* What We Do Section */
.what-we-do {
    padding: 100px 0;
    background: var(--bg-light);
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wwd-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.wwd-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.wwd-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(10, 88, 202, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.wwd-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.wwd-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 25px;
}

.wwd-card .learn-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.wwd-card .learn-more:hover {
    gap: 5px;
}

/* Industries We Serve Section */
.industries-serve {
    padding: 100px 0;
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.ind-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.industry-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.industry-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pills span {
    background: rgba(10, 88, 202, 0.05);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(10, 88, 202, 0.1);
}

/* Testing Process Section */
.testing-process {
    padding: 100px 0;
    background: var(--dark-blue);
    color: var(--white);
}

.testing-process .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.process-timeline-grid {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 30px;
    align-items: center;
}

.process-step {
    background: #0E2443;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    box-sizing: border-box;
}

.timeline-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.timeline-line-continuous {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(10, 88, 202, 0.1), rgba(10, 88, 202, 0.8), rgba(10, 88, 202, 0.1));
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-icon {
    width: 55px;
    height: 55px;
    background: #081D33;
    border: 4px solid var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 0 0 2px rgba(10, 88, 202, 0.6), 0 0 20px rgba(10, 88, 202, 0.8);
}

.step-badge {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.process-step h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
}

.process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* Client Voices Section */
.client-voices {
    padding: 100px 0;
    background: var(--white);
}

.voices-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.rating-box {
    text-align: right;
}

.rating-box .score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.rating-box .stars {
    color: #F59E0B;
    font-size: 1.2rem;
}

.rating-box .rating-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(10, 88, 202, 0.2);
}

.quote-mark {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(10, 88, 202, 0.1);
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-card.active .quote-mark {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 30px;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-muted);
}

.testimonial-card.active p {
    color: rgba(255, 255, 255, 0.9);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-card.active .avatar {
    background: rgba(255, 255, 255, 0.2);
}

.client-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 700;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-card.active .client-info span {
    color: rgba(255, 255, 255, 0.7);
}

/* Standards/Accreditations Section */
.accreditations-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.accreditations-section .section-header h2 {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 48px; }
    .trusted-grid, .vm-grid, .advantage-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 30px; }
    .values-grid, .wwd-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .voices-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .rating-box { text-align: left; }
    .rating-box .score { justify-content: flex-start; }
    .testimonials-slider { grid-template-columns: 1fr; gap: 20px; }
    .testimonial-card.active { transform: none; }
}


@media (max-width: 768px) {
    .about-hero { padding-top: 100px; min-height: auto; }
    .trusted-partner, .vision-mission, .core-values, .advantage-section, .what-we-do, .industries-serve, .testing-process, .client-voices, .accreditations-section {
        padding: 50px 0 !important;
    }

    .hero-content h1 { font-size: 48px; }
    .values-grid, .wwd-grid, .industries-grid { grid-template-columns: 1fr; }
    .adv-stats-grid { grid-template-columns: 1fr; }
    .trusted-features { grid-template-columns: 1fr; }
    .process-timeline-grid { grid-template-columns: 1fr; gap: 20px; }
    .timeline-center { display: none; }
    .timeline-line-continuous { display: none; }
}
