/* =========================================================
   LAMiC - LEGACY AFRICA MICRO-CREDIT LTD
   PREMIUM GOLD CORPORATE WEBSITE
   COMPLETE RESPONSIVE STYLESHEET
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {

    /* -----------------------------------------------------
       CORPORATE NAVY
    ----------------------------------------------------- */

    --primary: #18325B;
    --primary-dark: #102746;
    --primary-light: #234674;


    /* -----------------------------------------------------
       PREMIUM GOLD
    ----------------------------------------------------- */

    --gold: #C9A227;
    --gold-dark: #9F7C12;
    --gold-deep: #B38B1E;
    --gold-rich: #A67C00;

    --gold-light: #E8D79A;
    --gold-pale: #FBF7E8;
    --gold-bg: #FBF8EC;

    --gold-gradient:
        linear-gradient(
            135deg,
            #D4AF37 0%,
            #C9A227 45%,
            #A67C00 100%
        );

    --gold-gradient-light:
        linear-gradient(
            135deg,
            #F3E8B3 0%,
            #DCC56A 50%,
            #C9A227 100%
        );


    /* -----------------------------------------------------
       BASIC COLORS
    ----------------------------------------------------- */

    --white: #FFFFFF;
    --black: #111827;


    /* -----------------------------------------------------
       TEXT
    ----------------------------------------------------- */

    --text: #374151;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;


    /* -----------------------------------------------------
       BACKGROUNDS
    ----------------------------------------------------- */

    --light-bg: #F7F8FA;
    --lighter-bg: #FBFCFD;

    --dark-bg: #102746;


    /* -----------------------------------------------------
       BORDERS
    ----------------------------------------------------- */

    --border: #E5E7EB;
    --gold-border: #D8BE55;


    /* -----------------------------------------------------
       STATUS
    ----------------------------------------------------- */

    --success: #198754;
    --danger: #DC3545;
    --info: #2563EB;


    /* -----------------------------------------------------
       SHADOWS
    ----------------------------------------------------- */

    --shadow-sm:
        0 4px 15px rgba(15, 35, 60, 0.06);

    --shadow:
        0 10px 30px rgba(15, 35, 60, 0.09);

    --shadow-lg:
        0 20px 50px rgba(15, 35, 60, 0.14);


    /* -----------------------------------------------------
       GOLD SHADOWS
    ----------------------------------------------------- */

    --gold-shadow:
        0 8px 25px rgba(201, 162, 39, 0.20);

    --gold-shadow-lg:
        0 15px 40px rgba(201, 162, 39, 0.25);


    /* -----------------------------------------------------
       RADIUS
    ----------------------------------------------------- */

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;


    /* -----------------------------------------------------
       CONTAINER
    ----------------------------------------------------- */

    --container: 1200px;


    /* -----------------------------------------------------
       TRANSITION
    ----------------------------------------------------- */

    --transition:
        all 0.3s ease;
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   3. GLOBAL CONTAINER
========================================================= */

.container {
    width: min(
        92%,
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   4. SECTION SPACING
========================================================= */

.section-padding {
    padding: 100px 0;
}


/* =========================================================
   5. TOP BAR
========================================================= */

.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);

    font-size: 13px;

    border-bottom:
        1px solid rgba(201,162,39,0.18);
}

.top-bar-inner {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-left i {
    color: var(--gold);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right a {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    transition: var(--transition);
}

.top-right a:hover {
    color: var(--primary-dark);
    background: var(--gold);

    transform: translateY(-2px);
}


/* =========================================================
   6. LAMiC UTILITY HEADER
========================================================= */

.lamic-topbar {
    background: var(--white);

    border-bottom:
        1px solid var(--border);
}

.lamic-topbar-container {
    width: min(
        92%,
        var(--container)
    );

    min-height: 105px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.3fr
        1.5fr;

    align-items: center;

    gap: 30px;
}


/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */

.lamic-top-logo {
    display: flex;
    align-items: center;
}

.lamic-top-logo a {
    display: inline-flex;
    align-items: center;
}

.lamic-top-logo img {
    width: 185px;
    max-height: 75px;
    object-fit: contain;
}


/* ---------------------------------------------------------
   TOP INFORMATION ITEMS
--------------------------------------------------------- */

.lamic-top-item {
    display: flex;
    align-items: center;

    gap: 14px;

    min-width: 0;
}

.lamic-top-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold-pale);

    color: var(--gold-dark);

    font-size: 17px;

    border:
        1px solid rgba(201,162,39,0.28);

    transition: var(--transition);
}

.lamic-top-item:hover .lamic-top-icon {
    color: var(--white);
    background: var(--gold);

    transform: translateY(-2px);
}

.lamic-top-content {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.lamic-top-content strong {
    color: var(--primary-dark);

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}

.lamic-top-content a,
.lamic-top-content span {
    color: var(--text-light);

    font-size: 13px;

    line-height: 1.5;
}

.lamic-top-content a:hover {
    color: var(--gold-dark);
}

.lamic-top-content span {
    max-width: 230px;
}


/* =========================================================
   7. MAIN HEADER / NAVIGATION
========================================================= */

.header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: var(--white);

    border-bottom:
        1px solid var(--border);

    box-shadow:
        0 4px 20px rgba(15,35,60,0.05);

    transition: var(--transition);
}

.header.scrolled {
    box-shadow:
        0 8px 30px rgba(15,35,60,0.10);
}

.nav-wrapper {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.navigation {
    display: flex;
    align-items: center;

    gap: 4px;

    height: 100%;
}

.navigation > a,
.nav-dropdown > a {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    min-height: 76px;

    padding: 0 14px;

    color: var(--primary-dark);

    font-size: 14px;

    font-weight: 600;

    transition: var(--transition);
}

.navigation > a::after,
.nav-dropdown > a::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 0;

    height: 3px;

    background: var(--gold);

    transform: scaleX(0);

    transform-origin: center;

    transition: var(--transition);
}

