/* =================================================================
    // TABLE OF CONTENTS in home.css

    1. HERO SECTION
    2. BUSINESS TRENDS SECTION
    3. ELXR Text NEON CHASER SECTION 
    5. WHO WE ARE SECTION
    6. WE ARE EXPERTISE SECTION
================================================================= */

/* ========== 1. HERO SECTION ========== */
.home-herosection {
    display: flex;
    width: 100%;
    padding: calc(var(--navbar-height) + 40px) 5% 40px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: var(--space-xl);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    z-index: 2;
}

.pre-header {
    display: flex;
    align-items: center;
    gap: var(--space-s);
    margin-bottom: var(--space-m);
    font-size: var(--fs-200);
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.pre-header::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--text-color);
}

.hero-heading {
    font-size: var(--fs-800);
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: var(--space-m);
}

.hero-heading .line {
    overflow: hidden;
    display: block;
}

.hero-heading .word {
    display: inline-block;
    transform: translateY(110%);
}

.hero-subheading {
    font-size: var(--fs-400);
    line-height: 1.6;
    color: #555;
    max-width: 450px;
    margin-bottom: var(--space-m);
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Hero CTA Button --- */
.hero-cta .text-button {
    background-color: #1a1a1a;
    color: white;
    font-size: var(--fs-300);
    font-family: var(--font-primary);
    font-weight: 500;
    padding: var(--space-s) var(--space-m) var(--space-s) var(--space-l);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1;
    white-space: nowrap;
}

.hero-cta .text-button:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta .arrow-button {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-left: -23px;
    z-index: 2;
}

.hero-cta .text-button:hover~.arrow-button {
    transform: translateY(-2px) rotateZ(45deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Styles --- */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-container {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .pre-header {
        justify-content: center;
    }

    .hero-subheading,
    .hero-cta .button-container {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .home-herosection {
        padding-top: calc(var(--navbar-height) + 20px);
    }
}


/* ========== 2. BUSINESS TRENDS SECTION ========== */

.business-trends-section {
    position: relative;
    overflow: hidden;
}

.bt-grid {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Content (Left Side) --- */
.bt-content h2 {
    font-size: var(--fs-700);
    font-family: var(--font-primary);
    font-weight: 800;
    margin-bottom: var(--space-m);
    color: #1a1a1a;
}

.bt-content p {
    font-size: var(--fs-400);
    line-height: 1.6;
    color: #555;
    max-width: 350px;
    margin-bottom: var(--space-l);
}

.line-mask {
    overflow: hidden;
    padding-bottom: 0.1em;
}

.bt-author-info {
    display: flex;
    align-items: center;
    gap: var(--space-s);
}

.bt-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bt-author-details h4 {
    font-size: var(--fs-500);
    font-family: var(--font-primary);
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.bt-author-details span {
    font-size: var(--fs-200);
    color: #666;
}

/* --- Cards (Right Side) --- */
.bt-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-m);
    perspective: 1000px;
}

.bt-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-medium);
    padding: var(--space-l);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.bt-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.bt-card-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #d1d1f7;
}

.bt-card-header span {
    font-size: var(--fs-200);
    color: #666;
}

.bt-card h3 {
    font-size: var(--fs-600);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: #1a1a1a;
}

.bt-card p {
    font-size: var(--fs-300);
    color: #555;
    line-height: 1.5;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .bt-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .bt-content {
        text-align: center;
    }

    .bt-content p {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .bt-author-info {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .bt-cards-container {
        grid-template-columns: 1fr;
    }
}


/* ========== 3. ELXR Text NEON CHASER SECTION  ========== */
.neon-section {
    position: relative;
    width: 100%;
    z-index: 1;
    /* padding: var(--space-xxl) 5%; */
    margin: 0 auto;
}

/* --- Neon Chaser Container --- */
.neon-chaser-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: var(--space-xl) var(--space-l);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    cursor: pointer;
    background: linear-gradient(to bottom, rgb(237, 237, 237, 0) 0%, #ededed 30%, #ededed 60%, rgb(240, 195, 209, 0)) !important;
}

.neon-chaser-container .neon-text {
    font-family: "Jura", sans-serif;
    font-weight: 700;
    text-align: center;
    stroke-width: 3px;
    stroke-dasharray: 100;
    fill: transparent;
    stroke-linecap: round;
    animation: theme-neon-chaser-animation 1.8s linear infinite;
    transition: all 0.8s ease-in-out;
}

.neon-chaser-container .neon-text:hover {
    stroke-dasharray: 2500;
    stroke-dashoffset: 0;
    stroke-width: 2px;
    fill: rgba(255, 255, 255, 0.9);
    stroke: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.neon-chaser-container .hover-prompt {
    color: rgba(0, 0, 0, 0.7);
    margin-top: var(--space-s);
    font-size: var(--fs-400);
    font-family: "Poppins", sans-serif;
}

@keyframes theme-neon-chaser-animation {
    0% {
        stroke-dashoffset: 0;
        stroke: #f97116;
        filter: drop-shadow(0px 0px 5px #f97116);
    }

    50% {
        stroke: #4a8bdf;
        filter: drop-shadow(0px 0px 5px #4a8bdf);
    }

    100% {
        stroke-dashoffset: 200;
        stroke: #f97116;
        filter: drop-shadow(0px 0px 5px #f97116);
    }
}

@media (max-width: 600px) {
    .neon-chaser-container .neon-text {
        font-size: 150px;
    }

    .neon-chaser-container .hover-prompt {
        font-size: var(--fs-200);
    }
}


/* ========== 5. WHO WE ARE SECTION ========== */
.wwa-section {
    position: relative;
    width: 100%;
    z-index: 1;
    /* padding: var(--space-xxl) 5%; */
    margin: 0 auto;
}

/* --- Section Title --- */
.wwa-title-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: var(--space-xxl);
}

.wwa-title-decorator {
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--text-color);
    margin-right: var(--space-m);
    transform-origin: left;
}

.wwa-section-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-family: var(--font-primary);
    font-weight: 700;
    overflow: hidden;
    display: inline-block;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    cursor: pointer;
}

.wwa-title-char {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

.wwa-title-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: var(--text-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

/* --- Section Content --- */
.wwa-split-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    width: 100%;
    align-items: center;
    gap: 80px;
}

.wwa-visual-column img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.wwa-content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.wwa-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
    max-width: 550px;
}

.wwa-stats-number {
    font-size: var(--fs-900);
    font-family: var(--font-primary);
    font-weight: 800;
    margin: 0;
}

.wwa-stats-description {
    font-size: var(--fs-600);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* --- Marquee --- */
.wwa-marquee-container {
    width: 100%;
    overflow: hidden;
    margin-top: var(--space-l);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    cursor: default;
}

.wwa-marquee-track {
    display: flex;
    will-change: transform;
}

.wwa-feature-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    padding: 0 var(--space-xl);
    width: 300px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.wwa-feature-header {
    display: flex;
    align-items: center;
    gap: var(--space-s);
}

.wwa-feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.wwa-feature-icon-wrapper.icon-1 {
    background-color: #99f6e4;
}

.wwa-feature-icon-wrapper.icon-2 {
    background-color: #ffcbab;
}

.wwa-feature-card h3 {
    font-size: var(--fs-500);
    font-family: var(--font-primary);
    font-weight: 700;
    margin: 0;
}

.wwa-feature-card p {
    font-size: var(--fs-300);
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    max-width: 280px;
}


/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .wwa-split-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wwa-visual-column {
        height: 300px;
        min-height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wwa-visual-column img {
        object-fit: contain;
        height: 100%;
        width: auto;
        max-width: 100%;
        border-radius: var(--border-radius-medium);
    }

    .wwa-content-column {
        align-items: center;
        text-align: center;
    }

    .wwa-text-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* .wwa-section {
        padding: var(--space-xl) var(--space-m);
    } */

    .wwa-stats-description {
        font-size: var(--fs-500);
    }

    .wwa-feature-card {
        width: 280px;
        padding: 0 var(--space-m);
        text-align: left;
    }

    .wwa-title-decorator {
        width: 40px;
        margin-right: var(--space-s);
    }
}

@media (max-width: 480px) {
    .wwa-title-decorator {
        width: 30px;
        margin-right: var(--space-xs);
    }
}


/* ========== 6. WE ARE EXPERTISE SECTION ========== */
.expertise-section {
    position: relative;
    width: 100%;
    z-index: 1;
}

.exp-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    cursor: pointer;
}

.exp-title-decorator {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1a202c;
    margin-right: var(--space-m);
    transform-origin: left;
}

.exp-section-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-family: var(--font-primary);
    font-weight: 700;
    color: #1a202c;
    overflow: hidden;
    display: inline-block;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    cursor: pointer;
}

.exp-char {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

.exp-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: #1a202c;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
}

.exp-grid {
    display: grid;
    justify-content: center;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
    padding: var(--space-xs);
}

.exp-card-row-center {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: var(--space-m);
}

.exp-card {
    padding: var(--space-m);
    border-radius: var(--border-radius-medium);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    width: 100%;
    max-width: 340px;
    will-change: transform, opacity;
}

.exp-card h3 {
    font-size: var(--fs-400);
    font-family: var(--font-primary);
    font-weight: 700;
    color: #2D3748;
    margin-bottom: var(--space-xs);
}

.exp-card p {
    font-size: var(--fs-300);
    color: #4A5568;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exp-card-row-center {
        flex-wrap: wrap;
    }

    .exp-title-decorator {
        width: 40px;
        margin-right: var(--space-s);
    }
}

@media (max-width: 600px) {

    .exp-grid {
        grid-template-columns: 1fr;
        gap: var(--space-m);
    }

    .exp-card-row-center {
        flex-direction: column;
        align-items: center;
        gap: var(--space-m);
    }

    .exp-card {
        max-width: 100%;
    }

    .exp-title-decorator {
        width: 30px;
        margin-right: var(--space-xs);
    }
}


/* ========================== End of Home Page ============================ */