/* =========================================================
   LAMiC - ABOUT PAGE
   PROFESSIONAL CORPORATE FINANCIAL DESIGN
   Legacy Africa Micro-Credit Ltd
========================================================= */


/* =========================================================
   1. DESIGN VARIABLES
========================================================= */

:root {

    --lamic-navy: #18325B;
    --lamic-navy-dark: #0E223F;
    --lamic-navy-deep: #091A31;
    --lamic-navy-light: #274B78;

    --lamic-gold: #C9A227;
    --lamic-gold-dark: #A77F12;
    --lamic-gold-light: #E7D58F;
    --lamic-gold-pale: #FBF8EC;

    --lamic-white: #FFFFFF;

    --lamic-text: #344054;
    --lamic-text-dark: #172033;
    --lamic-text-light: #667085;

    --lamic-bg: #F6F8FB;
    --lamic-bg-soft: #F9FAFC;

    --lamic-border: #E4E7EC;

    --lamic-shadow-sm:
        0 4px 16px rgba(16, 39, 70, 0.06);

    --lamic-shadow:
        0 12px 35px rgba(16, 39, 70, 0.10);

    --lamic-shadow-lg:
        0 24px 65px rgba(16, 39, 70, 0.14);

    --lamic-gold-shadow:
        0 10px 30px rgba(201, 162, 39, 0.22);

    --lamic-radius-sm: 6px;
    --lamic-radius: 12px;
    --lamic-radius-lg: 20px;

    --lamic-transition:
        all 0.3s ease;

}


/* =========================================================
   2. GLOBAL ABOUT PAGE
========================================================= */

.about-page {

    background: var(--lamic-white);

    color: var(--lamic-text);

    overflow: hidden;

}


.about-page *,
.about-page *::before,
.about-page *::after {

    box-sizing: border-box;

}


.about-page img {

    max-width: 100%;

}


.about-page a {

    transition: var(--lamic-transition);

}


/* =========================================================
   3. SECTION SYSTEM
========================================================= */

.section-padding {

    padding: 100px 0;

}


.section-label {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    color: var(--lamic-gold-dark);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.section-label::before {

    content: "";

    width: 32px;

    height: 2px;

    background: var(--lamic-gold);

}


.section-heading {

    max-width: 760px;

    margin-bottom: 55px;

}


.section-heading.centered {

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}


.section-heading.centered .section-label {

    justify-content: center;

}


.section-heading h2 {

    margin: 0 0 18px;

    color: var(--lamic-navy);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 750;

    letter-spacing: -0.7px;

}


.section-heading p {

    max-width: 680px;

    margin: 0;

    color: var(--lamic-text-light);

    font-size: 16px;

    line-height: 1.85;

}


.section-heading.centered p {

    margin-left: auto;

    margin-right: auto;

}


/* =========================================================
   4. ABOUT HERO
========================================================= */

.about-hero {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            120deg,
            rgba(9, 26, 49, 0.99),
            rgba(24, 50, 91, 0.97) 55%,
            rgba(28, 61, 97, 0.94)
        );

    overflow: hidden;

}


/* Large decorative circle */

.about-hero::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -260px;
    top: -260px;

    border: 1px solid rgba(201, 162, 39, 0.25);

    border-radius: 50%;

}


/* Small decorative circle */

.about-hero::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -150px;
    bottom: -160px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

}


.about-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9, 26, 49, 0.20),
            transparent
        );

    z-index: 1;

}


.about-hero-content {

    position: relative;

    z-index: 3;

    width: 100%;

    padding-top: 40px;

    padding-bottom: 70px;

}


.about-hero-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--lamic-gold-light);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.about-hero-label::before {

    content: "";

    width: 38px;

    height: 2px;

    background: var(--lamic-gold);

}


.about-hero h1 {

    max-width: 820px;

    margin: 0 0 22px;

    color: var(--lamic-white);

    font-size: clamp(42px, 6vw, 68px);

    line-height: 1.05;

    font-weight: 750;

    letter-spacing: -1.8px;

}


