:root {
    --primary: #070b14;
    --primary-light: #7fa0ff;
    --bg-dark: #212F52;
    --bg-card: #101827;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, .08);
}

body {
    /* background: var(--bg-dark); */
    /* background:
        linear-gradient(180deg,
            #0b1220 0%,
            #101827 100%); */
    background:
        radial-gradient(circle at top right,
            rgba(79, 124, 255, .25),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(0, 180, 255, .15),
            transparent 40%),

        linear-gradient(135deg,
            #0f172a 0%,
            #16213e 35%,
            #1d3557 70%,
            #223354 100%);
    font-family: Inter, sans-serif;
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
}

/* ==========================================
   HERO SECTION
========================================== */

.hero-section {

    position: relative;
    overflow: hidden;

    /* background:
        linear-gradient(rgba(70, 75, 85, .70),
            rgba(45, 50, 60, .85)),
        url("./ai-services.png"); */

    background:
        linear-gradient(rgba(10, 20, 45, .15),
            rgba(10, 20, 45, .25)),
        url("../images/ai-services.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 180px 0 120px;
}

/* Background Effects */
.hero-section::before {

    content: "";

    position: absolute;
    inset: 0;

    background:

        radial-gradient(circle at 80% 20%,
            rgba(255, 255, 255, .10),
            transparent 35%),

        radial-gradient(circle at 20% 80%,
            rgba(255, 255, 255, .06),
            transparent 40%);

    z-index: 1;
}

.hero-section .container {

    position: relative;
    z-index: 2;
}

.hero-section h1 {

    color: #ffffff;

    text-shadow:
        0 4px 30px rgba(0, 0, 0, .25);

    font-weight: 800;
}

.hero-section p {

    color: #e5e7eb;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, .15);
}

.hero-particles span {

    position: absolute;

    width: 4px;
    height: 4px;

    background: #4f7cff;

    border-radius: 50%;

    box-shadow:
        0 0 10px #4f7cff,
        0 0 20px #4f7cff;

    animation: particleFloat 10s linear infinite;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    top: 80%;
}

.hero-particles span:nth-child(2) {
    left: 30%;
    top: 90%;
    animation-delay: 2s;
}

.hero-particles span:nth-child(3) {
    left: 55%;
    top: 85%;
    animation-delay: 4s;
}

.hero-particles span:nth-child(4) {
    left: 75%;
    top: 95%;
    animation-delay: 1s;
}

.hero-particles span:nth-child(5) {
    left: 90%;
    top: 75%;
    animation-delay: 3s;
}

@keyframes particleFloat {

    from {
        transform: translateY(100px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    to {
        transform: translateY(-800px);
        opacity: 0;
    }
}

.hero-section .container {

    position: relative;
    z-index: 2;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -300px;
    left: -200px;
    background: radial-gradient(circle, rgba(79, 124, 255, .15) 0%, transparent 70%);
}

.badge-custom {
    background: rgba(79, 124, 255, .12);
    border: 1px solid rgba(79, 124, 255, .25);
    color: #8fb0ff;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 800;
    margin: 30px 0;
}

.hero-title span {
    /* color: var(--primary); */
    color: #ccc;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.8;
}

.btn-primary-custom {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary-custom:hover {
    background: #416df0;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 1px solid var(--border);
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #000;
}

.stats {
    margin-top: 60px;
}

.stat-item h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-item p {
    color: var(--text-muted);
    margin: 0;
}

.hero-visual {
    position: relative;
}

.dashboard-card {
    background: linear-gradient(180deg, #111827, #0d1320);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .4),
        inset 0 1px 0 rgba(255, 255, 255, .05);
}

.mock-screen {
    height: 420px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(79, 124, 255, .12), transparent),
        #0b1220;
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 20px;
}

.chart {
    height: 180px;
    border-radius: 12px;
    background: linear-gradient(135deg,
            rgba(79, 124, 255, .15),
            rgba(79, 124, 255, .03));
    border: 1px solid rgba(79, 124, 255, .15);
}

.metric-card {
    background: #121c2f;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px;
    padding: 18px;
}

.metric-card small {
    color: var(--text-muted);
}

.metric-card h5 {
    color: white;
    margin-top: 8px;
}

.floating-card {
    position: absolute;
    background: rgba(16, 24, 39, .95);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 18px;
    min-width: 220px;
}

.card-top {
    top: 30px;
    left: -60px;
}

.card-bottom {
    bottom: 30px;
    right: -60px;
}

.floating-card small {
    color: var(--text-muted);
    display: block;
}

.floating-card strong {
    color: white;
}

@media(max-width:991px) {

    .hero-title {
        font-size: 2.8rem;
    }

    .floating-card {
        display: none;
    }

    .hero-section {
        padding: 100px 0;
    }
}

/* ===========================
   NAVBAR
=========================== */

.custom-navbar {
    /* background: rgba(7, 11, 20, .85); */
    background: rgba(10, 20, 45, .85);
    /* background:
        linear-gradient(180deg,
            #0b1220 0%,
            #101827 100%); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding: 18px 0;
    transition: .3s ease;
    z-index: 1050;
}

/* =========================
   AIDOTSERVICES LOGO
========================= */

.ai-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 44px;
    height: 44px;

    position: relative;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #4f7cff,
            #7b9eff);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 0 25px rgba(79, 124, 255, .35);
}

.logo-mark::before {
    content: "";

    width: 20px;
    height: 20px;

    border: 2px solid #fff;

    border-radius: 50%;

    position: absolute;
}

.logo-mark::after {
    content: "";

    width: 10px;
    height: 10px;

    background: #fff;

    border-radius: 50%;

    position: absolute;

    right: 9px;
    top: 9px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.logo-text {
    display: flex;
    align-items: center;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-primary {
    color: #ffffff;
}

.brand-secondary {
    color: #4f7cff;
}

/* Mobile */

@media(max-width:768px) {

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
    }
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            #4f7cff,
            #6d92ff);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.navbar-brand {
    font-size: 1.4rem;
    color: #fff !important;
}

.navbar-nav {
    gap: 12px;
}

.nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    padding: .75rem 1rem !important;
    transition: .3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 6px;
    width: 18px;
    height: 2px;
    background: #4f7cff;
    border-radius: 10px;
}

.nav-btn-primary {
    background: #4f7cff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    transition: .3s;
}

.nav-btn-primary:hover {
    background: #416df0;
    color: #fff;
}

.nav-btn-outline {
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
}

.nav-btn-outline:hover {
    background: #fff;
    color: #000;
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===========================
   MOBILE NAVIGATION
        =========================== */

@media (max-width:991px) {

    .custom-navbar {
        padding: 14px 0;
    }

    .navbar-collapse {
        margin-top: 16px;
        padding: 24px;
        border-radius: 20px;
        background: #101827;
        border: 1px solid rgba(255, 255, 255, .06);
    }

    .navbar-nav {
        gap: 4px;
    }

    .nav-link {
        padding: 14px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .nav-link.active::after {
        display: none;
    }

    .navbar-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .navbar-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }
}


/* ==========================
   SERVICES DROPDOWN
========================== */

.services-dropdown {
    position: relative;
}

.dropdown-menu {

    background: #101827;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 18px;

    padding: 12px;

    min-width: 280px;

    margin-top: 0;

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .25);
}

.dropdown-item {

    color: #cbd5e1;

    border-radius: 12px;

    padding: 12px 16px;

    transition: .25s ease;
}

.dropdown-item:hover {

    background:
        rgba(79, 124, 255, .12);

    color: #ffffff;
}

@media(min-width:992px) {

    .services-dropdown:hover .dropdown-menu {

        display: block;

        animation: fadeDropdown .25s ease;
    }

    .services-dropdown .dropdown-toggle::after {
        transition: .3s;
    }

    .services-dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

}

@keyframes fadeDropdown {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   AI SERVICES SECTION
========================= */

.ai-services-section {
    /* background: #070b14; */
    /* background:
        linear-gradient(180deg,
            #0b1220 0%,
            #101827 100%); */
    background:
        radial-gradient(circle at top right,
            rgba(79, 124, 255, .25),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(0, 180, 255, .15),
            transparent 40%),

        linear-gradient(135deg,
            #0f172a 0%,
            #16213e 35%,
            #1d3557 70%,
            #223354 100%);
    padding: 100px 0;
    position: relative;
}

.section-heading {
    max-width: 800px;
    margin: auto;
}

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(79, 124, 255, .12);
    border: 1px solid rgba(79, 124, 255, .25);
    color: #8fb0ff;
    font-size: .85rem;
    letter-spacing: .5px;
}

.section-heading h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-top: 20px;
}

.section-heading p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* 5-column layout */

@media(min-width:992px) {
    .col-lg-2-4 {
        width: 20%;
        flex: 0 0 auto;
    }
}

/* Service Cards */

.service-box {
    background: linear-gradient(180deg,
            rgba(17, 24, 39, .95),
            rgba(12, 18, 30, .95));

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 24px;
    padding: 28px 22px;
    height: 100%;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(79, 124, 255, .08);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 124, 255, .4);
    box-shadow:
        0 15px 40px rgba(79, 124, 255, .12);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;

    background: rgba(79, 124, 255, .12);
    border: 1px solid rgba(79, 124, 255, .15);

    margin-bottom: 20px;
}

.service-box h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-box p {
    color: #94a3b8;
    font-size: .95rem;
    line-height: 1.7;
    margin: 0;
}

/* Mobile */

@media(max-width:991px) {

    .ai-services-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .service-box {
        padding: 24px;
    }
}

/* =========================
   TARGET AUDIENCE SECTION
========================= */

.target-audience-section {
    /* background:
        radial-gradient(circle at top right,
            rgba(79, 124, 255, .08),
            transparent 40%),
        #070b14; */

    /* background:
        linear-gradient(180deg,
            #0b1220 0%,
            #101827 100%); */

    /* background:
        linear-gradient(rgba(10, 20, 45, .15),
            rgba(10, 20, 45, .25)); */

    background:
        radial-gradient(circle at top right,
            rgba(79, 124, 255, .25),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(0, 180, 255, .15),
            transparent 40%),

        linear-gradient(135deg,
            #0f172a 0%,
            #16213e 35%,
            #1d3557 70%,
            #223354 100%);

    padding: 120px 0;
    position: relative;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.audience-card {
    background:
        linear-gradient(180deg,
            rgba(17, 24, 39, .95),
            rgba(10, 15, 25, .95));

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 28px;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    transition: .4s ease;
    min-height: 240px;
}

.audience-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(79, 124, 255, .08);
    top: -50px;
    right: -50px;
}

.audience-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 124, 255, .35);
    box-shadow:
        0 15px 40px rgba(79, 124, 255, .15);
}

.audience-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(79, 124, 255, .12);
    border: 1px solid rgba(79, 124, 255, .2);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    margin-bottom: 24px;
}

.audience-card h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.audience-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: .95rem;
    margin: 0;
}

.featured {
    background:
        linear-gradient(135deg,
            rgba(79, 124, 255, .15),
            rgba(17, 24, 39, .95));
    border-color: rgba(79, 124, 255, .3);
}

/* Tablet */

@media(max-width:1200px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */

@media(max-width:768px) {

    .target-audience-section {
        padding: 80px 0;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .audience-card {
        min-height: auto;
    }
}

/* =========================
   RESULTS SECTION
========================= */

.results-section {
    padding: 120px 0;
    position: relative;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .02),
            rgba(255, 255, 255, .03));

    backdrop-filter: blur(10px);

    border-top: 1px solid rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.results-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.results-title span {
    color: #4f7cff;
}

.results-description {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-top: 20px;
    max-width: 500px;
}

.results-stats {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.result-stat {
    min-width: 120px;
}

.result-stat h3 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.result-stat span {
    color: #94a3b8;
    font-size: .9rem;
}

/* =========================
   PROCESS GRID
========================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.process-card {
    position: relative;

    background:
        rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border-radius: 28px;

    padding: 35px;

    transition: .4s ease;

    overflow: hidden;
}

.process-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background:
        radial-gradient(circle,
            rgba(79, 124, 255, .15),
            transparent 70%);

    top: -70px;
    right: -70px;
}

.process-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(79, 124, 255, .35);

    background:
        rgba(255, 255, 255, .05);

    box-shadow:
        0 20px 40px rgba(79, 124, 255, .10);
}

.process-number {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
        rgba(79, 124, 255, .15);

    border:
        1px solid rgba(79, 124, 255, .2);

    color: #7fa0ff;

    font-weight: 700;

    margin-bottom: 20px;
}

.process-card h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card p {
    color: #94a3b8;
    line-height: 1.8;
    margin: 0;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px) {

    .results-section {
        padding: 80px 0;
    }

    .results-title {
        font-size: 2.2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .results-stats {
        justify-content: center;
        text-align: center;
    }

    .results-description {
        max-width: 100%;
    }
}

/* =========================
   AI INTEGRATION SECTION
========================= */

/* =========================
   AI INTEGRATION SECTION
========================= */

.integration-section {

    /* background:
        linear-gradient(180deg,
            #0b1220 0%,
            #101827 100%); */

    background:
        radial-gradient(circle at top right,
            rgba(79, 124, 255, .95),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(0, 180, 255, .05),
            transparent 40%),

        linear-gradient(135deg,
            #0f172a 20%,
            #16213e 35%,
            #1d3557 70%,
            #223354 80%);

    padding: 120px 0;

    position: relative;

    overflow: hidden;
}

.integration-section::before {

    content: "";

    position: absolute;

    top: -200px;
    right: -200px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(79, 124, 255, .15),
            transparent 70%);
}

.integration-section::after {

    content: "";

    position: absolute;

    bottom: -250px;
    left: -250px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(79, 124, 255, .10),
            transparent 70%);
}

.integration-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
}

.integration-subtitle {
    color: #94a3b8;
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
}

.integration-badge {

    display: inline-block;

    padding: 10px 20px;

    background: #dce8ff;

    color: #4f7cff;

    border-radius: 50px;

    font-size: .85rem;

    font-weight: 700;
}

/* FLOW */

.process-flow {

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 70px;

    flex-wrap: wrap;

    gap: 15px;
}

.flow-step {

    width: 200px;

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    padding: 30px 20px;

    border-radius: 24px;

    text-align: center;

    transition: .35s ease;
}

.flow-step:hover {

    transform: translateY(-8px);

    border-color:
        rgba(79, 124, 255, .30);

    box-shadow:
        0 15px 35px rgba(79, 124, 255, .12);
}

.flow-icon {

    width: 70px;
    height: 70px;

    margin: auto auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    border-radius: 18px;

    background:
        rgba(79, 124, 255, .12);

    border:
        1px solid rgba(79, 124, 255, .15);
}

.flow-step h4 {
    color: #ffffff;
}

.flow-step p {
    color: #94a3b8;
}

.flow-arrow {

    color: #4f7cff;

    font-size: 2.5rem;

    font-weight: 700;

    text-shadow:
        0 0 15px rgba(79, 124, 255, .5);
}

/* RESULTS */

.result-card {

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border-radius: 24px;

    text-align: center;

    padding: 35px;

    transition: .3s;
}

.result-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(79, 124, 255, .30);
}

