.about-us-section {
    padding: 4rem 1rem;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
}

.about-us-small {
    font-size: 1rem;
    color: #ff8a00; /* secondary accent */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.about-us-small:hover {
    color: #fe5200; /* primary accent */
}

.about-us-medium {
    font-size: 2.4rem;
    font-weight: 900;
    margin: 0.7rem 0 1.8rem;
    line-height: 1.3;
    color: #fe5200; /* primary accent */
}

.about-us-medium:hover {
    color: #ff8a00;
    cursor: pointer;
}

.about-us-description {
    font-size: 1.2rem;
    color: #adb5bd; /* white-50 */
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1rem;
    transition: color 0.3s ease;
}

.about-us-description:hover {
    color: #161616;
}

.accent-line {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #fe5200, #ff8a00);
    margin: 0 auto 2rem auto;
    border-radius: 20px;
    animation: expandLine 1s ease-out forwards;
    opacity: 0;
}

@keyframes expandLine {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-us-medium {
        font-size: 1.8rem;
    }

    .about-us-description {
        font-size: 1rem;
    }
}

.about-us-image-container {
    width: 100%;
    margin: 2rem auto; /* centers the container */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-full-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    animation: fadeInImage 1s ease-in-out;
    max-height: 650px;
    border-radius: 12px; /* optional: rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* optional: shadow */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us-full-image {
        max-height: 280px;
    }

    .about-us-image-container {
        width: 90%;
    }
}

/* Fade-in animation */
@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.about-us-story-section {
    padding: 4rem 1rem;
    background-color: #fff;
    color: #1a1a1a;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.story-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fe5200; /* primary accent orange */
    margin-bottom: 0.5rem;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fe5200, #ff8a00);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: width 1s ease;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 420px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInImage 1s ease-in-out;
}

.story-description {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .story-title {
        font-size: 1.5rem;
    }

    .story-description {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .story-image {
        max-height: 260px;
    }
}

/* Animation */
@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* ---------- Ecosystem Wrapper (Main Sections) ---------- */
.ecosystem-wrapper {
    max-width: 960px;
    margin: 4rem auto;
    padding: 0 1rem;
    text-align: center;
}

.ecosystem-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    color: #fe5200;
}

.ecosystem-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Content: flex text + image */
.ecosystem-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}

.ecosystem-text {
    flex: 1 1 300px;
}

.innovation-title {
    font-size: 1.7rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.8rem;
    color: #fe5200;
}

.innovation-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Ecosystem images with equal size and brand styling */
.ecosystem-wrapper .ecosystem-image {
    flex: 1 1 300px;
    text-align: center;
}

.ecosystem-wrapper .ecosystem-image img {
    width: 100%;
    max-width: 360px;
    height: 240px;
    object-fit: fill;
    border-radius: 16px;
    box-shadow: 0 6px 25px var(--shadow-color);
    transition: transform 0.3s ease;
    animation: fadeInImage 1s ease-in-out;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.ecosystem-wrapper .ecosystem-image img:hover {
    transform: scale(1.05);
}

/* ---------- Three Images Section ---------- */
.three-images-section {
    padding: 4rem 1rem;
    text-align: center;
    background-color: var(--bg-light);
}

.feature-image {
    width: 100%;
    max-width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(254, 82, 0, 0.15);
    transition: transform 0.3s ease;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.feature-image:hover {
    transform: scale(1.05);
}

.feature-caption {
    margin-top: 0.8rem;
    font-size: 1rem;
    color: #555555;
}

/* ---------- Ecosystem Two Images (pairs) ---------- */
.ecosystem-two-images {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.ecosystem-two-images img {
    width: 100%;
    max-width: 440px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-color);
    transition: transform 0.3s ease;
    display: block;
}

.ecosystem-two-images img:hover {
    transform: scale(1.05);
}

/* ---------- Ecosystem Single Image ---------- */
.ecosystem-single-image {
    width: 100%;
    max-width: 700px;
    margin: 2rem auto 0 auto;
    display: flex;
    justify-content: center;
}

.ecosystem-single-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-color);
    transition: transform 0.3s ease;
    display: block;
}

.ecosystem-single-image img:hover {
    transform: scale(1.03);
}

/* ---------- Serving Section ---------- */
.serving-section {
    max-width: 960px;
    margin: 3rem auto;
    padding: 0 1rem;
    text-align: center;
}

.serving-text {
    margin-bottom: 2rem;
}

.serving-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    color: #fe5200;
}

.serving-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .ecosystem-wrapper .ecosystem-image img,
    .three-images-section .feature-image,
    .ecosystem-two-images img,
    .ecosystem-single-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .ecosystem-content {
        flex-direction: column;
        text-align: center;
    }

    .ecosystem-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ecosystem-wrapper .ecosystem-image img,
    .three-images-section .feature-image,
    .ecosystem-two-images img,
    .ecosystem-single-image img {
        max-width: 100%;
        height: auto;
    }

    .ecosystem-two-images {
        flex-direction: column;
    }
}

/* ---------- Animation ---------- */
@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-section {
    max-width: 960px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.stats-container {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.stats-image {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.stats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.stats-content {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.8rem;
    color: #fe5200; /* brand color */
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-description {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
    }

    .stats-content {
        grid-template-columns: 1fr;
    }

    .stats-image img {
        height: auto;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-description {
        font-size: 1.15rem;
    }
}

.founders-section {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #f9f9f9;
}

.serving-text {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.serving-title {
    font-size: 2rem;
    color: #fe5200; /* your brand orange */
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.serving-subtitle {
    font-size: 1.1rem;
    color: #666666;
}

.founders-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.founder-card {
    max-width: 260px;
    flex: 1 1 240px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.founder-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #222;
}

.founder-role {
    font-size: 0.95rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .founders-container {
        flex-direction: column;
        align-items: center;
    }

    .founder-card {
        width: 100%;
        max-width: 300px;
        flex: 1 1 400px;
    }
}

.team-images-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
    text-align: center;
}

.team-images-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-image-box {
    flex: 1 1 400px;
    max-width: 440px;
    background: white;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    border-radius: 16px 16px 0 0;
}

.team-text {
    padding: 1rem 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .team-image-box {
        max-width: 90vw;
    }
}