.about-hero h1 strong {

    display: block;

    color: var(--lamic-gold);

    font-weight: 750;

}


.about-hero p {

    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,0.76);

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================================
   5. BREADCRUMB
========================================================= */

.about-breadcrumb {

    position: absolute;

    left: 0;

    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    z-index: 5;

}


.about-breadcrumb a,
.about-breadcrumb span {

    color: rgba(255,255,255,0.70);

    font-size: 13px;

    text-decoration: none;

}


.about-breadcrumb a:hover {

    color: var(--lamic-gold);

}


.about-breadcrumb i {

    color: var(--lamic-gold);

    font-size: 9px;

}


/* =========================================================
   6. WHO WE ARE
========================================================= */

.about-intro {

    position: relative;

    background: var(--lamic-white);

}


.about-intro-grid {

    display: grid;

    grid-template-columns: 0.92fr 1.08fr;

    gap: 85px;

    align-items: center;

}


/* =========================================================
   7. WHO WE ARE IMAGE
========================================================= */

.about-intro-image {

    position: relative;

    padding-right: 30px;

    padding-bottom: 30px;

}


.about-image-main {

    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 20px;

    background: #E9EDF3;

    box-shadow: var(--lamic-shadow-lg);

}


.about-image-main::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(24,50,91,0.08),
            transparent 55%
        );

    pointer-events: none;

}


.about-image-main img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;

}


.about-intro-image:hover
.about-image-main img {

    transform: scale(1.035);

}


/* Decorative frame */

.about-intro-image::before {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -20px;
    bottom: 0;

    border-left: 3px solid var(--lamic-gold);

    border-bottom: 3px solid var(--lamic-gold);

    border-radius: 0 0 0 15px;

    z-index: 2;

    pointer-events: none;

}


/* =========================================================
   8. IMAGE INFORMATION CARD
========================================================= */

.about-image-card {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 250px;

    min-height: 105px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: var(--lamic-white);

    border-left: 4px solid var(--lamic-gold);

    border-radius: 12px;

    box-shadow: var(--lamic-shadow);

    z-index: 3;

}


.about-image-card-icon {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--lamic-navy);

    background: var(--lamic-gold-pale);

    border-radius: 50%;

    font-size: 19px;

}


.about-image-card strong {

    display: block;

    margin-bottom: 4px;

    color: var(--lamic-navy);

    font-size: 18px;

}


.about-image-card span {

    display: block;

    color: var(--lamic-text-light);

    font-size: 12px;

    line-height: 1.5;

}


/* =========================================================
   9. WHO WE ARE CONTENT
========================================================= */

.about-intro-content {

    max-width: 650px;

}


.about-intro-content h2 {

    margin: 0 0 24px;

    color: var(--lamic-navy);

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.13;

    font-weight: 750;

    letter-spacing: -0.7px;

}


.about-intro-content p {

    margin: 0 0 18px;

    color: var(--lamic-text);

    font-size: 15.5px;

    line-height: 1.9;

}


.about-intro-content .lead {

    color: var(--lamic-text-dark);

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   10. INTRO CHECK POINTS
========================================================= */

.about-intro-points {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--lamic-border);

}


.about-intro-points > div {

    display: flex;

    align-items: flex-start;

    gap: 9px;

}


.about-intro-points i {

    flex-shrink: 0;

    margin-top: 2px;

    color: var(--lamic-gold-dark);

    font-size: 16px;

}


.about-intro-points span {

    color: var(--lamic-text-dark);

    font-size: 13px;

    font-weight: 600;

    line-height: 1.5;

}


/* =========================================================
   11. MISSION & VISION
========================================================= */

.mission-section {

    position: relative;

    background: var(--lamic-bg);

}


.mission-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;

}


.mission-card {

    position: relative;

    display: grid;

    grid-template-columns: 75px 1fr;

    gap: 25px;

    padding: 42px;

    background: var(--lamic-white);

    border: 1px solid var(--lamic-border);

    border-radius: var(--lamic-radius-lg);

    box-shadow: var(--lamic-shadow-sm);

    overflow: hidden;

    transition: var(--lamic-transition);

}