.result-card h3 {

    color: #4f7cff;

    font-size: 3rem;

    font-weight: 800;
}

.result-card span {

    color: #94a3b8;
}

/* MOBILE */

@media(max-width:991px) {

    .integration-title {
        font-size: 2.2rem;
    }

    .process-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-step {
        width: 100%;
    }
}

/* =========================
   FAQ SECTION
========================= */

/* =========================
   FAQ SECTION
========================= */

.faq-section {
    /* background: #070b14; */
    /* background:
        linear-gradient(180deg,
            #0b1220 0%,
            #101827 100%); */

    background:
        radial-gradient(circle at top right,
            rgba(79, 124, 255, .25),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(0, 180, 255, .15),
            transparent 40%),

        linear-gradient(135deg,
            #0f172a 0%,
            #16213e 35%,
            #1d3557 70%,
            #223354 100%);
    padding: 120px 0;
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(circle,
            rgba(79, 124, 255, .08),
            transparent 70%);
    pointer-events: none;
}

.faq-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;

    background: rgba(79, 124, 255, .12);
    border: 1px solid rgba(79, 124, 255, .20);

    color: #8fb0ff;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
}

.faq-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    max-width: 850px;
    margin: auto;
}

.faq-subtitle {
    color: #94a3b8;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

/* Accordion Cards */

.accordion-item {
    margin-bottom: 18px;
    border: none !important;

    background:
        rgba(255, 255, 255, .03);

    border-radius: 20px !important;

    overflow: hidden;

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .08) !important;

    transition: .3s;
}

