﻿/* ============================================
   ABOUT US PAGE — LIGHT THEME
   Primary: rgb(0, 160, 232) = #00A0E8
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */

.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 160deg, #edf4ff 0%, #e0eefa 30%, #d2e8fc 60%, #c5e0fa 100% );
    overflow: hidden;
    margin-top: -76px;
    padding-top: 76px;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(0, 160, 232, 0.07) 0%, transparent 60%), radial-gradient(ellipse at 70% 70%, rgba(0, 100, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Floating shapes */
.about-hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.about-shape-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 160, 232, 0.08) 0%, transparent 70%);
    top: -90px;
    right: -70px;
    animation: aboutShapeFloat 8s ease-in-out infinite;
}

.about-shape-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 130, 200, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -40px;
    animation: aboutShapeFloat 10s ease-in-out infinite reverse;
}

.about-shape-3 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 160, 232, 0.05) 0%, transparent 70%);
    top: 35%;
    left: 55%;
    animation: aboutShapeFloat 12s ease-in-out infinite;
}

.about-shape-4 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 100, 170, 0.04) 0%, transparent 70%);
    top: 15%;
    left: 10%;
    animation: aboutShapeFloat 9s ease-in-out infinite reverse;
}

@keyframes aboutShapeFloat {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

/* Hero Badge */
.about-hero-badge {
    display: inline-block;
    background: rgba(0, 160, 232, 0.1);
    border: 1px solid rgba(0, 160, 232, 0.22);
    color: rgb(0, 120, 190);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    animation: aboutFadeInDown 0.7s ease;
}

/* Hero Title */
.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2b42;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    animation: aboutFadeInUp 0.7s ease 0.15s both;
}

/* Hero Description */
.about-hero-description {
    font-size: 1.1rem;
    color: #4a5e78;
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: aboutFadeInUp 0.7s ease 0.3s both;
}

/* Hero CTA */
.about-hero-cta {
    animation: aboutFadeInUp 0.7s ease 0.45s both;
}

.btn-about-primary {
    background: linear-gradient(135deg, rgb(0, 160, 232), rgb(0, 130, 200));
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.02rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 160, 232, 0.28);
}

    .btn-about-primary:hover {
        background: linear-gradient(135deg, rgb(0, 130, 200), rgb(0, 100, 170));
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(0, 160, 232, 0.38);
    }

/* Shared animations */
@keyframes aboutFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

.about-badge {
    display: inline-block;
    background: rgba(0, 160, 232, 0.08);
    border: 1px solid rgba(0, 160, 232, 0.18);
    color: rgb(0, 120, 190);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.38rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a2b42;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.about-section-subtitle {
    font-size: 1.02rem;
    color: #5a6e84;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   WHAT IS AMBLES — PLATFORM HIGHLIGHT
   ============================================ */

.whatis-section {
    background: #ffffff;
    padding: 6rem 0;
}

.platform-highlight {
    background: #f9fbfd;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 2.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

    .platform-highlight::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa, rgb(0, 130, 200));
        border-radius: 20px 20px 0 0;
    }

    .platform-highlight:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        border-color: #dce4ec;
    }

.platform-highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.platform-highlight:hover .platform-highlight-icon {
    transform: scale(1.1);
}

.platform-highlight h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.75rem;
}

.platform-highlight p {
    font-size: 0.95rem;
    color: #5a6e84;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */

.mission-section {
    background: linear-gradient(160deg, #f5f9ff 0%, #eaf2fc 50%, #e2edfa 100%);
    padding: 6rem 0;
}

.mission-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .mission-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

.mission-card-mission::after {
    background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa);
}

.mission-card-vision::after {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    border-color: #d0dae6;
}

    .mission-card:hover::after {
        transform: scaleX(1);
    }

.mission-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-card-icon {
    transform: scale(1.1);
}

.mission-icon-blue {
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
}

.mission-icon-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.mission-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.75rem;
}

.mission-card p {
    font-size: 0.95rem;
    color: #5a6e84;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    background: #ffffff;
    padding: 6rem 0;
}