.mission-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: var(--lamic-gold);

}


.mission-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--lamic-shadow);

}


.mission-icon {

    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--lamic-navy);

    background: var(--lamic-gold-pale);

    border: 1px solid rgba(201,162,39,0.25);

    border-radius: 50%;

    font-size: 24px;

}


.mission-card span {

    display: block;

    margin-bottom: 9px;

    color: var(--lamic-gold-dark);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.mission-card h3 {

    margin: 0 0 15px;

    color: var(--lamic-navy);

    font-size: 24px;

    line-height: 1.3;

}


.mission-card p {

    margin: 0;

    color: var(--lamic-text-light);

    font-size: 14px;

    line-height: 1.8;

}


/* Vision variation */

.vision-card {

    background:
        linear-gradient(
            145deg,
            var(--lamic-navy),
            var(--lamic-navy-dark)
        );

    border-color: transparent;

}


.vision-card span {

    color: var(--lamic-gold-light);

}


.vision-card h3 {

    color: var(--lamic-white);

}


.vision-card p {

    color: rgba(255,255,255,0.70);

}


.vision-card .mission-icon {

    color: var(--lamic-navy);

    background: var(--lamic-gold);

    border-color: var(--lamic-gold);

}


/* =========================================================
   12. CORE VALUES
========================================================= */

.values-section {

    background: var(--lamic-white);

}


.values-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

}


.value-card {

    position: relative;

    min-height: 270px;

    padding: 34px 30px;

    background: var(--lamic-white);

    border: 1px solid var(--lamic-border);

    border-radius: var(--lamic-radius);

    box-shadow: 0 2px 10px rgba(16,39,70,0.03);

    overflow: hidden;

    transition: var(--lamic-transition);

}


.value-card::after {

    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -40px;
    bottom: -40px;

    border: 1px solid rgba(201,162,39,0.16);

    border-radius: 50%;

}


.value-card:hover {

    transform: translateY(-7px);

    border-color: rgba(201,162,39,0.50);

    box-shadow: var(--lamic-shadow);

}


.value-number {

    position: absolute;

    top: 22px;

    right: 25px;

    color: #E6E9EE;

    font-size: 38px;

    font-weight: 800;

    line-height: 1;

}


.value-icon {

    width: 58px;
    height: 58px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--lamic-navy);

    background: var(--lamic-gold-pale);

    border-radius: 50%;

    font-size: 21px;

    transition: var(--lamic-transition);

}


.value-card:hover .value-icon {

    color: var(--lamic-white);

    background: var(--lamic-navy);

    transform: translateY(-2px);

}


.value-card h3 {

    margin: 0 0 12px;

    color: var(--lamic-navy);

    font-size: 20px;

}


.value-card p {

    margin: 0;

    color: var(--lamic-text-light);

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   13. WHAT WE DO
========================================================= */

.what-section {

    position: relative;

    background: var(--lamic-bg);

}


.what-grid {

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 80px;

    align-items: center;

}


.what-content {

    max-width: 680px;

}


.what-content h2 {

    margin: 0 0 20px;

    color: var(--lamic-navy);

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.13;

}


.what-content > p {

    margin: 0 0 35px;

    color: var(--lamic-text-light);

    font-size: 16px;

    line-height: 1.85;

}


/* =========================================================
   14. WHAT WE DO LIST
========================================================= */

.what-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}


.what-item {

    display: flex;

    gap: 15px;

    padding: 20px;

    background: var(--lamic-white);

    border: 1px solid var(--lamic-border);

    border-radius: 10px;

    transition: var(--lamic-transition);

}


.what-item:hover {

    transform: translateY(-4px);

    border-color: rgba(201,162,39,0.45);

    box-shadow: var(--lamic-shadow-sm);

}


