﻿body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* HERO */
.about-hero {
    position: relative;
    min-height: 100vh;
    background: url('/Content/Images/about-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-grid {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.hero-left h1 {
    font-size: 55px;
    font-weight: 800;
}

.hero-left span {
    color: #28a745;
}

.hero-buttons a {
    padding: 12px 28px;
    border-radius: 30px;
    margin-right: 15px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: #28a745;
    color: #fff;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-right img {
    max-width: 450px;
    border-radius: 15px;
}

/* JOURNEY */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.timeline-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: .3s;
}

    .value-card:hover {
        transform: translateY(-8px);
    }

.highlight {
    background: #28a745;
    color: #fff;
}

/* FOUNDER */
.founder-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.founder-image img {
    width: 450px;
    border-radius: 20px;
}

.founder-stats {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.stat-box h3 {
    font-size: 30px;
    color: #28a745;
}
