/* =========================================
   About Us Page Styles
   ========================================= */

/* --- Dark Header Variant --- */
.header.header-dark {
    background-color: var(--color-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: none;
}

.header-dark .nav-link {
    color: var(--color-white);
}

.header-dark .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header-dark .bar {
    background-color: var(--color-white);
}

.header-dark .dropdown-menu {
    background-color: var(--color-white);
}

.header-dark .dropdown-menu li a {
    color: var(--color-black);
}

.header-dark .btn-blue {
    background-color: transparent;
    border: 1.5px solid var(--color-white);
    color: var(--color-white);
}

.header-dark .btn-blue:hover {
    background-color: var(--color-white);
    color: var(--color-blue);
}

.header-dark .nav-chevron {
    color: var(--color-white);
}

/* =========================================
   1. About Hero Section
   ========================================= */

.about-hero {
    background: var(--color-white);
    padding: 52px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-title {
    font-size: var(--fs-42);
    font-weight: 700;
    font-weight: 700;
    background: linear-gradient(89deg, #00BC5B 0%, #0E3BA6 49.8%, #0E3BA6 98.66%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1.25;
    max-width: 700px;
    margin: 0 auto 20px;
}

.about-hero-desc {
    font-size: var(--fs-16);
    color: var(--color-black);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 36px;
}

/* Stats Badges */
.about-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.about-stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--color-light-blue);
    border: 1px solid var(--color-blue-half);
    padding: 14px 28px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.about-stat-badge:hover {
    background: rgba(255, 255, 255, 0.15);
}

.about-stat-badge .stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 188, 91, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    flex-shrink: 0;
}

.about-stat-badge .stat-info strong {
    font-size: var(--fs-24);
    font-weight: 700;
    color: var(--color-blue);
    display: block;
    line-height: 1;
}

.about-stat-badge .stat-info span {
    font-size: 12px;
    color: var(--color-black);
    font-weight: 400;
}

/* Team Photo */
.about-team-photo {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
}

.about-team-photo img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

/* =========================================
   2. Vision & Mission Section
   ========================================= */


.vm-card {
    background: var(--color-light-blue);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid var(--color-light-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.vm-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.vm-card-icon.blue {
    background: rgba(14, 59, 166, 0.1);
    color: var(--color-blue);
}

.vm-card-icon.green {
    background: rgba(0, 188, 91, 0.1);
    color: var(--color-green);
}

.vm-card h3 {
    font-size: var(--fs-24);
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 10px;
}

.vm-card p {
    font-size: var(--fs-15);
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   3. Our Journey / Timeline Section
   ========================================= */

.journey-section {
    padding: var(--section-padding) 0;
    background: #F0F6FF;
}

.journey-header {
    text-align: center;
    margin-bottom: 52px;
}

.journey-header h2 {
    font-size: var(--fs-36);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
}

.journey-header p {
    font-size: var(--fs-16);
    color: #666;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-blue), var(--color-green));
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Alternating layout */
.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--color-blue);
    border: 3px solid #F0F6FF;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(14, 59, 166, 0.15);
}

.timeline-item:nth-child(even) .timeline-dot {
    background: var(--color-green);
    box-shadow: 0 0 0 4px rgba(0, 188, 91, 0.15);
}

.timeline-content {
    width: 44%;
    background: var(--color-white);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #E8EDF5;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-year {
    display: inline-block;
    background: var(--color-blue);
    color: var(--color-white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.timeline-item:nth-child(even) .timeline-year {
    background: var(--color-green);
}

.timeline-content h4 {
    font-size: var(--fs-16);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: var(--fs-14);
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.timeline-content img {
    width: 100%;
    border-radius: 8px;
    margin-top: 12px;
    height: 120px;
    object-fit: cover;
}

.timeline-bottom-note {
    text-align: center;
    margin-top: 40px;
    font-size: var(--fs-15);
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    /* padding: 20px 24px;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid #E8EDF5; */
}

.timeline-bottom-note strong {
    color: var(--color-blue);
}

/* =========================================
   4. 6 in 1 ERP Wheel Section
   ========================================= */

.erp-wheel-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
    text-align: center;
}

.erp-wheel-section .section-heading {
    font-size: var(--fs-32);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.erp-wheel-section .section-heading span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.erp-wheel-section .section-subtext {
    font-size: var(--fs-16);
    color: #666;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Wheel Container */
.erp-wheel-container {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto 48px;
}

.erp-wheel-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#0E3BA6 0deg 60deg,
            #1A56D6 60deg 120deg,
            #00BC5B 120deg 180deg,
            #00A34F 180deg 240deg,
            #0E3BA6 240deg 300deg,
            #1A56D6 300deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: wheel-rotate 30s linear infinite;
}

@keyframes wheel-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.erp-wheel-center {
    width: 180px;
    height: 180px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    animation: wheel-counter-rotate 30s linear infinite;
}

@keyframes wheel-counter-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.erp-wheel-center img {
    width: 80px;
    height: auto;
}

/* Module Labels around the wheel */
.erp-module-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.erp-module-label {
    position: absolute;
    padding: 8px 18px;
    background: var(--color-white);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-black);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #E8EDF5;
    white-space: nowrap;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.erp-module-label:hover {
    transform: scale(1.07);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.erp-module-label:nth-child(1) {
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.erp-module-label:nth-child(2) {
    top: 20%;
    right: -90px;
}

.erp-module-label:nth-child(3) {
    bottom: 20%;
    right: -80px;
}

.erp-module-label:nth-child(4) {
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.erp-module-label:nth-child(5) {
    bottom: 20%;
    left: -80px;
}

.erp-module-label:nth-child(6) {
    top: 20%;
    left: -100px;
}

.erp-module-label .label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
}

.label-dot.blue {
    background: var(--color-blue);
}

.label-dot.green {
    background: var(--color-green);
}

.erp-wheel-bottom-text {
    font-size: var(--fs-16);
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================================
   5. Tailored ERP Section
   ========================================= */

.tailored-section {
    padding: var(--section-padding) 0;
    background: #F0F6FF;
}

.tailored-content {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.tailored-text {
    flex: 1;
}

.tailored-text h2 {
    font-size: var(--fs-32);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.tailored-text p {
    font-size: var(--fs-16);
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tailored-text p:last-child {
    margin-bottom: 0;
}

/* Right side cards */
.tailored-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tailored-card {
    background: var(--color-white);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #E8EDF5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tailored-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.tailored-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tailored-card-icon.blue {
    background: rgba(14, 59, 166, 0.1);
    color: var(--color-blue);
}

.tailored-card-icon.green {
    background: rgba(0, 188, 91, 0.1);
    color: var(--color-green);
}

.tailored-card h4 {
    font-size: var(--fs-16);
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 8px;
}

.tailored-card p {
    font-size: var(--fs-16);
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.tailored-cards .tailored-card:nth-child(2) h4 {
    color: var(--color-green);
}
/* =========================================
   6. Leverage Section (Blue Gradient)
   ========================================= */

.leverage-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(264deg, #00BC5B -0.01%, #0E3BA6 100%);
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.leverage-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 188, 91, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.leverage-section h2 {
    font-size: var(--fs-32);
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.leverage-section h2 span {
    color: var(--color-green);
}

.leverage-section>.container>p {
    font-size: var(--fs-16);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.leverage-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.leverage-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
}

.leverage-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.leverage-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
}

.leverage-card h4 {
    font-size: var(--fs-14);
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.leverage-bottom-text {
    font-size: var(--fs-15);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* =========================================
   7. Our Commitment Section
   ========================================= */

.commitment-section {
    padding: var(--section-padding) 0;
    background: var(--color-light-blue);
    text-align: center;
}

.commitment-section h2 {
    font-size: var(--fs-32);
    font-weight: 700;
    color: var(--color-black);
}

.commitment-section p {
    font-size: var(--fs-16);
    font-weight: 400;
    color: var(--color-black);
}

/* =========================================
   8. Growing Network CTA Section
   ========================================= */

.network-cta-section {
    background: var(--color-light-blue);
}

.network-cta-banner {
    background-image: url('../img/blue-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.network-cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 188, 91, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.network-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 59, 166, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.network-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.network-cta-content h2 {
    font-size: var(--fs-32);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.network-cta-content p {
    font-size: var(--fs-16);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* =========================================
   9. Responsive Styles
   ========================================= */

@media (max-width: 991px) {

    .about-hero-title {
        font-size: var(--fs-36);
    }

    .about-team-photo img {
        height: 260px;
    }

    .vm-cards-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Timeline - stack vertically */
    .timeline::before {
        left: 24px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 56px;
    }

    .timeline-dot {
        left: 24px;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        margin: 0;
    }

    /* ERP Wheel */
    .erp-wheel-container {
        width: 320px;
        height: 320px;
    }

    .erp-wheel-center {
        width: 150px;
        height: 150px;
    }

    .erp-module-label:nth-child(2),
    .erp-module-label:nth-child(3) {
        right: -70px;
    }

    .erp-module-label:nth-child(5),
    .erp-module-label:nth-child(6) {
        left: -70px;
    }

    /* Tailored */
    .tailored-content {
        flex-direction: column;
        gap: 32px;
    }

    .tailored-cards {
        width: 100%;
    }

    /* Leverage Cards */
    .leverage-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Commitment */
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 36px 0;
    }

    .about-hero-title {
        font-size: var(--fs-32);
    }

    .about-stats-row {
        gap: 12px;
        margin-bottom: 36px;
    }

    .about-stat-badge {
        padding: 10px 18px;
    }

    .about-team-photo img {
        height: 200px;
    }

    .vm-cards-wrapper {
        grid-template-columns: 1fr;
        margin-top: -30px;
    }

    .vm-card {
        padding: 24px;
    }

    /* Wheel */
    .erp-wheel-container {
        width: 260px;
        height: 260px;
    }

    .erp-wheel-center {
        width: 120px;
        height: 120px;
    }

    .erp-wheel-center img {
        width: 60px;
    }

    .erp-module-label {
        font-size: 11px;
        padding: 6px 12px;
    }

    .erp-module-label:nth-child(2),
    .erp-module-label:nth-child(3) {
        right: -55px;
    }

    .erp-module-label:nth-child(5),
    .erp-module-label:nth-child(6) {
        left: -55px;
    }

    /* Leverage */
    .leverage-cards {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .leverage-card {
        padding: 22px 16px;
    }

    /* Commitment */
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CTA */
    .network-cta-banner {
        padding: 48px 24px;
    }
}

@media (max-width: 480px) {
    .about-stats-row {
        flex-direction: column;
        gap: 10px;
    }

    .about-stat-badge {
        width: 100%;
        justify-content: center;
    }

    .erp-wheel-container {
        width: 220px;
        height: 220px;
    }

    .erp-wheel-center {
        width: 100px;
        height: 100px;
    }

    .erp-module-label:nth-child(2),
    .erp-module-label:nth-child(3) {
        right: -45px;
    }

    .erp-module-label:nth-child(5),
    .erp-module-label:nth-child(6) {
        left: -45px;
    }
}