.what-icon {

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--lamic-navy);

    background: var(--lamic-gold-pale);

    border-radius: 9px;

    font-size: 17px;

}


.what-item h3 {

    margin: 0 0 6px;

    color: var(--lamic-navy);

    font-size: 16px;

}


.what-item p {

    margin: 0;

    color: var(--lamic-text-light);

    font-size: 12.5px;

    line-height: 1.65;

}


/* =========================================================
   15. WHAT WE DO VISUAL
========================================================= */

.what-visual {

    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.what-visual::before {

    content: "";

    position: absolute;

    width: 410px;
    height: 410px;

    border-radius: 50%;

    border: 1px solid rgba(201,162,39,0.30);

}


.what-visual::after {

    content: "";

    position: absolute;

    width: 310px;
    height: 310px;

    border-radius: 50%;

    background: rgba(24,50,91,0.035);

}


.what-visual-card {

    position: relative;

    z-index: 2;

    width: 360px;

    padding: 45px 35px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            var(--lamic-navy),
            var(--lamic-navy-dark)
        );

    border-radius: 22px;

    box-shadow: var(--lamic-shadow-lg);

}


.what-circle {

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--lamic-navy);

    background: var(--lamic-gold);

    border-radius: 50%;

    font-size: 30px;

    box-shadow: var(--lamic-gold-shadow);

}


.what-visual-card h3 {

    margin: 0 0 12px;

    color: var(--lamic-white);

    font-size: 25px;

    line-height: 1.3;

}


.what-visual-card > p {

    margin: 0 0 30px;

    color: rgba(255,255,255,0.68);

    font-size: 14px;

}


/* =========================================================
   16. WHAT WE DO STATS
========================================================= */

.what-stat-row {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.12);

}


.what-stat-row > div {

    padding: 0 12px;

    border-right: 1px solid rgba(255,255,255,0.10);

}


.what-stat-row > div:last-child {

    border-right: none;

}


.what-stat-row strong {

    display: block;

    margin-bottom: 5px;

    color: var(--lamic-gold);

    font-size: 15px;

}


.what-stat-row span {

    color: rgba(255,255,255,0.60);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.8px;

}


/* =========================================================
   17. LEADERSHIP
========================================================= */

.leadership-section {

    background: var(--lamic-white);

}


.leadership-content {

    position: relative;

    max-width: 900px;

    margin: 0 auto;

    padding: 45px;

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 30px;

    align-items: start;

    background: var(--lamic-bg);

    border: 1px solid var(--lamic-border);

    border-radius: var(--lamic-radius-lg);

}


.leadership-content::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 5px;

    height: 100%;

    background: var(--lamic-gold);

    border-radius: 20px 0 0 20px;

}


.leadership-icon {

    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--lamic-navy);

    background: var(--lamic-gold-pale);

    border: 1px solid rgba(201,162,39,0.25);

    border-radius: 50%;

    font-size: 27px;

}


.leadership-content h3 {

    margin: 0 0 15px;

    color: var(--lamic-navy);

    font-size: 25px;

}


.leadership-content p {

    margin: 0 0 15px;

    color: var(--lamic-text-light);

    font-size: 15px;

    line-height: 1.8;

}


.leadership-content p:last-child {

    margin-bottom: 0;

}


/* =========================================================
   18. FINTECH FUTURE SECTION
========================================================= */

.about-fintech {

    position: relative;

    padding: 105px 0;

    background:
        linear-gradient(
            125deg,
            var(--lamic-navy-dark),
            var(--lamic-navy)
        );

    overflow: hidden;

}


.about-fintech::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    top: -300px;

    border: 1px solid rgba(201,162,39,0.20);

    border-radius: 50%;

}


.about-fintech::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -200px;
    bottom: -200px;

    border: 1px solid rgba(255,255,255,0.07);

    border-radius: 50%;

}


.about-fintech-inner {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: center;

}


.about-fintech-content {

    max-width: 680px;

}


.about-fintech .section-label {

    color: var(--lamic-gold-light);

}