.navigation > a:hover,
.nav-dropdown > a:hover,
.navigation > a.active {
    color: var(--gold-dark);
}

.navigation > a:hover::after,
.nav-dropdown > a:hover::after,
.navigation > a.active::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a i {
    font-size: 10px;

    transition: var(--transition);
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}


/* =========================================================
   8. DROPDOWN MENU
========================================================= */

.dropdown-menu {
    position: absolute;

    top: calc(100% + 1px);

    left: 0;

    min-width: 225px;

    padding: 10px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-top:
        3px solid var(--gold);

    box-shadow:
        0 15px 40px rgba(15,35,60,0.13);

    border-radius:
        0 0 var(--radius) var(--radius);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;

    padding: 11px 13px;

    border-radius: 5px;

    color: var(--text);

    font-size: 13px;

    font-weight: 500;

    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--gold-dark);

    background: var(--gold-pale);

    padding-left: 18px;
}


/* =========================================================
   9. HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 12px 20px;

    color: var(--white);

    background: var(--gold-gradient);

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    box-shadow: var(--gold-shadow);

    transition: var(--transition);
}

.contact-button:hover {
    color: var(--white);

    transform: translateY(-2px);

    box-shadow:
        var(--gold-shadow-lg);
}

.contact-button i {
    transition: var(--transition);
}

.contact-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   10. MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--gold);

    border-radius: 5px;

    font-size: 19px;

    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--gold-dark);
}


/* =========================================================
   11. HERO SECTION
========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    padding:
        90px 0
        110px;

    background:
        linear-gradient(
            135deg,
            #FBFCFD 0%,
            #F7F8FA 60%,
            #FBF8EC 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -220px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201,162,39,0.14),
            transparent 70%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        0.95fr
        1.05fr;

    align-items: center;

    gap: 70px;
}


/* =========================================================
   12. HERO TEXT
========================================================= */

.hero-left {
    position: relative;
}

.hero-text {
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--gold-dark);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.hero-eyebrow span {
    width: 32px;
    height: 2px;

    background: var(--gold);

    display: inline-block;
}

.hero h1 {
    color: var(--primary-dark);

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 700;

    margin-bottom: 25px;
}

.hero h1 strong {
    display: block;

    color: var(--gold-dark);

    font-weight: 800;
}

.hero-text > p {
    max-width: 570px;

    color: var(--text-light);

    font-size: 16px;

    line-height: 1.85;

    margin-bottom: 32px;
}


/* =========================================================
   13. HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 23px;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.hero-btn-primary {
    color: var(--white);

    background: var(--gold-gradient);

    box-shadow: var(--gold-shadow);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);

    box-shadow: var(--gold-shadow-lg);
}

.hero-btn-primary i {
    transition: var(--transition);
}

.hero-btn-primary:hover i {
    transform: translateX(4px);
}

.hero-btn-secondary {
    color: var(--primary-dark);

    background: var(--white);

    border:
        1px solid var(--border);
}

.hero-btn-secondary:hover {
    color: var(--gold-dark);

    border-color: var(--gold);

    background: var(--gold-pale);
}


/* =========================================================
   14. HERO APPROACH CARD
========================================================= */

.hero-card {
    display: flex;
    align-items: center;

    gap: 16px;

    max-width: 500px;

    margin-top: 50px;

    padding: 20px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-left:
        4px solid var(--gold);

    box-shadow: var(--shadow);

    border-radius: var(--radius);
}

.hero-card-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    background: var(--gold-gradient);

    box-shadow: var(--gold-shadow);
}

.hero-card-content span {
    display: block;

    margin-bottom: 2px;

    color: var(--gold-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.hero-card-content h3 {
    margin-bottom: 3px;

    color: var(--primary-dark);

    font-size: 16px;
}

.hero-card-content p {
    color: var(--text-light);

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   15. HERO IMAGE COLLAGE
========================================================= */

.hero-images {
    position: relative;

    min-height: 570px;

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    grid-template-rows:
        1fr
        1fr
        0.75fr;

    gap: 12px;
}

.image-box {
    position: relative;

    overflow: hidden;

    border-radius: 12px;

    box-shadow: var(--shadow);

    background: var(--primary-dark);
}

.image-box::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(16,39,70,0.18),
            transparent 50%
        );

    pointer-events: none;
}

.image-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

.image-1 {
    grid-row: 1 / 3;
}

.image-2 {
    grid-column: 2;
}

.image-3 {
    grid-column: 2;
}

.image-4 {
    grid-column: 1;
}

.image-5 {
    grid-column: 1;
}

.image-6 {
    grid-column: 2;
}

.hero-image-shape {
    position: absolute;

    right: -20px;
    bottom: -20px;

    width: 100px;
    height: 100px;

    background: var(--gold);

    border-radius: 50%;

    opacity: 0.9;

    z-index: 5;

    box-shadow:
        0 0 0 14px rgba(201,162,39,0.10);
}


/* =========================================================
   16. QUICK SERVICES
========================================================= */

.quick-services {
    position: relative;

    z-index: 10;

    margin-top: -35px;
}

.quick-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: var(--white);

    box-shadow: var(--shadow-lg);

    border-radius: var(--radius);

    overflow: hidden;

    border:
        1px solid var(--border);
}

.quick-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 13px;

    min-height: 125px;

    padding: 20px;

    border-right:
        1px solid var(--border);

    transition: var(--transition);
}

.quick-card:last-child {
    border-right: none;
}

.quick-card:hover {
    background: var(--gold-pale);

    transform: translateY(-3px);
}

.quick-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold-dark);

    background: var(--gold-pale);

    border:
        1px solid rgba(201,162,39,0.25);

    border-radius: 50%;

    transition: var(--transition);
}

.quick-card:hover .quick-icon {
    color: var(--white);

    background: var(--gold);

    transform: rotate(-5deg);
}