.value-card {
    background: #f9fbfd;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .value-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .value-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        border-color: #dce4ec;
    }

        .value-card:hover::after {
            transform: scaleX(1);
        }

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon-blue {
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
}

.value-icon-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.value-icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.value-icon-orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.value-icon-emerald {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.value-icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.value-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.65rem;
}

.value-card p {
    font-size: 0.92rem;
    color: #5a6e84;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   STORY SECTION
   ============================================ */

.story-section {
    background: linear-gradient(160deg, #f5f9ff 0%, #eaf2fc 50%, #e2edfa 100%);
    padding: 6rem 0;
}

.story-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 2.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

    .story-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
        border-radius: 20px 20px 0 0;
    }

    .story-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        border-color: #dce4ec;
    }

.story-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.story-card:hover .story-card-icon {
    transform: scale(1.1);
}

.story-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.75rem;
}

.story-card p {
    font-size: 0.95rem;
    color: #5a6e84;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */

.about-stats-section {
    background: #ffffff;
    padding: 6rem 0;
}

.about-stats-wrapper {
    position: relative;
}

.about-stat-card {
    background: #f9fbfd;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    transition: all 0.35s ease;
    position: relative;
}

    .about-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    }

.about-stat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.about-stat-card:hover .about-stat-icon-wrap {
    transform: scale(1.1);
}

.about-stat-icon-blue {
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
}

.about-stat-icon-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.about-stat-icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.about-stat-icon-orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.about-stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a2b42;
    line-height: 1;
    display: inline;
}

.about-stat-suffix {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(0, 160, 232);
    display: inline;
}

.about-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5a6e84;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.about-cta-section {
    background: linear-gradient(160deg, #f5f9ff 0%, #eaf2fc 50%, #e2edfa 100%);
    padding: 6rem 0;
}

.about-cta-wrapper {
    position: relative;
}

.about-cta-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .about-cta-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa, rgb(0, 130, 200));
    }

    .about-cta-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
        border-color: #d0dae6;
    }

.about-cta-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.about-cta-card:hover .about-cta-icon {
    transform: scale(1.1);
}

.about-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.75rem;
}

.about-cta-text {
    font-size: 1rem;
    color: #5a6e84;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.about-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-about-cta {
    background: linear-gradient(135deg, rgb(0, 160, 232), rgb(0, 130, 200));
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 160, 232, 0.25);
}

    .btn-about-cta:hover {
        background: linear-gradient(135deg, rgb(0, 130, 200), rgb(0, 100, 170));
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 160, 232, 0.35);
    }

.btn-about-outline {
    background: transparent;
    color: rgb(0, 160, 232);
    border: 2px solid rgba(0, 160, 232, 0.3);
    padding: 0.7rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-about-outline:hover {
        background: rgba(0, 160, 232, 0.08);
        border-color: rgb(0, 160, 232);
        color: rgb(0, 130, 200);
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(0, 160, 232, 0.15);
    }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199.98px) {
    .about-hero-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 991.98px) {
    .about-hero {
        margin-top: -62px;
        padding-top: 62px;
        min-height: 60vh;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .whatis-section,
    .mission-section,
    .values-section,
    .story-section,
    .about-stats-section,
    .about-cta-section {
        padding: 4rem 0;
    }

    .about-section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero-title {
        font-size: 1.85rem;
    }

    .about-hero-description {
        font-size: 0.98rem;
        padding: 0 0.5rem;
    }

    .about-hero-content {
        padding: 2.5rem 0;
    }

    .about-section-title {
        font-size: 1.55rem;
    }

    .platform-highlight,
    .story-card {
        padding: 2rem 1.5rem;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }

    .value-card,
    .about-stat-card {
        padding: 1.5rem 1.25rem;
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .about-cta-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 1.55rem;
    }

    .about-hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }

    .btn-about-primary {
        width: 100%;
        max-width: 280px;
    }

    .btn-about-cta,
    .btn-about-outline {
        width: 100%;
        max-width: 280px;
    }
}
