﻿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;
}
/* ===========================
   PROMOTER SECTION
=========================== */

.promoter-section {
    padding: 90px 5%;
    background: #f8fafc;
}

.promoter-container {
    max-width: 1200px;
    margin: auto;
}

.promoter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT CONTENT */

.promoter-details {
    flex: 1;
}

.promoter-tag {
    background: #e6f4ea;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.promoter-name {
    font-size: 38px;
    margin-top: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.promoter-role {
    font-size: 20px;
    margin-top: 5px;
    color: #2e7d32;
}

.promoter-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* STATS */

.promoter-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
}

    .stat-box h3 {
        font-size: 32px;
        color: #2e7d32;
    }

    .stat-box span {
        font-size: 14px;
        color: #555;
    }

/* QUOTE */

.promoter-quote {
    margin-top: 30px;
    font-style: italic;
    color: #2e7d32;
    font-weight: 500;
}

/* IMAGE */

.promoter-image {
    flex: 1;
    text-align: right;
}

    .promoter-image img {
        width: 100%;
        max-width: 420px;
        border-radius: 15px;
        box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    }

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media(max-width:900px) {

    .promoter-card {
        flex-direction: column-reverse;
        text-align: center;
    }

    .promoter-image {
        text-align: center;
    }

    .promoter-stats {
        justify-content: center;
    }

    .promoter-name {
        font-size: 28px;
    }
}