.quick-card h3 {
    color: var(--primary-dark);

    font-size: 14px;

    margin-bottom: 2px;
}

.quick-card p {
    color: var(--text-light);

    font-size: 11px;

    line-height: 1.4;
}

.quick-card .arrow {
    margin-left: auto;

    color: var(--gold);

    font-size: 13px;

    transition: var(--transition);
}

.quick-card:hover .arrow {
    color: var(--gold-dark);

    transform: translateX(4px);
}


/* =========================================================
   17. SECTION LABEL
========================================================= */

.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading.centered {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2,
.about-content h2,
.why-content h2,
.fintech-content h2 {
    color: var(--primary-dark);

    font-size:
        clamp(30px, 4vw, 45px);

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 16px;
}

.section-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   18. ABOUT SECTION
========================================================= */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns:
        0.95fr
        1.05fr;

    align-items: center;

    gap: 80px;
}

.about-image {
    position: relative;

    padding-right: 30px;
    padding-bottom: 30px;
}

.about-image img {
    width: 100%;

    min-height: 470px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);
}

.experience-card {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 190px;

    padding: 20px;

    color: var(--white);

    background: var(--gold-gradient);

    border-radius: var(--radius);

    box-shadow: var(--gold-shadow-lg);
}

.experience-card strong {
    display: block;

    font-size: 24px;

    line-height: 1;

    margin-bottom: 8px;
}

.experience-card span {
    display: block;

    font-size: 11px;

    line-height: 1.5;
}

.about-content > p {
    color: var(--text-light);

    font-size: 15px;

    margin-bottom: 17px;
}

.about-features {
    margin: 28px 0;

    display: grid;

    gap: 13px;
}

.about-features div {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 13px;

    font-weight: 600;
}

.about-features i {
    color: var(--gold);

    font-size: 17px;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--gold-dark);

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.text-link i {
    transition: var(--transition);
}

.text-link:hover {
    color: var(--gold-rich);
}

.text-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   19. PRODUCTS SECTION
========================================================= */

.products-section {
    background: var(--light-bg);
}

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;
}

.product-card {
    overflow: hidden;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

    border-color:
        rgba(201,162,39,0.35);
}

.product-image {
    position: relative;

    height: 210px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    color: var(--gold);

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
}

.product-image::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border:
        1px solid rgba(201,162,39,0.25);

    border-radius: 50%;
}

.product-image::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border:
        1px solid rgba(201,162,39,0.15);

    border-radius: 50%;
}

.product-image i {
    position: relative;

    z-index: 2;

    font-size: 58px;

    color: var(--gold);

    transition: var(--transition);
}

.product-card:hover .product-image i {
    transform: scale(1.1);
    color: var(--gold-light);
}

.product-tag {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 4;

    padding: 5px 9px;

    color: var(--primary-dark);

    background: var(--gold);

    border-radius: 3px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.8px;
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    color: var(--primary-dark);

    font-size: 19px;

    margin-bottom: 10px;
}

.product-content p {
    min-height: 90px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 15px;
}

.product-content a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--gold-dark);

    font-size: 12px;

    font-weight: 700;

    transition: var(--transition);
}

.product-content a i {
    transition: var(--transition);
}

.product-content a:hover {
    color: var(--gold-rich);
}

.product-content a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   20. AMUKA ELIMU SPECIAL PRODUCT
========================================================= */

.product-image.elimu {
    background:
        linear-gradient(
            135deg,
            #102746 0%,
            #18325B 60%,
            #9F7C12 100%
        );
}

.product-image.elimu::before {
    border-color:
        rgba(212,175,55,0.30);
}


/* =========================================================
   21. WHY LAMiC
========================================================= */

.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;

    grid-template-columns:
        1fr
        0.95fr;

    align-items: center;

    gap: 80px;
}

.why-content > p {
    max-width: 620px;

    color: var(--text-light);

    font-size: 15px;

    margin-bottom: 35px;
}

.why-list {
    display: grid;

    gap: 23px;
}

.why-item {
    display: flex;

    gap: 17px;
}

.why-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold-dark);

    background: var(--gold-pale);

    border:
        1px solid rgba(201,162,39,0.25);

    border-radius: 8px;

    transition: var(--transition);
}

.why-item:hover .why-icon {
    color: var(--white);

    background: var(--gold);

    transform: translateY(-3px);
}

.why-item h3 {
    color: var(--primary-dark);

    font-size: 16px;

    margin-bottom: 3px;
}

.why-item p {
    color: var(--text-light);

    font-size: 13px;

    line-height: 1.6;
}

.why-image {
    position: relative;

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}

.why-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(16,39,70,0.05),
            rgba(201,162,39,0.12)
        );

    pointer-events: none;
}

.why-image img {
    width: 100%;

    min-height: 520px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.why-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   22. HOW IT WORKS
========================================================= */

.process-section {
    background: var(--light-bg);
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;
}

.process-item {
    position: relative;

    text-align: center;

    padding: 25px 30px;

    border-right:
        1px solid var(--border);
}

.process-item:last-child {
    border-right: none;
}

.process-number {
    margin-bottom: 15px;

    color: var(--gold);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}

.process-item > i {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    color: var(--gold-dark);

    background: var(--gold-pale);

    border:
        1px solid rgba(201,162,39,0.25);

    border-radius: 50%;

    font-size: 23px;

    transition: var(--transition);
}

.process-item:hover > i {
    color: var(--white);

    background: var(--gold);

    transform: translateY(-5px);

    box-shadow: var(--gold-shadow);
}

.process-item h3 {
    color: var(--primary-dark);

    font-size: 16px;

    margin-bottom: 8px;
}

.process-item p {
    color: var(--text-light);

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   23. FINTECH SECTION
========================================================= */

.fintech-section {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color: var(--white);
}

.fintech-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -200px;

    border-radius: 50%;

    border:
        1px solid rgba(201,162,39,0.18);
}

.fintech-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 80px;
}