.accordion-item:hover {
    border-color:
        rgba(79, 124, 255, .25) !important;
}

/* Question */

.accordion-button {
    background: transparent !important;
    color: #fff !important;

    font-size: 1.05rem;
    font-weight: 600;

    padding: 24px 28px;

    box-shadow: none !important;
}

.accordion-button.collapsed {
    background: transparent !important;
}

.accordion-button:not(.collapsed) {
    color: #7fa0ff !important;
}

/* Answer */

.accordion-body {
    color: #94a3b8;
    line-height: 1.9;
    font-size: .98rem;
    padding: 0 28px 24px;
}

/* Arrow */

.accordion-button::after {
    filter: brightness(0) invert(1);
    opacity: .8;
}

/* Remove Bootstrap Background */

.accordion-collapse {
    background: transparent;
}

/* Mobile */

@media(max-width:768px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .accordion-button {
        padding: 20px;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 0 20px 20px;
    }
}

/* Mobile */

@media(max-width:768px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 20px;
    }

    .accordion-body {
        padding: 0 20px 20px;
    }
}

/* =========================
   FOOTER
========================= */

.footer-section {
    /* background: #050912; */
    background:
        linear-gradient(180deg,
            #0b1220 0%,
            #101827 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;

    background:
        radial-gradient(circle,
            rgba(79, 124, 255, .10),
            transparent 70%);
}

/* CTA BOX */

.footer-cta {

    background:
        linear-gradient(135deg,
            rgba(79, 124, 255, .12),
            rgba(79, 124, 255, .04));

    border:
        1px solid rgba(79, 124, 255, .15);

    border-radius: 30px;

    padding: 50px;

    margin-bottom: 90px;

    backdrop-filter: blur(20px);
}

.footer-cta h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-cta p {
    color: #94a3b8;
    max-width: 700px;
    margin: 0;
}

.footer-btn {
    background: #4f7cff;
    color: #fff;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 600;
    border: none;
}

.footer-btn:hover {
    background: #416df0;
    color: #fff;
}

/* CONTENT */

.footer-content {
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
}

.logo-box {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #4f7cff,
            #7095ff);

    color: #fff;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.9;
    margin-top: 25px;
    max-width: 380px;
}

.footer-content h5 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content ul li {
    margin-bottom: 14px;
    color: #94a3b8;
}

.footer-content ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: .3s;
}

