﻿/* ===== Who We Are Section ===== */
.who-we-are-section {
    width: 100%;
    min-height: 750px;
    background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.who-we-are-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    gap: 50px;
    flex-wrap: wrap;
}

/* ===== Left Side Content ===== */
.who-content {
    flex: 1 1 50%;
    color: #2a2a2a;
    animation: slideInLeft 1s ease forwards;
}

    .who-content h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 15px;
        color: #2e7d32; /* bold green accent */
    }

    .who-content h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #388e3c;
    }

    .who-content p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 18px;
        color: #424242;
        font-weight: 500;
    }

.btn-learn-more {
    display: inline-block;
    padding: 15px 35px;
    background-color: #43a047;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

    .btn-learn-more::after {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255,255,255,0.2);
        transition: width 0.3s;
        z-index: 1;
    }

    .btn-learn-more:hover::after {
        width: 100%;
    }

    .btn-learn-more:hover {
        transform: translateY(-5px);
    }

/* ===== Right Side Image ===== */
.who-image {
    flex: 1 1 50%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.5s ease;
}

    .who-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .who-image:hover img {
        transform: scale(1.08) rotate(1deg);
    }

/* ===== Animations ===== */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Interactive cursor hover effect ===== */
.who-content:hover h2, .who-content:hover h3 {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.who-content:hover p {
    transform: translateX(2px);
    transition: transform 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .who-we-are-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .who-content {
        flex: 1 1 100%;
    }

    .who-image {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
}