.fintech-content .section-label {
    color: var(--gold-light);
}

.fintech-content h2 {
    color: var(--white);

    max-width: 620px;
}

.fintech-content > p {
    max-width: 620px;

    color: rgba(255,255,255,0.72);

    font-size: 15px;

    margin-bottom: 28px;
}

.fintech-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin-bottom: 32px;
}

.fintech-points span {
    display: flex;
    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,0.88);

    font-size: 12px;
}

.fintech-points i {
    color: var(--gold);

    font-size: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    color: var(--white);

    background: var(--gold-gradient);

    box-shadow: var(--gold-shadow);
}

.btn-primary:hover {
    color: var(--white);

    transform: translateY(-3px);

    box-shadow: var(--gold-shadow-lg);
}


/* =========================================================
   24. FINTECH VISUAL
========================================================= */

.fintech-visual {
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-circle {
    position: relative;

    width: 360px;
    height: 360px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(201,162,39,0.25);

    border-radius: 50%;
}

.tech-circle::before {
    content: "";

    position: absolute;

    inset: 35px;

    border:
        1px dashed rgba(201,162,39,0.25);

    border-radius: 50%;
}

.tech-circle::after {
    content: "";

    position: absolute;

    inset: 85px;

    border:
        1px solid rgba(201,162,39,0.18);

    border-radius: 50%;
}

.center-tech {
    position: relative;

    z-index: 4;

    width: 120px;
    height: 120px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;

    color: var(--primary-dark);

    background: var(--gold-gradient);

    border-radius: 50%;

    box-shadow:
        0 0 0 15px rgba(201,162,39,0.08),
        var(--gold-shadow-lg);
}

.center-tech i {
    font-size: 25px;
}

.center-tech span {
    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}

.tech-icon {
    position: absolute;

    z-index: 5;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    background: var(--primary-dark);

    border:
        1px solid rgba(201,162,39,0.40);

    border-radius: 50%;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.15);

    transition: var(--transition);
}

.tech-icon:hover {
    color: var(--primary-dark);

    background: var(--gold);

    transform: scale(1.1);
}

.tech-1 {
    top: 0;
    left: 50%;

    transform: translateX(-50%);
}

.tech-2 {
    right: 5px;
    top: 50%;

    transform: translateY(-50%);
}

.tech-3 {
    bottom: 0;
    left: 50%;

    transform: translateX(-50%);
}

.tech-4 {
    left: 5px;
    top: 50%;

    transform: translateY(-50%);
}


/* =========================================================
   25. STATISTICS
========================================================= */

.stats-section {
    background: var(--gold-gradient);

    color: var(--primary-dark);

    padding: 55px 0;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.stat {
    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 10px 20px;

    border-right:
        1px solid rgba(16,39,70,0.18);
}

.stat:last-child {
    border-right: none;
}

.stat i {
    margin-bottom: 12px;

    font-size: 23px;

    opacity: 0.85;
}

.stat strong {
    display: block;

    font-size: 28px;

    line-height: 1;

    margin-bottom: 7px;
}

.stat span {
    font-size: 11px;

    font-weight: 600;

    opacity: 0.80;
}


/* =========================================================
   26. NEWS SECTION
========================================================= */

.news-section {
    background: var(--white);
}

.heading-row {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;
}

.heading-row .section-heading {
    margin-bottom: 0;
}

.news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 50px;
}

.news-card {
    overflow: hidden;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-lg);

    border-color:
        rgba(201,162,39,0.35);
}

.news-image {
    position: relative;

    height: 225px;

    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.06);
}

.news-date {
    position: absolute;

    left: 16px;
    bottom: 16px;

    min-width: 52px;

    padding: 8px;

    display: flex;
    flex-direction: column;

    align-items: center;

    color: var(--primary-dark);

    background: var(--gold);

    border-radius: 5px;

    font-size: 9px;

    font-weight: 700;
}

.news-date strong {
    font-size: 19px;

    line-height: 1;
}

.news-content {
    padding: 23px;
}

.news-category {
    color: var(--gold-dark);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.news-content h3 {
    color: var(--primary-dark);

    font-size: 18px;

    line-height: 1.35;

    margin: 7px 0 10px;
}

.news-content p {
    color: var(--text-light);

    font-size: 12px;

    margin-bottom: 15px;
}

.news-content a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--gold-dark);

    font-size: 12px;

    font-weight: 700;
}

.news-content a i {
    transition: var(--transition);
}

.news-content a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   27. CTA SECTION
========================================================= */

.cta-section {
    position: relative;

    overflow: hidden;

    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color: var(--white);
}

.cta-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -170px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201,162,39,0.20),
            transparent 70%
        );
}

.cta-inner {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.cta-inner .section-label {
    color: var(--gold-light);
}

.cta-inner h2 {
    max-width: 650px;

    color: var(--white);

    font-size:
        clamp(30px, 4vw, 43px);

    line-height: 1.2;

    margin-bottom: 12px;
}

.cta-inner p {
    color: rgba(255,255,255,0.70);

    font-size: 14px;
}

.btn-light {
    flex-shrink: 0;

    color: var(--primary-dark);

    background: var(--white);

    border:
        1px solid var(--white);
}

.btn-light:hover {
    color: var(--primary-dark);

    background: var(--gold);

    border-color: var(--gold);

    transform: translateY(-3px);

    box-shadow: var(--gold-shadow);
}


/* =========================================================
   28. FOOTER
========================================================= */

.footer {
    background: #0B1C31;

    color: rgba(255,255,255,0.72);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        0.9fr
        0.8fr
        1.2fr;

    gap: 40px;

    padding:
        75px 0
        60px;
}


/* =========================================================
   29. FOOTER ABOUT
========================================================= */

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 175px;

    max-height: 70px;

    object-fit: contain;
}

