/* =========================
   ABOUT US PAGE
========================= */
:root {
    --brand-gold: #efb506;
    --brand-gold-dark: #d49b00;
    --brand-dark: #111111;
    --brand-text: #222222;
    --brand-muted: #5b5b5b;
    --brand-light: #f8f9fb;
    --brand-border: #e9e9e9;
    --white: #ffffff;
}



#about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background-image: url('/resources/About Us/About Us.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.72),
        rgba(0, 0, 0, 0.45)
    );
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.section-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #efb506;
    margin-bottom: 18px;
}

.about-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero-subtext {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.about-section {
    background: #ffffff;
    padding: 90px 20px;
}

.about-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.about-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 40px 34px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Poppins', sans-serif;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.about-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #efb506;
    margin-bottom: 12px;
}

.about-card h2 {
    font-size: 2rem;
    line-height: 1.25;
    color: #111;
    margin-bottom: 12px;
}

.section-accent {
    width: 80px;
    height: 4px;
    background: #efb506;
    border-radius: 999px;
    margin: 18px 0 24px;
}

.center-accent {
    margin-left: auto;
    margin-right: auto;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.85;
    color: #4f4f4f;
    margin-bottom: 18px;
}

#why-choose-ojus {
    background: #f8f9fb;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111;
    margin-bottom: 14px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.why-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #ebebeb;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.why-card h3 {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 12px;
}

.why-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.98rem;
}

#about-cta {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Core Values Section */
#core-values-section {
    padding: 95px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.core-values-list {
    display: grid;
    gap: 34px;
    margin-top: 10px;
}

.core-value-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.core-value-row.reverse .core-value-image {
    order: 2;
}

.core-value-row.reverse .core-value-content {
    order: 1;
}

.core-value-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.core-value-content h3 {
    font-size: 2rem;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 16px;
}

.core-value-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
}

/* Responsive */
@media (max-width: 992px) {
    .core-value-row {
        grid-template-columns: 1fr;
    }

    .core-value-row.reverse .core-value-image,
    .core-value-row.reverse .core-value-content {
        order: initial;
    }

    .core-value-image img {
        height: 260px;
    }
}

@media (max-width: 640px) {
    #core-values-section {
        padding: 75px 20px;
    }

    .core-value-row {
        padding: 18px;
    }

    .core-value-content h3 {
        font-size: 1.55rem;
    }

    .core-value-image img {
        height: 220px;
    }
}


/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    #about-hero {
        min-height: 70vh;
        padding: 120px 20px 60px;
    }

    .about-card {
        padding: 28px 22px;
    }

    .about-card h2 {
        font-size: 1.6rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-subtext {
        font-size: 1rem;
    }
}