.footer-content ul li a:hover {
    color: #4f7cff;
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, .04);

    border:
        1px solid rgba(255, 255, 255, .08);

    color: #fff;
    text-decoration: none;
}

.footer-social a:hover {
    background: #4f7cff;
}

/* BOTTOM */

.footer-bottom {

    border-top:
        1px solid rgba(255, 255, 255, .06);

    padding: 30px 0;

    color: #94a3b8;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #4f7cff;
}

/* MOBILE */

@media(max-width:991px) {

    .footer-section {
        padding-top: 70px;
    }

    .footer-cta {
        padding: 35px;
        text-align: center;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }

    .footer-btn {
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        margin-top: 15px;
        text-align: center !important;
    }
}

/* ==========================
   PROCESS TIMELINE
========================== */

.process-wrapper {
    position: relative;
    margin-top: 80px;
}

.workflow-line {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 1;
}

.process-flow {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.flow-step {

    position: relative;

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border-radius: 24px;

    padding: 30px 24px;

    text-align: center;

    transition: .4s ease;
}

.flow-step:hover {

    transform: translateY(-8px);

    border-color:
        rgba(79, 124, 255, .35);

    box-shadow:
        0 20px 40px rgba(79, 124, 255, .12);
}

/* Animated Node */

.glow-dot {

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #4f7cff;

    position: absolute;

    top: -10px;
    left: 50%;

    transform: translateX(-50%);

    box-shadow:
        0 0 0 6px rgba(79, 124, 255, .15),
        0 0 25px rgba(79, 124, 255, .8);

    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

    0% {
        box-shadow:
            0 0 0 0 rgba(79, 124, 255, .4),
            0 0 20px rgba(79, 124, 255, .8);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(79, 124, 255, 0),
            0 0 30px rgba(79, 124, 255, .9);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(79, 124, 255, 0),
            0 0 20px rgba(79, 124, 255, .8);
    }
}

.flow-icon {

    width: 72px;
    height: 72px;

    margin: 10px auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 34px;

    background:
        rgba(79, 124, 255, .12);

    border:
        1px solid rgba(79, 124, 255, .20);
}

.flow-step h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.flow-step p {
    color: #94a3b8;
    font-size: .95rem;
    line-height: 1.7;
}

/* Mobile */

@media(max-width:991px) {

    .workflow-line {
        display: none;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }

    .flow-step {
        margin-bottom: 20px;
    }
}

.workflow-line path {
    animation: flowLine 15s linear infinite;
}

@keyframes flowLine {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {

    /* background: #070b14; */
    /* background:
        linear-gradient(180deg,
            #0b1220 0%,
            #101827 100%); */

    background:
        radial-gradient(circle at top right,
            rgba(79, 124, 255, .25),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(0, 180, 255, .15),
            transparent 40%),

        linear-gradient(135deg,
            #0f172a 0%,
            #16213e 35%,
            #1d3557 70%,
            #223354 100%);

    padding: 120px 0;

    position: relative;
}

.contact-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -200px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(79, 124, 255, .10),
            transparent 70%);
}

.contact-title {

    color: #fff;

    font-size: 3rem;

    font-weight: 800;

    line-height: 1.2;
}

.contact-title span {
    color: #4f7cff;
}

.contact-description {

    color: #94a3b8;

    line-height: 1.9;

    margin-top: 20px;
}

/* INFO */

.contact-info {
    margin-top: 40px;
}

.info-item {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 24px;
}

.info-icon {

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
        rgba(79, 124, 255, .12);

    border:
        1px solid rgba(79, 124, 255, .15);

    font-size: 22px;
}

.info-item h6 {
    color: #fff;
    margin-bottom: 6px;
}

.info-item p {
    color: #94a3b8;
    margin: 0;
}

/* FORM CARD */

.contact-card {

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border-radius: 30px;

    padding: 40px;
}

.form-label {

    color: #fff;

    margin-bottom: 10px;

    font-weight: 500;
}

.custom-input {

    background:
        rgba(255, 255, 255, .04) !important;

    border:
        1px solid rgba(255, 255, 255, .08) !important;

    color: #fff !important;

    border-radius: 14px;

    padding: 14px 16px;
}

.custom-input:focus {

    box-shadow: none !important;

    border-color:
        rgba(79, 124, 255, .45) !important;

    background:
        rgba(255, 255, 255, .05) !important;
}

.custom-input::placeholder {
    color: #94a3b8;
}

.form-select option {
    color: #000;
}

/* BUTTON */

.submit-btn {

    width: 100%;

    background: #4f7cff;

    color: #fff;

    border: none;

    border-radius: 14px;

    padding: 16px;

    font-weight: 700;

    font-size: 1rem;
}

.submit-btn:hover {

    background: #3f6df4;

    color: #fff;
}

/* MOBILE */

@media(max-width:991px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-card {
        padding: 25px;
    }
}

/* =========================
   CHATBOT SECTION
========================= */

.chatbot-section {

    /* background: #070b14; */
    /* background:
        linear-gradient(180deg,
            #0b1220 0%,
            #101827 100%); */

    background:
        radial-gradient(circle at top right,
            rgba(79, 124, 255, .25),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(0, 180, 255, .15),
            transparent 40%),

        linear-gradient(135deg,
            #0f172a 0%,
            #16213e 35%,
            #1d3557 70%,
            #223354 100%);

    padding: 120px 0;

    position: relative;
}

.chatbot-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -200px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(79, 124, 255, .08),
            transparent 70%);
}