.footer-about > p {
    max-width: 300px;

    color: rgba(255,255,255,0.60);

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 23px;
}

.footer-social {
    display: flex;

    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,0.75);

    border:
        1px solid rgba(255,255,255,0.14);

    border-radius: 50%;

    font-size: 12px;

    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-dark);

    background: var(--gold);

    border-color: var(--gold);

    transform: translateY(-3px);
}


/* =========================================================
   30. FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-column h3 {
    position: relative;

    color: var(--white);

    font-size: 14px;

    margin-bottom: 10px;

    padding-bottom: 11px;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    background: var(--gold);
}

.footer-column > a {
    color: rgba(255,255,255,0.58);

    font-size: 12px;

    transition: var(--transition);
}

.footer-column > a:hover {
    color: var(--gold-light);

    transform: translateX(4px);
}


/* =========================================================
   31. FOOTER CONTACT
========================================================= */

.footer-contact p {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: rgba(255,255,255,0.60);

    font-size: 12px;

    line-height: 1.6;

    margin-bottom: 9px;
}

.footer-contact i {
    width: 17px;

    flex-shrink: 0;

    color: var(--gold);

    margin-top: 4px;
}


/* =========================================================
   32. FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top:
        1px solid rgba(255,255,255,0.08);

    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.45);

    font-size: 11px;
}

.footer-bottom > .container > div {
    display: flex;

    gap: 20px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.45);

    font-size: 11px;

    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}


/* =========================================================
   33. MOBILE NAVIGATION
========================================================= */

@media (max-width: 1100px) {

    .navigation {
        gap: 0;
    }

    .navigation > a,
    .nav-dropdown > a {
        padding: 0 9px;

        font-size: 12px;
    }

    .navigation > a::after,
    .nav-dropdown > a::after {
        left: 9px;
        right: 9px;
    }

    .contact-button {
        padding:
            11px 15px;

        font-size: 12px;
    }

    .hero-content {
        gap: 45px;
    }

    .lamic-topbar-container {
        grid-template-columns:
            1.3fr
            1fr
            1.2fr;
    }

    .lamic-top-item:last-child {
        display: none;
    }

    .products-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }
}


/* =========================================================
   34. TABLET
========================================================= */

