/*=========================================================
    ABOUT PAGE
=========================================================*/

:root {
    --ab-primary: #173F7A;
    --ab-secondary: #0F2C56;
    --ab-accent: #F6B019;
    --ab-light: #F6F9FF;
    --ab-border: #E2E8F2;
    --ab-text: #374151;
    --ab-muted: #6B7280;
    --ab-shadow-sm: 0 10px 30px rgba(23, 63, 122, .08);
    --ab-shadow-md: 0 26px 60px rgba(23, 63, 122, .16);
    --ab-radius: 24px;
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up--delay {
    transition-delay: .14s;
}

.fade-up--delay-2 {
    transition-delay: .28s;
}

.ab-tag {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ab-accent);
    margin-bottom: 14px;
}

.ab-section-head {
    text-align: center;
    margin-bottom: 30px;
}

.ab-section-head h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    color: var(--ab-primary);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.ab-section-head h3::before,
.ab-section-head h3::after {
    content: "";
    width: 38px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--ab-accent), transparent);
}

.ab-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0 58px;
    background:
        radial-gradient(circle at 8% 10%, rgba(229, 154, 23, .10) 0%, rgba(229, 154, 23, 0) 35%),
        radial-gradient(circle at 96% 86%, rgba(23, 63, 122, .11) 0%, rgba(23, 63, 122, 0) 34%),
        #FFFFFF;
}

.ab-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 2px dashed rgba(229, 154, 23, .45);
    pointer-events: none;
}

.ab-hero-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 32px;
    align-items: center;
}

.ab-hero-content h1 {
    font-size: clamp(2rem, 3.05vw, 3.52rem);
    line-height: 1.12;
    margin-bottom: 18px;
    color: var(--ab-primary);
}

.ab-hero-content h1 span {
    color: var(--ab-accent);
}

.ab-hero-text {
    max-width: 560px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ab-text);
}

.ab-hero-actions {
    margin-top: 26px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.ab-hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ab-primary);
    color: #79FF9D;
    border: 2px solid rgba(255, 255, 255, .45);
}

.ab-hero-actions .btn-secondary:hover {
    background: var(--ab-secondary);
    color: #79FF9D;
    border-color: rgba(255, 255, 255, .62);
}

.ab-hero-visual {
    position: relative;
    min-height: 300px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background:
        radial-gradient(circle at 70% 22%, rgba(229, 154, 23, .18), rgba(229, 154, 23, 0) 42%),
        linear-gradient(155deg, #F6F9FF 0%, #FFFFFF 48%, #EEF4FF 100%);
    border: 1px solid #E9EDF7;
    box-shadow: var(--ab-shadow-sm);
}

.ab-hero-logo-wrap {
    text-align: center;
    z-index: 2;
}

.ab-hero-logo {
    width: min(440px, 90%);
    margin: 0 auto;
}

.ab-hero-logo-wrap p {
    margin-top: 12px;
    color: var(--ab-secondary);
    font-weight: 700;
    letter-spacing: .4px;
}

.ab-plane {
    position: absolute;
    color: var(--ab-accent);
    font-size: 1.4rem;
    opacity: .8;
}

.ab-plane-one {
    top: 18%;
    right: 13%;
    transform: rotate(-10deg);
    animation: driftPlane 4.8s ease-in-out infinite;
}

.ab-plane-two {
    bottom: 16%;
    left: 10%;
    transform: rotate(18deg);
    animation: driftPlane 5.5s ease-in-out infinite reverse;
}

@keyframes driftPlane {
    0%,
    100% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(-8px) rotate(10deg); }
}

.ab-founder {
    padding: 56px 0;
    background: #FFFFFF;
}

.ab-founder-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 34px;
    align-items: start;
}

.ab-founder-image {
    width: 100%;
    max-width: 470px;
    max-height: 490px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--ab-shadow-md);
    border: 1px solid #E6ECF8;
}

.ab-founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ab-founder-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.45vw, 2.8rem);
    color: var(--ab-primary);
    margin-bottom: 18px;
}

.ab-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ab-highlight-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid var(--ab-border);
    background: #fff;
}

.ab-highlight-card i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #123E7A;
    color: #fff;
    font-size: .84rem;
}

.ab-highlight-card p {
    font-size: .95rem;
    line-height: 1.45;
    color: #31405A;
    font-weight: 600;
}

.ab-founder-note {
    margin-top: 16px;
    color: var(--ab-muted);
    line-height: 1.7;
    max-width: 680px;
}

.ab-testimonials {
    padding: 40px 0;
    background: linear-gradient(180deg, #F9FBFF 0%, #FFFFFF 100%);
}

.ab-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ab-testimonial-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #E7EDF8;
    box-shadow: var(--ab-shadow-sm);
    padding: 20px 18px;
}

