/* ==========================================
   GLOBAL RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #05070a; /* Deep black-blue background */
    color: #ffffff;
    overflow-x: hidden;
}

/* --- Header Styles --- */
header {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 180px;
    align-items: center;
    gap: 24px;
    min-height: 120px;
    padding: 18px clamp(24px, 5vw, 72px);
    background-color: #05070a;
    border-bottom: 1px solid rgba(185, 224, 32, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.logo-container {
    display: flex;
    align-items: center;
    min-width: 0;
}

.header-logo {
    width: clamp(170px, 15vw, 230px);
    height: auto;
    object-fit: contain;
    display: block;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: clamp(18px, 2vw, 34px);
}

nav ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    text-decoration: none;
    color: #b8bec8;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    background: #b9e020;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

nav ul li.active a,
nav ul li a:hover {
    color: #b9e020;
}

nav ul li.active a::after,
nav ul li a:hover::after {
    transform: scaleX(1);
}

nav ul li a:focus-visible,
.btn-outline-black:focus-visible,
.menu-circle:focus-visible {
    outline: 2px solid #b9e020;
    outline-offset: 4px;
}

nav ul li a:active {
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.btn-outline-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #b9e020;
    color: #b9e020;
    min-height: 42px;
    padding: 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.btn-outline-black:hover {
    background-color: #b9e020;
    color: #05070a;
    border-color: #b9e020;
}

.menu-circle {
    background: #0066ff;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: none;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}


/* ==========================================
   ABOUT HERO SECTION STYLES
   ========================================== */
.about-hero-section {
    width: 100%;
    padding: 20px 40px 100px 40px;
    display: flex;
    justify-content: center;
    background-color: #05070a;
}

.about-hero-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Column: Text */
.about-text-col {
    flex: 1;
    max-width: 600px;
}

.about-text-col .sub-title {
    color: #b9e020;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.about-text-col .main-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
}

.main-headline .text-green { color: #b9e020; }
.main-headline .text-blue { color: #0066ff; }
.main-headline .text-white { color: #ffffff; }

.about-text-col .desc-text {
    font-family: 'Open Sans', sans-serif;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-about-cta {
    background: transparent;
    border: 2px solid #b9e020;
    color: #b9e020;
    padding: 14px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-about-cta:hover {
    background: #b9e020;
    color: #05070a;
    transform: translateY(-2px);
}

/* Right Column: Illustration */
.about-image-col {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-img {
    max-width: 115%;
    height: auto;
    object-fit: contain;
    max-height: 650px;
}


/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 1024px) {
    header {
        grid-template-columns: 1fr auto;
        min-height: 88px;
        padding: 12px 20px;
    }

    .header-logo {
        width: 160px;
    }

    nav {
        display: block;
        grid-column: 1 / -1;
        order: 3;
    }

    nav ul {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: rgba(5, 7, 10, 0.98);
        border: 1px solid rgba(185, 224, 32, 0.18);
        border-radius: 8px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        width: 100%;
        min-height: 46px;
        padding: 0 10px;
    }

    nav ul li a::after {
        left: 10px;
        right: auto;
        width: 42px;
    }

    .btn-outline-black {
        min-height: 40px;
        padding: 0 18px;
    }

    .menu-circle {
        display: flex;
    }

    /* Hero to Vertical Stack */
    .about-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .about-text-col {
        max-width: 100%;
    }
    .btn-about-cta {
        margin: 0 auto;
    }
    
    .about-text-col .main-headline {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    header {
        min-height: 76px;
        padding: 10px 16px;
    }

    .header-logo {
        width: 132px;
    }

    .about-hero-section {
        padding: 18px 20px 50px;
    }
    .about-text-col .main-headline {
        font-size: 28px;
    }
    .btn-outline-black {
        display: none;
    }

    nav ul {
        left: 16px;
        right: 16px;
    }
}
/* ==========================================
   starting story page  STYLES
   ========================================== */
/* ==========================================
   OUR STORY SECTION (WHITE BACKGROUND)
   ========================================== */
.story-section-white {
    width: 100%;
    background:
        linear-gradient(180deg, #05070a 0%, #080c12 48%, #05070a 100%);
    padding: 90px 24px;
    display: flex;
    justify-content: center;
}

.story-container-white {
    max-width: 1320px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.72fr);
    gap: 28px;
    align-items: start;
}

/* --- Left Column --- */
.story-left-col-white {
    display: flex;
    flex-direction: column;
    gap: 26px;
    min-width: 0;
}

/* Top: Image & Text */
.story-top-white {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.story-image-wrapper-white {
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(185, 224, 32, 0.16);
    background: #0d1117;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.story-main-img-white {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.story-text-wrapper-white {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    padding: 34px;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.story-text-wrapper-white .sub-title-white {
    color: #b9e020;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.story-text-wrapper-white .main-title-white {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 3vw, 42px);
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.story-text-wrapper-white .story-desc-white {
    font-family: 'Open Sans', sans-serif;
    color: #c7ced8;
    font-size: 15px;
    line-height: 1.7;
}

/* Bottom: 4 Features Grid */
.story-features-row-white {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-item-white {
    text-align: left;
    min-height: 180px;
    padding: 24px 20px;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.feature-icon-white {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon-white svg {
    width: 34px;
    height: 34px;
}
.feature-icon-white.green-icon-white svg { color: #b9e020; }
.feature-icon-white.blue-icon-white svg { color: #0066ff; }

.feature-title-white {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-desc-white {
    font-family: 'Open Sans', sans-serif;
    color: #aeb7c4;
    font-size: 13px;
    line-height: 1.6;
}


/* --- Right Column (Dark Side Card) --- */
.story-right-col-white {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.side-card-white {
    position: relative;
    width: min(100%, 320px);
    background:
        linear-gradient(145deg, rgba(185, 224, 32, 0.08), transparent 38%),
        #10151d;
    border: 1px solid rgba(185, 224, 32, 0.22);
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.side-card-white::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, #b9e020, #0066ff);
}

.side-block-white {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.side-icon-white {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}
.side-icon-white svg {
    width: 22px;
    height: 22px;
}
.side-icon-white.green-text-white { color: #b9e020; }
.side-icon-white.blue-text-white { color: #0066ff; }

.side-text-white h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0;
}
.side-text-white h4.green-text-white { color: #b9e020; }
.side-text-white h4.blue-text-white { color: #0066ff; }

.side-text-white p {
    font-family: 'Open Sans', sans-serif;
    color: #d8dde6;
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
}

.side-divider-white {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
}


/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 1024px) {
    .story-container-white {
        grid-template-columns: 1fr;
    }
    .story-top-white {
        grid-template-columns: 1fr;
    }
    .story-image-wrapper-white {
        width: 100%;
        min-height: 320px;
    }
    .story-main-img-white {
        min-height: 320px;
    }
    .story-text-wrapper-white .main-title-white {
        font-size: 28px;
    }
    .story-features-row-white {
        grid-template-columns: repeat(2, 1fr);
    }
    .side-card-white {
        width: 100%;
        max-width: 720px;
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .story-section-white {
        padding: 60px 18px;
    }

    .story-text-wrapper-white {
        min-height: auto;
        padding: 28px 22px;
    }

    .story-features-row-white {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .feature-item-white {
        min-height: 160px;
    }
}

@media (max-width: 520px) {
    .story-section-white {
        padding: 46px 16px;
    }

    .story-image-wrapper-white,
    .story-main-img-white {
        min-height: 260px;
    }

    .story-features-row-white {
        grid-template-columns: 1fr;
    }

    .side-card-white {
        padding: 24px 20px;
    }

    .side-block-white {
        flex-direction: column;
        gap: 12px;
    }
}
/* ==========================================
   footer section  STYLES
   ========================================== */

/* =========================================================
   STATS, VALUES & CTA SECTION (Dark Background)
   ========================================================= */
.stats-values-cta-section {
    width: 100%;
    background-color: #05070a; /* Deep dark background */
    padding: 60px 20px 100px 20px;
    display: flex;
    justify-content: center;
}

.stats-values-container {
    max-width: 1300px;
    width: 100%;
}


/* =========================================================
   1. STATS ROW
   ========================================================= */
.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
    position: relative;
}

/* Dashed separator line between stats */
.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    border-right: 1px dashed rgba(255, 255, 255, 0.15);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon svg {
    width: 32px;
    height: 32px;
}
.stat-icon.green-text { color: #b9e020; }
.stat-icon.blue-text { color: #0066ff; }

.stat-text h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 2px 0;
    line-height: 1;
}

.stat-text p {
    font-family: 'Open Sans', sans-serif;
    color: #b0b0b0;
    font-size: 13px;
    margin: 0;
}


/* =========================================================
   DIVIDER
   ========================================================= */
.section-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 50px 0 40px 0;
}


/* =========================================================
   2. OUR VALUES
   ========================================================= */
.values-wrapper {
    width: 100%;
    margin-bottom: 60px;
}

.values-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #b9e020;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.values-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.value-card {
    flex: 1;
    background: rgba(20, 24, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.value-icon {
    display: flex;
    margin-bottom: 15px;
}
.value-icon svg {
    width: 30px;
    height: 30px;
}
.value-icon.green-text { color: #b9e020; }
.value-icon.blue-text { color: #0066ff; }

.value-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-desc {
    font-family: 'Open Sans', sans-serif;
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}


/* =========================================================
   3. CTA BANNER
   ========================================================= */
.cta-banner-bottom {
    position: relative;
    width: 100%;
    min-height: 96px;
    border-radius: 0;
    padding: 22px 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(185, 224, 32, 0.9) 0%, rgba(19, 46, 18, 0.96) 13%, rgba(0, 68, 210, 0.98) 30%, rgba(0, 86, 232, 1) 72%, rgba(0, 47, 150, 0.96) 100%);
    border-bottom: 2px solid #05070a;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

/* Simulated Paint Brush backgrounds using CSS */
.brush-stroke-green-bottom {
    position: absolute;
    left: -4%;
    top: -18%;
    width: 24%;
    height: 140%;
    background:
        linear-gradient(152deg, #b9e020 0 12%, transparent 12% 18%, #88b80f 18% 27%, transparent 27% 34%, #b9e020 34% 46%, transparent 46% 100%),
        radial-gradient(circle at left center, rgba(185, 224, 32, 0.78) 0%, transparent 70%);
    transform: skewX(-18deg);
    filter: none;
    z-index: 0;
}
.brush-stroke-blue-bottom {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(165deg, transparent 0 8%, rgba(0, 20, 45, 0.42) 8% 10%, transparent 10% 86%, rgba(5, 7, 10, 0.78) 86% 88%, transparent 88% 100%),
        repeating-linear-gradient(172deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 9px);
    filter: none;
    z-index: 0;
}

.cta-banner-bottom::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(5, 7, 10, 0.88) 0 3%, transparent 3% 92%, rgba(5, 7, 10, 0.92) 92% 100%);
    z-index: 0;
}

.cta-bottom-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.cta-bottom-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.btn-cta-bottom {
    border: 2px solid #b9e020;
    color: #b9e020;
    min-width: 142px;
    min-height: 48px;
    padding: 0 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, transform 0.2s, border-color 0.3s;
    background: #05070a;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}
.btn-cta-bottom:hover {
    background: #b9e020;
    border-color: #b9e020;
    color: #05070a;
    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */
@media (max-width: 1024px) {
    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-box {
        flex: 1 1 30%;
        justify-content: center;
        padding: 10px 0;
    }
    .stat-box:not(:last-child)::after {
        display: none; /* Remove dashes on wrapped layout */
    }
    
    .values-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .value-card {
        flex: 1 1 30%;
    }

    .cta-bottom-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .stat-box {
        flex: 1 1 45%;
    }
    .value-card {
        flex: 1 1 45%;
    }
    .cta-banner-bottom {
        min-height: 86px;
        padding: 22px 24px;
    }
}

@media (max-width: 600px) {
    .stat-box {
        flex: 1 1 100%;
        justify-content: flex-start;
        padding: 10px 20px;
    }
    .value-card {
        flex: 1 1 100%;
        text-align: center;
    }
    .value-icon {
        justify-content: center;
    }

    .cta-banner-bottom {
        padding: 26px 20px;
    }

    .cta-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