@media (max-width: 900px) {

    .top-left {
        gap: 14px;
    }

    .top-left span {
        font-size: 11px;
    }

    .lamic-topbar-container {
        grid-template-columns:
            1fr
            1fr
            1fr;

        gap: 15px;
    }

    .lamic-top-logo img {
        width: 155px;
    }

    .hero {
        padding:
            70px 0
            80px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-text {
        max-width: 750px;
    }

    .hero-images {
        min-height: 520px;

        max-width: 700px;

        width: 100%;

        margin: auto;
    }

    .quick-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .quick-card {
        border-bottom:
            1px solid var(--border);
    }

    .quick-card:nth-child(2) {
        border-right: none;
    }

    .quick-card:nth-child(3),
    .quick-card:nth-child(4) {
        border-bottom: none;
    }

    .about-grid,
    .why-grid,
    .fintech-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        max-width: 650px;

        margin: auto;
    }

    .why-image {
        max-width: 700px;

        margin: auto;

        order: -1;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-item:nth-child(2) {
        border-right: none;
    }

    .process-item:nth-child(1),
    .process-item:nth-child(2) {
        border-bottom:
            1px solid var(--border);

        padding-bottom: 35px;
    }

    .process-item:nth-child(3),
    .process-item:nth-child(4) {
        padding-top: 35px;
    }

    .fintech-visual {
        min-height: 380px;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        padding-bottom: 20px;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        padding-top: 20px;
    }

    .news-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .news-card:last-child {
        grid-column:
            1 / -1;

        max-width: 600px;

        width: 100%;

        margin: auto;
    }
}


/* =========================================================
   35. MOBILE
========================================================= */

@media (max-width: 768px) {

    .section-padding {
        padding: 75px 0;
    }


    /* -----------------------------------------------------
       TOP BAR
    ----------------------------------------------------- */

    .top-bar {
        display: none;
    }


    /* -----------------------------------------------------
       UTILITY HEADER
    ----------------------------------------------------- */

    .lamic-topbar-container {
        grid-template-columns: 1fr auto;

        min-height: 78px;
    }

    .lamic-top-item {
        display: none;
    }

    .lamic-top-logo img {
        width: 145px;
    }


    /* -----------------------------------------------------
       MAIN HEADER
    ----------------------------------------------------- */

    .header {
        position: sticky;

        top: 0;
    }

    .nav-wrapper {
        min-height: 68px;
    }

    .menu-toggle {
        display: flex;
    }

    .contact-button {
        display: none;
    }

    .navigation {
        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        width: 100%;

        height: auto;

        max-height: 0;

        overflow: hidden;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        background: var(--white);

        border-top:
            1px solid var(--border);

        box-shadow:
            0 15px 30px rgba(15,35,60,0.10);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .navigation.active {
        max-height: calc(100vh - 68px);

        overflow-y: auto;

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }

    .navigation > a,
    .nav-dropdown > a {
        min-height: auto;

        width: 100%;

        padding:
            15px 5%;

        justify-content: space-between;

        border-bottom:
            1px solid var(--border);

        font-size: 14px;
    }

    .navigation > a::after,
    .nav-dropdown > a::after {
        display: none;
    }

    .navigation > a.active {
        color: var(--gold-dark);

        background: var(--gold-pale);

        border-left:
            4px solid var(--gold);
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > a {
        display: flex;
    }

    .dropdown-menu {
        position: static;

        width: 100%;

        min-width: 0;

        max-height: 0;

        overflow: hidden;

        padding: 0;

        border: none;

        border-radius: 0;

        box-shadow: none;

        background: var(--lighter-bg);

        opacity: 1;

        visibility: visible;

        transform: none;

        transition:
            max-height 0.35s ease;
    }

    .nav-dropdown.mobile-open .dropdown-menu {
        max-height: 500px;

        padding:
            5px 0;
    }

    .dropdown-menu a {
        padding:
            12px 8%;

        border-bottom:
            1px solid var(--border);

        font-size: 13px;
    }

    .dropdown-menu a:hover {
        padding-left: 10%;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {
        padding:
            65px 0
            70px;
    }

    .hero h1 {
        font-size:
            clamp(38px, 11vw, 52px);

        letter-spacing: -1.5px;
    }

    .hero-text > p {
        font-size: 14px;
    }

    .hero-card {
        margin-top: 35px;
    }

    .hero-images {
        min-height: 420px;

        grid-template-rows:
            1fr
            1fr
            0.7fr;

        gap: 8px;
    }

    .hero-image-shape {
        width: 70px;
        height: 70px;
    }


    /* -----------------------------------------------------
       QUICK SERVICES
    ----------------------------------------------------- */

    .quick-services {
        margin-top: -20px;
    }

    .quick-grid {
        grid-template-columns: 1fr;

        border-radius: var(--radius);
    }

    .quick-card,
    .quick-card:nth-child(3),
    .quick-card:nth-child(4) {
        min-height: 95px;

        border-right: none;

        border-bottom:
            1px solid var(--border);
    }

    .quick-card:last-child {
        border-bottom: none;
    }


    /* -----------------------------------------------------
       SECTION HEADINGS
    ----------------------------------------------------- */

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .about-content h2,
    .why-content h2,
    .fintech-content h2 {
        font-size: 31px;
    }


    /* -----------------------------------------------------
       ABOUT
    ----------------------------------------------------- */

    .about-grid {
        gap: 40px;
    }

    .about-image {
        padding-right: 18px;

        padding-bottom: 18px;
    }

    .about-image img {
        min-height: 360px;
    }

    .experience-card {
        width: 165px;

        padding: 16px;
    }


    /* -----------------------------------------------------
       PRODUCTS
    ----------------------------------------------------- */

    .products-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-content p {
        min-height: auto;
    }


    /* -----------------------------------------------------
       WHY
    ----------------------------------------------------- */

    .why-image img {
        min-height: 360px;
    }


    /* -----------------------------------------------------
       PROCESS
    ----------------------------------------------------- */

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item,
    .process-item:nth-child(1),
    .process-item:nth-child(2),
    .process-item:nth-child(3),
    .process-item:nth-child(4) {
        padding:
            25px 20px;

        border-right: none;

        border-bottom:
            1px solid var(--border);
    }

    .process-item:last-child {
        border-bottom: none;
    }


    /* -----------------------------------------------------
       FINTECH
    ----------------------------------------------------- */

    .fintech-grid {
        gap: 30px;
    }

    .fintech-points {
        grid-template-columns: 1fr;
    }

    .tech-circle {
        width: 300px;
        height: 300px;
    }

    .center-tech {
        width: 105px;
        height: 105px;
    }


    /* -----------------------------------------------------
       STATISTICS
    ----------------------------------------------------- */

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat,
    .stat:nth-child(1),
    .stat:nth-child(2),
    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-right: none;

        border-bottom:
            1px solid rgba(16,39,70,0.18);

        padding:
            20px;
    }

    .stat:last-child {
        border-bottom: none;
    }


    /* -----------------------------------------------------
       NEWS
    ----------------------------------------------------- */

    .heading-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;

        margin-top: 35px;
    }

    .news-card:last-child {
        grid-column: auto;

        max-width: none;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px 25px;

        padding:
            60px 0
            45px;
    }

    .footer-about {
        grid-column:
            1 / -1;
    }

    .footer-about > p {
        max-width: 500px;
    }

    .footer-bottom .container {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   36. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 90%;
    }

    .lamic-topbar-container {
        width: 90%;
    }

    .lamic-top-logo img {
        width: 130px;
    }

    .hero {
        padding:
            50px 0
            60px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-eyebrow {
        font-size: 10px;

        letter-spacing: 1px;
    }

    .hero-text > p {
        font-size: 13px;

        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-card {
        align-items: flex-start;

        padding: 16px;
    }

    .hero-card-icon {
        width: 42px;
        height: 42px;
    }

    .hero-images {
        min-height: 330px;
    }

    .image-1 {
        grid-row: 1 / 3;
    }

    .quick-card {
        padding: 17px;
    }

    .section-heading h2,
    .about-content h2,
    .why-content h2,
    .fintech-content h2 {
        font-size: 28px;
    }

    .about-image img {
        min-height: 300px;
    }

    .experience-card {
        width: 145px;

        padding: 14px;
    }

    .experience-card strong {
        font-size: 20px;
    }

    .experience-card span {
        font-size: 10px;
    }

    .product-image {
        height: 190px;
    }

    .why-image img {
        min-height: 300px;
    }

    .tech-circle {
        width: 260px;
        height: 260px;
    }

    .tech-circle::before {
        inset: 27px;
    }

    .tech-circle::after {
        inset: 65px;
    }

    .center-tech {
        width: 90px;
        height: 90px;
    }

    .center-tech i {
        font-size: 20px;
    }

    .center-tech span {
        font-size: 11px;
    }

    .tech-icon {
        width: 44px;
        height: 44px;

        font-size: 13px;
    }

    .cta-section {
        padding: 55px 0;
    }

    .cta-inner h2 {
        font-size: 29px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-bottom > .container > div {
        flex-direction: column;

        gap: 5px;
    }
}


/* =========================================================
   37. ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {
    outline:
        3px solid rgba(201,162,39,0.45);

    outline-offset: 3px;
}


/* =========================================================
   38. SELECTION
========================================================= */

::selection {
    color: var(--primary-dark);

    background: var(--gold-light);
}


/* =========================================================
   39. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);

    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}


/* =========================================================
   40. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }
}


/* =========================================================
   AMUKA ELIMU PROMOTIONAL BANNER
   PREMIUM GOLD THEME
========================================================= */

.amuka-elimu-banner {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background:
        linear-gradient(
            135deg,
            #102746 0%,
            #18325B 45%,
            #102746 100%
        );
    color: var(--white);
}


/* =========================================================
   DECORATIVE GOLD BACKGROUND ELEMENTS
========================================================= */

.amuka-elimu-banner::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.10);
    top: -220px;
    right: -100px;
    pointer-events: none;
}

.amuka-elimu-banner::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.20);
    bottom: -180px;
    left: -100px;
    pointer-events: none;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.amuka-elimu-banner-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.3fr 0.7fr;

    align-items: center;

    gap: 70px;
}


/* =========================================================
   CONTENT AREA
========================================================= */

.amuka-elimu-banner-content {
    max-width: 720px;
}


/* =========================================================
   LABEL
========================================================= */

.amuka-elimu-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 18px;

    border: 1px solid rgba(212, 175, 55, 0.55);

    border-radius: 50px;

    background: rgba(201, 162, 39, 0.12);

    color: #E8D79A;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.amuka-elimu-label i {
    color: #D4AF37;
    font-size: 15px;
}