.ab-stars {
    color: var(--ab-accent);
    font-size: .85rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.ab-testimonial-card p {
    color: var(--ab-text);
    font-size: .98rem;
    line-height: 1.68;
    margin-bottom: 12px;
}

.ab-testimonial-card span {
    font-weight: 600;
    color: #334155;
}

.ab-testimonial-role {
    margin: 6px 0 0;
    font-size: .87rem;
    line-height: 1.5;
    color: #667085;
    font-style: italic;
}

.ab-help {
    padding: 38px 0 48px;
    background: #FFFFFF;
}

.ab-help-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.ab-help-card {
    padding: 22px 15px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid var(--ab-border);
    background: #fff;
    transition: transform .28s ease, box-shadow .28s ease;
}

.ab-help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(15, 44, 86, .12);
}

.ab-help-card i {
    font-size: 1.55rem;
    color: var(--ab-primary);
    margin-bottom: 12px;
}

.ab-help-card h4 {
    font-size: .98rem;
    color: var(--ab-primary);
    margin-bottom: 8px;
}

.ab-help-card p {
    font-size: .88rem;
    line-height: 1.58;
    color: var(--ab-muted);
}

.ab-benefits {
    padding: 20px 0 44px;
    background: #fff;
}

.ab-benefit-row {
    border-radius: 20px;
    border: 1px solid #E6ECF8;
    background: #FDFEFF;
    box-shadow: var(--ab-shadow-sm);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
}

.ab-benefit-item {
    padding: 24px 18px;
    text-align: center;
    position: relative;
}

.ab-benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 0;
    bottom: 24px;
    border-right: 1px dashed #D5E0F3;
}

.ab-benefit-item i {
    font-size: 1.38rem;
    color: var(--ab-primary);
    margin-bottom: 12px;
}

.ab-benefit-item h4 {
    font-size: .95rem;
    color: var(--ab-primary);
    margin-bottom: 8px;
}

.ab-benefit-item p {
    font-size: .86rem;
    line-height: 1.58;
    color: #5F6B7D;
}

.ab-journey-cta {
    padding: 8px 0 54px;
    background: #fff;
}

.ab-journey-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 34px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background:
        linear-gradient(135deg, rgba(9, 43, 95, .95), rgba(21, 70, 132, .95)),
        url('../Images/Footer.png') center/cover no-repeat;
}

.ab-journey-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 36, 82, .84), rgba(11, 47, 101, .25));
}

.ab-journey-text,
.ab-journey-actions {
    position: relative;
    z-index: 2;
}

.ab-journey-text h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.7rem, 2.3vw, 2.5rem);
    margin-bottom: 8px;
}

.ab-journey-text p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.03rem;
}

.ab-journey-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ab-journey-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ab-primary);
    color: #79FF9D;
    border-color: rgba(255, 255, 255, .45);
}

.ab-journey-actions .btn-secondary:hover {
    background: var(--ab-secondary);
    color: #79FF9D;
    border-color: rgba(255, 255, 255, .62);
}

@media (max-width: 1240px) {
    .ab-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ab-help-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 1024px) {
    .ab-hero-grid,
    .ab-founder-grid {
        grid-template-columns: 1fr;
    }

    .ab-hero-content {
        order: 1;
    }

    .ab-hero-visual {
        order: 2;
        min-height: 260px;
    }

    .ab-founder-content {
        order: 2;
    }

    .ab-founder-image {
        max-width: 560px;
        max-height: none;
        margin: 0 auto;
    }

    .ab-benefit-row {
        grid-template-columns: 1fr 1fr;
    }

    .ab-benefit-item:not(:last-child)::after {
        display: none;
    }

    .ab-journey-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }
}

@media (max-width: 840px) {
    .ab-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .ab-highlights {
        grid-template-columns: 1fr;
    }

    .ab-help-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .ab-hero {
        padding-top: 30px;
    }

    .ab-hero::after {
        width: 220px;
        height: 220px;
        right: -62px;
        bottom: -52px;
    }

    .ab-hero-actions,
    .ab-journey-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .ab-hero-actions a,
    .ab-journey-actions a {
        width: 100%;
        justify-content: center;
    }

    .ab-help-grid,
    .ab-benefit-row {
        grid-template-columns: 1fr;
    }

    .ab-benefit-item {
        border-bottom: 1px dashed #D5E0F3;
    }

    .ab-benefit-item:last-child {
        border-bottom: 0;
    }

    .ab-section-head h3::before,
    .ab-section-head h3::after {
        width: 22px;
    }
}