.about-fintech h2 {

    margin: 0 0 22px;

    color: var(--lamic-white);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.12;

    letter-spacing: -0.8px;

}


.about-fintech-content > p {

    margin: 0 0 30px;

    color: rgba(255,255,255,0.72);

    font-size: 16px;

    line-height: 1.85;

}


/* =========================================================
   19. FINTECH POINTS
========================================================= */

.about-fintech-points {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-bottom: 35px;

}


.about-fintech-points span {

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,0.82);

    font-size: 13px;

}


.about-fintech-points i {

    width: 22px;
    height: 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color: var(--lamic-navy);

    background: var(--lamic-gold);

    border-radius: 50%;

    font-size: 10px;

}


/* =========================================================
   20. FINTECH BUTTON
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 26px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;

    transition: var(--lamic-transition);

}


.btn-gold {

    color: var(--lamic-navy);

    background: var(--lamic-gold);

    box-shadow: var(--lamic-gold-shadow);

}


.btn-gold:hover {

    color: var(--lamic-white);

    background: var(--lamic-gold-dark);

    transform: translateY(-3px);

}


/* =========================================================
   21. FINTECH ORBIT
========================================================= */

.about-fintech-visual {

    min-height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.fintech-orbit {

    position: relative;

    width: 360px;
    height: 360px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(201,162,39,0.24);

    border-radius: 50%;

}


.fintech-orbit::before {

    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    border: 1px dashed rgba(255,255,255,0.15);

    border-radius: 50%;

}


.fintech-orbit::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(201,162,39,0.20);

    border-radius: 50%;

}


.orbit-center {

    position: relative;

    z-index: 5;

    width: 130px;
    height: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: var(--lamic-navy);

    background: var(--lamic-gold);

    border-radius: 50%;

    box-shadow: var(--lamic-gold-shadow);

}


.orbit-center i {

    margin-bottom: 6px;

    font-size: 25px;

}


.orbit-center strong {

    font-size: 18px;

}


.orbit-center span {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


/* Orbit icons */

.orbit-icon {

    position: absolute;

    z-index: 6;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--lamic-gold);

    background: var(--lamic-navy-light);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    box-shadow: 0 10px 25px rgba(0,0,0,0.18);

}


.orbit-one {

    top: 30px;

    left: 50%;

    transform: translateX(-50%);

}


.orbit-two {

    right: 25px;

    top: 50%;

    transform: translateY(-50%);

}


.orbit-three {

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

}


.orbit-four {

    left: 25px;

    top: 50%;

    transform: translateY(-50%);

}


/* =========================================================
   22. CTA
========================================================= */

.cta-section {

    position: relative;

    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            var(--lamic-gold),
            #D9B83D
        );

    overflow: hidden;

}


.cta-section::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -200px;
    top: -230px;

    border: 1px solid rgba(24,50,91,0.15);

    border-radius: 50%;

}


.cta-inner {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

}


.cta-section .section-label {

    color: var(--lamic-navy-dark);

}


.cta-section .section-label::before {

    background: var(--lamic-navy);

}


.cta-section h2 {

    max-width: 700px;

    margin: 0 0 14px;

    color: var(--lamic-navy);

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

}


.cta-section p {

    max-width: 650px;

    margin: 0;

    color: rgba(14,34,63,0.72);

    font-size: 15px;

    line-height: 1.75;

}


.btn-light {

    flex-shrink: 0;

    color: var(--lamic-white);

    background: var(--lamic-navy);

    box-shadow: 0 10px 25px rgba(24,50,91,0.20);

}


.btn-light:hover {

    color: var(--lamic-white);

    background: var(--lamic-navy-dark);

    transform: translateY(-3px);

}


/* =========================================================
   23. TOP HEADER POLISH
========================================================= */

.lamic-topbar {

    background: var(--lamic-white);

    border-bottom: 1px solid var(--lamic-border);

}


.lamic-topbar-container {

    min-height: 92px;

}


.lamic-top-logo img {

    max-height: 68px;

    width: auto;

    object-fit: contain;

}