/* =========================================================
   HEADING
========================================================= */

.amuka-elimu-banner-content h2 {
    margin: 22px 0 18px;

    font-size: clamp(34px, 4vw, 54px);

    line-height: 1.12;

    font-weight: 700;

    color: var(--white);

    max-width: 700px;
}


.amuka-elimu-banner-content h2 strong {
    display: block;

    margin-top: 5px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #F3E8B3 0%,
            #D4AF37 45%,
            #C9A227 100%
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.amuka-elimu-banner-content > p {
    max-width: 650px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.amuka-elimu-highlights {
    display: flex;

    flex-wrap: wrap;

    gap: 14px 25px;

    margin-bottom: 32px;
}


.amuka-elimu-highlights span {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 14px;

    font-weight: 600;
}


.amuka-elimu-highlights span i {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--primary-dark);

    font-size: 11px;

    box-shadow:
        0 4px 12px rgba(201, 162, 39, 0.25);
}


/* =========================================================
   BUTTON AREA
========================================================= */

.amuka-elimu-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.amuka-btn-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #D4AF37 0%,
            #C9A227 50%,
            #A67C00 100%
        );

    color: #102746;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(201, 162, 39, 0.28);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.amuka-btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(201, 162, 39, 0.40);

    background:
        linear-gradient(
            135deg,
            #E8D79A 0%,
            #D4AF37 50%,
            #B38B1E 100%
        );
}


.amuka-btn-primary i {
    font-size: 13px;

    transition:
        transform 0.3s ease;
}


.amuka-btn-primary:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.amuka-btn-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 7px;

    border: 1px solid rgba(232, 215, 154, 0.60);

    background: transparent;

    color: #F3E8B3;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all 0.3s ease;
}


.amuka-btn-secondary:hover {
    background: rgba(201, 162, 39, 0.14);

    border-color: #D4AF37;

    color: #FFFFFF;

    transform: translateY(-3px);
}


/* =========================================================
   RIGHT VISUAL AREA
========================================================= */

.amuka-elimu-banner-visual {
    position: relative;

    min-height: 330px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   MAIN GOLD CIRCLE
========================================================= */

.amuka-money-circle {
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 35% 30%,
            #F3E8B3 0%,
            #D4AF37 35%,
            #C9A227 65%,
            #9F7C12 100%
        );

    border: 8px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.25),
        0 0 0 18px rgba(201, 162, 39, 0.08);

    animation:
        amukaPulse 4s ease-in-out infinite;
}


.amuka-money-circle i {
    color: #102746;

    font-size: 72px;

    filter:
        drop-shadow(
            0 4px 5px rgba(0, 0, 0, 0.15)
        );
}


/* =========================================================
   AMOUNT CARD
========================================================= */

.amuka-amount {
    position: relative;

    z-index: 3;

    width: 245px;

    padding: 22px 25px;

    margin-top: 170px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.98);

    border-top: 4px solid #D4AF37;

    text-align: center;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.20);

    backdrop-filter: blur(8px);
}


.amuka-amount small {
    display: block;

    margin-bottom: 4px;

    color: #6B7280;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.amuka-amount strong {
    display: block;

    margin-bottom: 4px;

    font-size: 34px;

    line-height: 1;

    font-weight: 900;

    color: #C9A227;
}


.amuka-amount span {
    display: block;

    color: #374151;

    font-size: 12px;

    font-weight: 600;
}


/* =========================================================
   FLOATING ICONS
========================================================= */

.amuka-floating-icon {
    position: absolute;

    z-index: 5;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #FFFFFF;

    border: 2px solid #D4AF37;

    color: #B38B1E;

    font-size: 18px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);

    animation:
        amukaFloat 4s ease-in-out infinite;
}


/* =========================================================
   FLOATING ICON POSITIONS
========================================================= */

.amuka-floating-icon.icon-one {
    top: 30px;
    left: 8%;
}


.amuka-floating-icon.icon-two {
    top: 80px;
    right: 5%;

    animation-delay: 0.8s;
}


.amuka-floating-icon.icon-three {
    bottom: 25px;
    left: 12%;

    animation-delay: 1.5s;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.amuka-floating-icon:hover {
    background: #D4AF37;

    color: #102746;

    transform: scale(1.08);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes amukaPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }

}