.chatbot-title {

    color: #fff;

    font-size: 3rem;

    font-weight: 800;

    line-height: 1.2;
}

.chatbot-title span {
    color: #4f7cff;
}

.chatbot-description {

    color: #94a3b8;

    line-height: 1.9;

    margin-top: 20px;
}

.chatbot-features {

    margin-top: 35px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.feature-item {

    color: #fff;

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(255, 255, 255, .06);

    border-radius: 14px;

    padding: 14px 16px;
}

.chatbot-btn {

    background: #4f7cff;

    color: #fff;

    border: none;

    padding: 15px 28px;

    border-radius: 14px;

    font-weight: 600;
}

.chatbot-btn:hover {

    background: #3f6df4;

    color: #fff;
}

/* CHAT UI */

.chatbot-demo {

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 28px;

    overflow: hidden;

    backdrop-filter: blur(20px);
}

.chat-header {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 20px;

    border-bottom:
        1px solid rgba(255, 255, 255, .06);
}

.chat-avatar {

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #4f7cff;

    color: #fff;

    font-weight: 700;
}

.chat-header h6 {
    color: #fff;
    margin: 0;
}

.chat-header small {
    color: #94a3b8;
}

.chat-body {

    padding: 25px;

    min-height: 350px;
}

.message {

    max-width: 80%;

    padding: 14px 18px;

    border-radius: 18px;

    margin-bottom: 15px;

    line-height: 1.7;
}

.message.ai {

    background:
        rgba(79, 124, 255, .15);

    color: #fff;
}

.message.user {

    background:
        rgba(255, 255, 255, .06);

    color: #fff;

    margin-left: auto;
}

.chat-input {

    display: flex;

    gap: 10px;

    padding: 20px;

    border-top:
        1px solid rgba(255, 255, 255, .06);
}

.chat-input input {

    flex: 1;

    background:
        rgba(255, 255, 255, .04);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 12px;

    padding: 12px 15px;

    color: #fff;
}

.chat-input button {

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 12px;

    background: #4f7cff;

    color: #fff;
}

/* MOBILE */

@media(max-width:991px) {

    .chatbot-section {
        padding: 80px 0;
    }

    .chatbot-title {
        font-size: 2.2rem;
    }

    .chatbot-features {
        grid-template-columns: 1fr;
    }

    .chat-body {
        min-height: auto;
    }
}

.hero-section,
.chatbot-section,
.integration-section,
.contact-section,
.footer-section {
    overflow: hidden;
}

.consultation-hero {

    padding: 180px 0 120px;

    background:
        linear-gradient(135deg,
            #0f172a,
            #16213e,
            #223354);

    position: relative;
}

.hero-benefits {

    margin-top: 40px;
}

.benefit-item {

    margin-bottom: 15px;

    color: #dbe4ff;

    font-size: 1.05rem;
}

.consultation-form-card {

    background:
        rgba(255, 255, 255, .06);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 28px;

    padding: 40px;

    backdrop-filter: blur(20px);
}

.consultation-form-card h3 {

    margin-bottom: 30px;

    text-align: center;
}

.consultation-process {

    padding: 120px 0;

    background: #172033;
}

.process-card {

    text-align: center;

    padding: 35px;

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    transition: .3s;
}

.process-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(79, 124, 255, .3);
}

.process-number {

    width: 70px;
    height: 70px;

    border-radius: 50%;

    margin: 0 auto 20px;

    background: #4f7cff;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: 700;
}

.consultation-metrics {

    padding: 120px 0;

    background: #0f172a;
}

.consultation-faq {

    padding: 120px 0;

    background: #172033;
}

.faq-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}

.faq-card {

    padding: 30px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .08);
}

.faq-card h5 {

    margin-bottom: 15px;
}

@media(max-width:991px) {

    .consultation-hero {

        text-align: center;
    }

    .consultation-form-card {

        margin-top: 50px;
    }
}

@media(max-width:576px) {

    .faq-grid {

        grid-template-columns: 1fr;
    }

    .consultation-form-card {

        padding: 25px;
    }
}