.lamic-top-item {

    transition: var(--lamic-transition);

}


.lamic-top-item:hover .lamic-top-icon {

    background: var(--lamic-gold);

    color: var(--lamic-navy);

}


.lamic-top-icon {

    transition: var(--lamic-transition);

}


/* =========================================================
   24. MAIN NAVIGATION POLISH
========================================================= */

.header {

    position: relative;

    z-index: 1000;

    background: var(--lamic-white);

    border-bottom: 1px solid var(--lamic-border);

    box-shadow: 0 3px 15px rgba(16,39,70,0.04);

}


.navigation > a,
.navigation .nav-dropdown > a {

    position: relative;

}


.navigation > a::after,
.navigation .nav-dropdown > a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;

    height: 2px;

    background: var(--lamic-gold);

    transition: width 0.3s ease;

}


.navigation > a:hover::after,
.navigation .nav-dropdown > a:hover::after,
.navigation .nav-dropdown > a.active::after {

    width: 100%;

}


.navigation .active {

    color: var(--lamic-navy) !important;

}


/* =========================================================
   25. RESPONSIVE - 1100PX
========================================================= */

@media (max-width: 1100px) {

    .section-padding {

        padding: 85px 0;

    }


    .about-intro-grid {

        gap: 55px;

    }


    .what-grid {

        gap: 50px;

    }


    .about-fintech-inner {

        gap: 45px;

    }


    .values-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =========================================================
   26. RESPONSIVE - 900PX
========================================================= */

@media (max-width: 900px) {

    .section-padding {

        padding: 75px 0;

    }


    .about-hero {

        min-height: 450px;

    }


    .about-hero-content {

        padding-top: 30px;

    }


    .about-intro-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .about-intro-image {

        max-width: 680px;

        margin: 0 auto;

        width: 100%;

    }


    .about-intro-content {

        max-width: 100%;

    }


    .mission-grid {

        grid-template-columns: 1fr;

    }


    .what-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .what-content {

        max-width: 100%;

    }


    .what-visual {

        min-height: 400px;

    }


    .about-fintech-inner {

        grid-template-columns: 1fr;

    }


    .about-fintech-content {

        max-width: 100%;

    }


    .about-fintech-visual {

        min-height: 390px;

    }


    .cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   27. RESPONSIVE - 700PX
========================================================= */

@media (max-width: 700px) {

    .section-padding {

        padding: 65px 0;

    }


    .about-hero {

        min-height: 420px;

    }


    .about-hero h1 {

        font-size: 43px;

        letter-spacing: -1px;

    }


    .about-hero p {

        font-size: 16px;

    }


    .about-image-main {

        height: 420px;

    }


    .about-image-card {

        width: 225px;

    }


    .about-intro-points {

        grid-template-columns: 1fr;

    }


    .values-grid {

        grid-template-columns: 1fr;

    }


    .what-list {

        grid-template-columns: 1fr;

    }


    .leadership-content {

        grid-template-columns: 1fr;

        padding: 35px 30px;

    }


    .about-fintech-points {

        grid-template-columns: 1fr;

    }


    .fintech-orbit {

        width: 310px;
        height: 310px;

    }


    .fintech-orbit::before {

        width: 230px;
        height: 230px;

    }


    .fintech-orbit::after {

        width: 160px;
        height: 160px;

    }


    .orbit-center {

        width: 115px;
        height: 115px;

    }

}


/* =========================================================
   28. RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {

    .section-padding {

        padding: 58px 0;

    }


    .section-heading {

        margin-bottom: 38px;

    }


    .section-heading h2 {

        font-size: 32px;

    }


    .section-heading p {

        font-size: 14px;

    }


    .about-hero {

        min-height: 390px;

        padding: 55px 0 75px;

    }


    .about-hero h1 {

        font-size: 37px;

        line-height: 1.08;

    }


    .about-hero p {

        font-size: 15px;

        line-height: 1.7;

    }


    .about-breadcrumb {

        bottom: 18px;

    }


    .about-breadcrumb a,
    .about-breadcrumb span {

        font-size: 12px;

    }


    .about-image-main {

        height: 340px;

        border-radius: 15px;

    }


    .about-intro-image {

        padding-right: 12px;

        padding-bottom: 25px;

    }


    .about-image-card {

        right: 0;

        width: 200px;

        min-height: 90px;

        padding: 15px;

    }


    .about-image-card-icon {

        width: 40px;
        height: 40px;

        font-size: 16px;

    }


    .about-image-card strong {

        font-size: 16px;

    }


    .about-image-card span {

        font-size: 10px;

    }


    .about-intro-content h2,
    .what-content h2,
    .about-fintech h2 {

        font-size: 32px;

    }


    .about-intro-content p {

        font-size: 14px;

    }


    .about-intro-content .lead {

        font-size: 15px;

    }


    .mission-card {

        grid-template-columns: 1fr;

        gap: 20px;

        padding: 30px 25px;

    }


    .mission-card h3 {

        font-size: 21px;

    }


    .mission-card p {

        font-size: 13.5px;

    }


    .value-card {

        min-height: auto;

        padding: 30px 25px;

    }


    .what-visual {

        min-height: 340px;

    }


    .what-visual::before {

        width: 300px;
        height: 300px;

    }


    .what-visual-card {

        width: 310px;

        padding: 35px 25px;

    }


    .what-visual-card h3 {

        font-size: 21px;

    }


    .what-stat-row {

        gap: 5px;

    }


    .what-stat-row > div {

        padding: 0 5px;

    }


    .what-stat-row strong {

        font-size: 13px;

    }


    .what-stat-row span {

        font-size: 8px;

    }


    .leadership-content {

        padding: 30px 25px;

    }


    .leadership-content h3 {

        font-size: 21px;

    }


    .leadership-content p {

        font-size: 13.5px;

    }


    .about-fintech {

        padding: 70px 0;

    }


    .about-fintech-visual {

        min-height: 330px;

    }


    .fintech-orbit {

        width: 270px;
        height: 270px;

    }


    .fintech-orbit::before {

        width: 205px;
        height: 205px;

    }


    .fintech-orbit::after {

        width: 145px;
        height: 145px;

    }


    .orbit-center {

        width: 105px;
        height: 105px;

    }


    .orbit-icon {

        width: 45px;
        height: 45px;

    }


    .orbit-one {

        top: 15px;

    }


    .orbit-two {

        right: 8px;

    }


    .orbit-three {

        bottom: 15px;

    }


    .orbit-four {

        left: 8px;

    }


    .cta-section {

        padding: 60px 0;

    }


    .cta-section h2 {

        font-size: 31px;

    }


    .cta-section p {

        font-size: 14px;

    }


    .btn-light {

        width: 100%;

    }

}


/* =========================================================
   29. SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .about-hero h1 {

        font-size: 33px;

    }


    .about-image-main {

        height: 300px;

    }


    .about-image-card {

        width: 185px;

        padding: 12px;

    }


    .about-image-card-icon {

        width: 36px;
        height: 36px;

    }


    .mission-card {

        padding: 25px 20px;

    }


    .what-visual-card {

        width: 285px;

    }


    .fintech-orbit {

        width: 245px;
        height: 245px;

    }


    .fintech-orbit::before {

        width: 185px;
        height: 185px;

    }


    .fintech-orbit::after {

        width: 130px;
        height: 130px;

    }


    .orbit-center {

        width: 95px;
        height: 95px;

    }

}


/* =========================================================
   30. ACCESSIBILITY
========================================================= */

.about-page a:focus-visible,
.about-page button:focus-visible {

    outline: 3px solid var(--lamic-gold-light);

    outline-offset: 3px;

}


/* =========================================================
   31. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-page *,
    .about-page *::before,
    .about-page *::after {

        transition: none !important;

        animation: none !important;

        scroll-behavior: auto !important;

    }

}