@keyframes amukaFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .amuka-elimu-banner {
        padding: 65px 0;
    }


    .amuka-elimu-banner-inner {
        grid-template-columns: 1fr;

        gap: 45px;

        text-align: center;
    }


    .amuka-elimu-banner-content {
        max-width: 750px;

        margin: 0 auto;
    }


    .amuka-elimu-banner-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    .amuka-elimu-highlights {
        justify-content: center;
    }


    .amuka-elimu-buttons {
        justify-content: center;
    }


    .amuka-elimu-banner-visual {
        min-height: 340px;
    }


    .amuka-floating-icon.icon-one {
        left: 20%;
    }


    .amuka-floating-icon.icon-three {
        left: 23%;
    }


    .amuka-floating-icon.icon-two {
        right: 20%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .amuka-elimu-banner {
        padding: 55px 0;
    }


    .amuka-elimu-banner-inner {
        gap: 30px;
    }


    .amuka-elimu-banner-content h2 {
        font-size: 34px;
    }


    .amuka-elimu-banner-content > p {
        font-size: 15px;

        line-height: 1.7;
    }


    .amuka-elimu-highlights {
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }


    .amuka-elimu-buttons {
        flex-direction: column;

        width: 100%;
    }


    .amuka-btn-primary,
    .amuka-btn-secondary {
        width: 100%;

        max-width: 320px;
    }


    .amuka-elimu-banner-visual {
        min-height: 310px;
    }


    .amuka-money-circle {
        width: 180px;
        height: 180px;
    }


    .amuka-money-circle i {
        font-size: 58px;
    }


    .amuka-amount {
        width: 220px;

        margin-top: 145px;

        padding: 18px 20px;
    }


    .amuka-amount strong {
        font-size: 30px;
    }


    .amuka-floating-icon {
        width: 45px;
        height: 45px;

        font-size: 15px;
    }


    .amuka-floating-icon.icon-one {
        top: 25px;
        left: 5%;
    }


    .amuka-floating-icon.icon-two {
        top: 60px;
        right: 5%;
    }


    .amuka-floating-icon.icon-three {
        bottom: 15px;
        left: 8%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .amuka-elimu-banner {
        padding: 45px 0;
    }


    .amuka-elimu-banner-content h2 {
        font-size: 29px;
    }


    .amuka-elimu-label {
        font-size: 10px;

        padding: 8px 14px;
    }


    .amuka-elimu-banner-visual {
        min-height: 285px;
    }


    .amuka-money-circle {
        width: 155px;
        height: 155px;

        border-width: 6px;
    }


    .amuka-money-circle i {
        font-size: 48px;
    }


    .amuka-amount {
        width: 195px;

        margin-top: 125px;

        padding: 16px 15px;
    }


    .amuka-amount strong {
        font-size: 27px;
    }


    .amuka-amount span {
        font-size: 11px;
    }


    .amuka-floating-icon {
        width: 40px;
        height: 40px;

        font-size: 13px;
    }


    .amuka-floating-icon.icon-one {
        left: 0;
    }


    .amuka-floating-icon.icon-two {
        right: 0;
    }


    .amuka-floating-icon.icon-three {
        left: 3%;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.amuka-btn-primary:focus-visible,
.amuka-btn-secondary:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.45);

    outline-offset: 4px;
}


.amuka-floating-icon:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.45);

    outline-offset: 4px;
}





/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;

    border: none;
    outline: none;

    background: #00A651;
    color: #ffffff;

    border-radius: 6px;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 20px;

    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #18325B;
}


/* =========================================================
   MOBILE NAVIGATION - TABLET
========================================================= */

@media (max-width: 991px) {

    .header {
        position: relative;
        z-index: 9999;
    }


    .nav-wrapper {
        position: relative;
    }


    .navigation {
        position: absolute;

        top: calc(100% + 10px);
        left: 0;
        right: 0;

        width: 100%;

        background: #ffffff;

        padding: 15px 20px;

        display: flex;
        flex-direction: column;

        gap: 0;

        border-radius: 8px;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;

        max-height: calc(100vh - 100px);

        overflow-y: auto;
    }


    /* OPEN MENU */

    .navigation.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /* NAVIGATION LINKS */

    .navigation > a,
    .navigation .nav-dropdown > a {

        width: 100%;

        padding: 15px 10px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        color: #18325B;

        text-decoration: none;

        font-size: 15px;

        font-weight: 600;

        border-bottom: 1px solid #eeeeee;
    }


    .navigation > a:hover,
    .navigation .nav-dropdown > a:hover {

        color: #00A651;
    }


    /* ACTIVE LINK */

    .navigation > a.active {

        color: #00A651;
    }


    /* MOBILE DROPDOWN */

    .nav-dropdown {
        width: 100%;
    }


    .dropdown-menu {

        position: static;

        width: 100%;

        display: none;

        background: #f7f9fb;

        box-shadow: none;

        border-radius: 0;

        padding: 5px 0;

        margin: 0;

        opacity: 1;
        visibility: visible;

        transform: none;
    }


    /* OPEN DROPDOWN */

    .nav-dropdown.active .dropdown-menu {

        display: block;
    }


    .dropdown-menu a {

        display: block;

        padding: 12px 20px 12px 25px;

        color: #555555;

        font-size: 14px;

        text-decoration: none;

        border-bottom: 1px solid #eeeeee;
    }


    .dropdown-menu a:hover {

        color: #00A651;

        background: #f0f5f2;
    }


    /* ROTATE DROPDOWN ARROW */

    .nav-dropdown > a i {

        transition: transform 0.3s ease;
    }


    .nav-dropdown.active > a i {

        transform: rotate(180deg);
    }


    /* HEADER ACTIONS */

    .header-actions {

        display: flex;

        align-items: center;

        gap: 10px;
    }


    /* SHOW MOBILE BUTTON */

    .menu-toggle {

        display: flex;
    }


    /* HIDE GET STARTED ON SMALLER SCREENS */

    .contact-button {

        display: none;
    }

}


/* =========================================================
   SMALL MOBILE DEVICES
========================================================= */

@media (max-width: 576px) {

    .navigation {

        left: 10px;
        right: 10px;

        width: auto;

        top: calc(100% + 8px);

        padding: 10px 15px;
    }


    .menu-toggle {

        width: 42px;
        height: 42px;

        font-size: 18px;
    }

}

