/* ===================================================
   ROOT
=================================================== */

:root {

    --primary: #25a8ff;
    --primary-dark: #0090ff;

    --text-light: #ffffff;
    --text-muted: rgba(255,255,255,.75);

    --dark: #040b18;
    --dark-2: #071325;

    --radius: 999px;

    --transition: .3s ease;
}


/* ===================================================
   GLOBAL
=================================================== */

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        Inter,
        system-ui,
        sans-serif;

    background: #040b18;

    overflow-x: hidden;
}


a {
    text-decoration: none;
}


/* ===================================================
   NAVBAR
=================================================== */

.site-navbar {

    background: rgba(4,11,24,.88);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,.05);

    padding: 20px 0;

    transition: all .3s ease;
}


.navbar-brand {

    display: flex;
    align-items: center;

    color: var(--primary) !important;

    text-decoration: none;
}


.nav-link {

    color: rgba(255,255,255,.72) !important;

    font-weight: 500;

    margin-left: 18px;
}

.nav-link:hover,
.nav-link.active {

    color: #25a8ff !important;
}


.navbar-toggler {

    border: none;
}


.navbar-toggler:focus {

    box-shadow: none;
}


/* ===================================================
   HERO
=================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    background-attachment: fixed;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(2,8,20,.82),
            rgba(3,12,30,.70)
        );
}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: auto;

    padding-top: 60px;
}


.hero h1 {

    color: #fff;

    font-size: clamp(3rem, 7vw, 6rem);

    font-weight: 800;

    line-height: 1.05;

    margin-bottom: 25px;

    letter-spacing: -2px;
}


.hero-highlight {

    display: block;

    color: var(--primary);
}


.hero p {

    max-width: 720px;

    margin: auto;

    color: var(--text-muted);

    font-size: 1.25rem;

    line-height: 1.9;

    margin-bottom: 45px;
}


/* ===================================================
   BUTTON
=================================================== */

.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 42px;

    border-radius: var(--radius);

    background: #fff;

    color: #000;

    font-weight: 700;

    transition: all .3s ease;
}


.hero-btn:hover {

    transform: translateY(-3px);

    color: #000;

    box-shadow:
        0 15px 40px rgba(255,255,255,.15);
}


/* ===================================================
   MOBILE
=================================================== */

@media (max-width: 991px) {

    .navbar-collapse {

        margin-top: 20px;

        background: rgba(4,11,24,.95);

        border-radius: 14px;

        padding: 15px;
    }

    .nav-link {

        margin-left: 0;

        padding: 12px 0;
    }

    .hero {

        background-attachment: scroll;
    }

    .hero h1 {

        font-size: 3rem;
    }

    .hero p {

        font-size: 1rem;
    }
}

.site-logo {

    height: 42px;
    width: auto;
    object-fit: contain;

    margin-right: 12px;
}

.site-name {

    color: var(--primary);

    font-size: 1.6rem;

    font-weight: 800;

    letter-spacing: -.5px;
}

.nav-cta-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 24px;

    border-radius: 999px;

    background: var(--primary);

    color: #fff;

    font-weight: 600;

    transition: all .3s ease;
}

.nav-cta-btn:hover {

    background: var(--primary-dark);

    color: #fff;

    transform: translateY(-2px);
}

/* ==========================================
   SERVICES SECTION
========================================== */

.services {

    position: relative;

    background:
        linear-gradient(
            180deg,
            #040b18 0%,
            #061223 100%
        );

    padding: 120px 0;

    overflow: hidden;
}


/* decorative glow */

.services::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -300px;
    left: -250px;

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.15),
            transparent 70%
        );

    pointer-events: none;
}


.services::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.10),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================
   SECTION HEADER
========================================== */

.section-header {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 70px;
}

.section-title {
    text-align: center;

    max-width: 850px;

    margin: 0 auto 70px;
}

.section-tag {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(37,168,255,.12);

    border:
        1px solid rgba(37,168,255,.25);

    color: var(--primary);

    font-size: .8rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 24px;
}


.section-header h2 {

    color: #fff;

    font-size: clamp(2.3rem, 5vw, 4rem);

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 24px;
}

.section-title h2 {

    color: #fff;

    font-size: clamp(2.3rem, 2vw, 4rem);

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 12px;
}

.related-posts .blog-card-content h4 {

    color: #fff;

    font-size: 1.25rem;

    font-weight: 700;

    line-height: 1.4;

    margin-bottom: 18px;
}


.section-header p {

    color: rgba(255,255,255,.72);

    font-size: 1.1rem;

    line-height: 1.9;

    max-width: 700px;

    margin: auto;
}


/* ==========================================
   SERVICE CARD
========================================== */

.service-card {

    position: relative;

    height: 100%;

    padding: 40px;

    border-radius: 28px;

    background:
        rgba(255,255,255,.03);

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255,255,255,.08);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

    overflow: hidden;
}


/* glow line */

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    opacity: 0;
    transition: .35s ease;
}


.service-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(37,168,255,.35);

    box-shadow:
        0 30px 60px rgba(0,0,0,.35);
}


.service-card:hover::before {

    opacity: 1;
}


.service-icon {

    width: 72px;
    height: 72px;

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(37,168,255,.18),
            rgba(37,168,255,.05)
        );

    border:
        1px solid rgba(37,168,255,.25);
}


.service-icon i {

    font-size: 2rem;

    color: var(--primary);
}


.service-card h4 {

    color: #fff;

    font-size: 1.4rem;

    font-weight: 700;

    margin-bottom: 18px;
}


.service-card p {

    color: rgba(255,255,255,.70);

    line-height: 1.8;

    margin: 0;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .services {

        padding: 90px 0;
    }

    .service-card {

        padding: 30px;
    }

    .section-header h2 {

        font-size: 2.2rem;
    }
}

/* ==========================================
   PROJECTS SECTION
========================================== */

.projects {

    position: relative;

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #08182d 0%,
            #061223 100%
        );

    overflow: hidden;
}


.projects::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -250px;
    right: -250px;

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.08),
            transparent 70%
        );

    pointer-events: none;
}

/* ==========================================
   PROJECT CARD
========================================== */

.project-card {

    height: 100%;

    overflow: hidden;

    border-radius: 28px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(18px);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.project-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(37,168,255,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
}

.project-image {

    position: relative;

    overflow: hidden;

    height: 300px;
}


.project-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.project-card:hover .project-image img {

    transform:
        scale(1.08);
}

.project-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.4),
            transparent
        );
}

.project-content {

    padding: 34px;
}

.project-category {

    display: inline-block;

    padding: 8px 14px;

    border-radius: 999px;

    background:
        rgba(37,168,255,.12);

    border:
        1px solid rgba(37,168,255,.20);

    color: var(--primary);

    font-size: .75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 18px;
}

.project-content h3 {

    color: #fff;

    font-size: 1.5rem;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 18px;
}

.project-content p {

    color: rgba(255,255,255,.72);

    line-height: 1.9;

    margin-bottom: 24px;
}

.project-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 24px;
}


.project-tags span {

    padding: 8px 14px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.05);

    border:
        1px solid rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.75);

    font-size: .85rem;
}

.project-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-weight: 600;

    transition: .3s ease;
}


.project-link:hover {

    color: #fff;

    transform:
        translateX(5px);
}

.projects-intro {

    max-width: 900px;

    margin: -10px auto 60px;

    text-align: center;
}


.projects-intro p {

    color: rgba(255,255,255,.70);

    font-size: 1.1rem;

    line-height: 1.9;
}

/* ==========================================
   TESTIMONIALS SECTION
========================================== */

.testimonials-section {

    position: relative;

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #08182d 100%
        );

    overflow: hidden;
}


.testimonials-section::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: -250px;
    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.08),
            transparent 70%
        );

    pointer-events: none;
}


.testimonials-section::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -300px;
    bottom: -300px;

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.06),
            transparent 70%
        );

    pointer-events: none;
}

/* ==========================================
   TESTIMONIAL CARD
========================================== */

.testimonial-card {

    position: relative;

    padding: 38px;

    border-radius: 28px;

    background:
        rgba(255,255,255,.03);

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255,255,255,.08);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

    overflow: hidden;
}


.testimonial-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    opacity: 0;

    transition: .35s ease;
}


.testimonial-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(37,168,255,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
}


.testimonial-card:hover::before {

    opacity: 1;
}

.testimonial-card::after {

    content: "❝";

    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 4rem;

    color:
        rgba(37,168,255,.12);

    line-height: 1;
}

.testimonial-stars {

    color: #ffd86b;

    font-size: 1.1rem;

    letter-spacing: 3px;

    margin-bottom: 24px;
}

.testimonial-text {

    color:
        rgba(255,255,255,.78);

    font-size: 1rem;

    line-height: 1.9;

    margin-bottom: 30px;

    position: relative;

    z-index: 2;
}

/* ==========================================
   AUTHOR
========================================== */

.testimonial-author {

    display: flex;

    align-items: center;

    gap: 16px;
}

.testimonial-author img {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    object-fit: cover;

    border:
        2px solid rgba(37,168,255,.25);
}

.testimonial-avatar-placeholder {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(37,168,255,.25),
            rgba(37,168,255,.08)
        );

    color: #fff;

    font-size: 1.1rem;

    font-weight: 700;

    border:
        1px solid rgba(37,168,255,.25);
}

.testimonial-author h6 {

    color: #fff;

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 4px;
}


.testimonial-author span {

    color:
        rgba(255,255,255,.60);

    font-size: .9rem;

    line-height: 1.5;
}

.trust-bar {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 60px;

    margin: 60px 0 80px;
}


.trust-bar h3 {

    color: var(--primary);

    font-size: 2.4rem;

    font-weight: 800;

    margin-bottom: 8px;

    text-align: center;
}


.trust-bar span {

    color:
        rgba(255,255,255,.65);

    text-align: center;

    display: block;
}

/* ==========================================
   WHY US SECTION
========================================== */

.why-us {

    position: relative;

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #08182d 0%,
            #040b18 100%
        );

    overflow: hidden;
}


.why-us::before {

    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    top: -450px;
    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.08),
            transparent 70%
        );

    pointer-events: none;
}

.why-card {

    position: relative;

    height: 100%;

    text-align: center;

    padding: 40px 30px;

    transition: all .35s ease;
}

.why-icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 28px;

    border-radius: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(37,168,255,.22),
            rgba(37,168,255,.05)
        );

    border:
        1px solid rgba(37,168,255,.25);

    transition: all .35s ease;
}


.why-icon i {

    font-size: 2.4rem;

    color: var(--primary);
}

.why-card:hover .why-icon {

    transform:
        translateY(-8px)
        rotate(-3deg);

    box-shadow:
        0 20px 40px rgba(37,168,255,.15);
}

.why-card h4 {

    color: #fff;

    font-size: 1.35rem;

    font-weight: 700;

    margin-bottom: 18px;
}

.why-card p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.9;

    margin: 0;
}

@media (min-width: 992px) {

    .why-card::after {

        content: "";

        position: absolute;

        top: 45px;

        right: -30px;

        width: 60px;
        height: 1px;

        background:
            linear-gradient(
                90deg,
                rgba(37,168,255,.25),
                transparent
            );
    }

    .col-lg-3:last-child .why-card::after {

        display: none;
    }
}

.why-number {

    display: block;

    margin-bottom: 18px;

    font-size: .9rem;

    font-weight: 700;

    letter-spacing: 2px;

    color:
        rgba(37,168,255,.55);
}

/* ==========================================
   PROCESS SECTION
========================================== */

.process {

    position: relative;

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #040b18 0%,
            #061223 100%
        );

    overflow: hidden;
}

@media (min-width: 992px) {

    .process .row {

        position: relative;
    }

    .process .row::before {

        content: "";

        position: absolute;

        left: 5%;
        right: 5%;

        top: 50px;

        height: 2px;

        background:
            linear-gradient(
                90deg,
                rgba(37,168,255,.15),
                rgba(37,168,255,.6),
                rgba(37,168,255,.15)
            );

        z-index: 0;
    }

}

.process-card {

    position: relative;

    text-align: center;

    padding: 0 20px;

    z-index: 2;
}

.process-number {

    width: 90px;
    height: 90px;

    margin: 0 auto 30px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 1.2rem;

    font-weight: 800;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #4dbdff
        );

    box-shadow:
        0 0 0 8px rgba(37,168,255,.08),
        0 15px 40px rgba(37,168,255,.20);

    transition: all .35s ease;
}

.process-card:hover .process-number {

    transform:
        translateY(-8px)
        scale(1.05);

    box-shadow:
        0 0 0 10px rgba(37,168,255,.12),
        0 20px 50px rgba(37,168,255,.30);
}

.process-card h5 {

    color: #fff;

    font-size: 1.25rem;

    font-weight: 700;

    margin-bottom: 16px;
}

.process-card p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.8;

    margin: 0;
}

@media (min-width: 992px) {

    .process-number::after {

        content: "";

        position: absolute;

        top: 44px;
        left: calc(100% + 12px);

        width: 18px;
        height: 18px;

        border-radius: 50%;

        background:
            rgba(37,168,255,.45);
    }

    .col-lg:last-child .process-number::after {

        display: none;
    }

}

@media (max-width: 991px) {

    .process-card {

        padding-left: 30px;

        text-align: left;
    }

    .process-number {

        margin-left: 0;
    }

}

.process-icon {

    margin-bottom: 18px;

    font-size: 1.8rem;

    color: var(--primary);
}

/* ==========================================
   CTA SECTION
========================================== */

.cta-section {

    position: relative;

    padding: 160px 0;

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #040b18 100%
        );

    overflow: hidden;
}

.cta-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -300px;
    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.15),
            transparent 70%
        );

    pointer-events: none;
}


.cta-section::after {

    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    bottom: -600px;
    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.08),
            transparent 70%
        );

    pointer-events: none;
}

.cta-box {

    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: auto;

    text-align: center;

    padding: 90px 60px;

    border-radius: 36px;

    background:
        rgba(255,255,255,.04);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}

.cta-box h2 {

    color: #fff;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 24px;

    letter-spacing: -1px;
}

.cta-box p {

    max-width: 720px;

    margin: 0 auto 45px;

    color:
        rgba(255,255,255,.72);

    font-size: 1.15rem;

    line-height: 1.9;
}

.cta-box .btn-light {

    background: var(--primary);

    border: none;

    color: #fff;

    padding: 18px 34px;

    border-radius: 999px;

    font-weight: 700;

    transition: all .3s ease;
}

.cta-box .btn-light:hover {

    background: var(--primary-dark);

    color: #fff;

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 40px rgba(37,168,255,.35);
}

.cta-box .btn-outline-light {

    border:
        1px solid rgba(255,255,255,.20);

    color: #fff;

    background: transparent;

    padding: 18px 34px;

    border-radius: 999px;

    font-weight: 600;

    transition: all .3s ease;
}

.cta-box .btn-outline-light:hover {

    background:
        rgba(255,255,255,.08);

    color: #fff;

    border-color:
        rgba(255,255,255,.30);

    transform:
        translateY(-4px);
}

.cta-box::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 180px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );
}

@media (max-width: 768px) {

    .cta-section {

        padding: 100px 0;
    }

    .cta-box {

        padding: 60px 30px;
    }

    .cta-box h2 {

        font-size: 2.2rem;
    }

    .cta-box .btn {

        width: 100%;
    }
}

/* ==========================================
   FOOTER
========================================== */

.footer {

    position: relative;

    padding: 100px 0 40px;

    background:
        linear-gradient(
            180deg,
            #040b18 0%,
            #020814 100%
        );

    overflow: hidden;
}

.footer::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -450px;
    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.08),
            transparent 70%
        );

    pointer-events: none;
}

.footer-brand {

    display: flex;

    align-items: center;

    gap: 14px;
}

.footer-logo {

    width: 52px;

    height: 52px;

    object-fit: contain;
}

.footer-brand-name {

    color: #fff;

    font-size: 1.5rem;

    font-weight: 800;

    letter-spacing: -.5px;
}

.footer p {

    color:
        rgba(255,255,255,.68);

    line-height: 1.9;

    margin-bottom: 0;
}

.footer h5 {

    color: #fff;

    font-size: 1.1rem;

    font-weight: 700;

    margin-bottom: 22px;

    position: relative;
}

.footer h5::after {

    content: "";

    display: block;

    width: 40px;

    height: 2px;

    margin-top: 10px;

    background: var(--primary);
}

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-links li {

    margin-bottom: 12px;

    color:
        rgba(255,255,255,.68);

    line-height: 1.8;
}

.footer-links a {

    color:
        rgba(255,255,255,.68);

    transition: .3s ease;
}

.footer-links a:hover {

    color: var(--primary);

    padding-left: 4px;
}

.social-links {

    display: flex;

    gap: 12px;
}

.social-links a {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

    border:
        1px solid rgba(255,255,255,.08);

    color: #fff;

    transition: all .3s ease;
}

.social-links a:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: #fff;

    transform:
        translateY(-4px);
}

.footer hr {

    border: none;

    height: 1px;

    margin: 60px 0 30px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.15),
            transparent
        );
}

.footer-bottom {

    text-align: center;
}

.footer-bottom p {

    color:
        rgba(255,255,255,.50);

    font-size: .95rem;

    margin: 0;
}

@media (max-width: 768px) {

    .footer {

        padding-top: 80px;
    }

    .footer-brand {

        justify-content: center;

        margin-bottom: 20px;
    }

    .footer h5 {

        margin-top: 20px;
    }

    .social-links {

        justify-content: center;
    }

}

/* ==================================================
   PAGE BANNER
================================================== */

.page-banner {

    position: relative;

    padding: 180px 0 120px;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            #040b18 0%,
            #061223 100%
        );

    overflow: hidden;
}

.page-banner::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: -350px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.15),
            transparent 70%
        );

    pointer-events: none;
}

.page-banner h1 {

    color: #fff;

    font-size: clamp(3rem, 6vw, 5rem);

    font-weight: 800;

    margin: 25px 0;

    line-height: 1.1;
}

.page-banner p {

    max-width: 750px;

    margin: auto;

    color: rgba(255,255,255,.75);

    font-size: 1.15rem;

    line-height: 1.9;
}


/* ==================================================
   CONSULTATION SECTION
================================================== */

.consultation-section {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #08182d 100%
        );
}


/* ==================================================
   LEFT SIDE BENEFITS
================================================== */

.consultation-section h2 {

    color: #fff;

    font-size: clamp(2rem,4vw,3rem);

    font-weight: 800;

    line-height: 1.2;

    margin: 20px 0 40px;
}

.consultation-benefit {

    display: flex;

    gap: 20px;

    margin-bottom: 35px;
}

.consultation-benefit i {

    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    font-size: 1.6rem;

    color: var(--primary);

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);
}

.consultation-benefit h5 {

    color: #fff;

    font-weight: 700;

    margin-bottom: 8px;
}

.consultation-benefit p {

    color: rgba(255,255,255,.70);

    line-height: 1.8;

    margin: 0;
}


/* ==================================================
   CONSULTATION FORM
================================================== */

.consultation-form {

    padding: 45px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.04);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.30);
}

.consultation-form .alert-success {

    background:
        rgba(25,135,84,.15);

    color: #8ff0b5;

    border:
        1px solid rgba(25,135,84,.25);
}

.consultation-form .form-control,
.consultation-form .form-select {

    background:
        rgba(255,255,255,.05);

    border:
        1px solid rgba(255,255,255,.08);

    color: #fff;

    padding: 15px 18px;

    border-radius: 16px;
}

.consultation-form .form-control::placeholder {

    color:
        rgba(255,255,255,.45);
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {

    background:
        rgba(255,255,255,.06);

    border-color:
        rgba(37,168,255,.45);

    box-shadow:
        0 0 0 .25rem rgba(37,168,255,.10);

    color: #fff;
}

.consultation-form textarea {

    resize: vertical;
}

.consultation-form .btn-primary {

    background: var(--primary);

    border: none;

    border-radius: 999px;

    padding: 16px 32px;

    font-weight: 700;
}

.consultation-form .btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);
}

/* ==================================================
   HOW IT WORKS
================================================== */

.project-section {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #08182d 0%,
            #040b18 100%
        ) !important;
}


/* ==================================================
   FEATURE CARD
================================================== */

.feature-card {

    height: 100%;

    text-align: center;

    padding: 50px 35px;

    border-radius: 28px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(15px);

    transition:
        all .35s ease;
}

.feature-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(37,168,255,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
}

.feature-card i {

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 22px;

    font-size: 2rem;

    color: var(--primary);

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);
}

.feature-card h5 {

    color: #fff;

    font-size: 1.35rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.feature-card p {

    color:
        rgba(255,255,255,.70);

    line-height: 1.8;

    margin: 0;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {

    .page-banner {

        padding: 150px 0 90px;
    }

    .consultation-section,
    .project-section {

        padding: 100px 0;
    }

    .consultation-form {

        padding: 30px;
    }

    .feature-card {

        padding: 35px 25px;
    }
}

/* ==================================================
   CONTACT PAGE
================================================== */

.contact-section {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #08182d 100%
        );
}


/* ==================================================
   LEFT COLUMN
================================================== */

.contact-section h2 {

    color: #fff;

    font-size: clamp(2rem,4vw,3rem);

    font-weight: 800;

    margin: 20px 0 25px;

    line-height: 1.2;
}

.contact-section p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.9;
}


/* ==================================================
   CONTACT INFO
================================================== */

.contact-info {

    margin-top: 40px;
}

.contact-item {

    display: flex;

    gap: 20px;

    margin-bottom: 30px;
}

.contact-item i {

    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    font-size: 1.5rem;

    color: var(--primary);

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);
}

.contact-item strong {

    display: block;

    color: #fff;

    margin-bottom: 6px;

    font-size: 1rem;
}

.contact-item p {

    margin: 0;

    color:
        rgba(255,255,255,.72);
}


/* ==================================================
   CONTACT FORM
================================================== */

.contact-form {

    padding: 45px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.04);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.30);
}

.contact-form .form-control,
.contact-form .form-select {

    background:
        rgba(255,255,255,.05);

    border:
        1px solid rgba(255,255,255,.08);

    color: #fff;

    border-radius: 16px;

    padding: 15px 18px;

    min-height: 56px;
}

.contact-form textarea {

    resize: vertical;

    min-height: 180px;
}

.contact-form .form-control::placeholder {

    color:
        rgba(255,255,255,.45);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {

    background:
        rgba(255,255,255,.06);

    border-color:
        rgba(37,168,255,.45);

    box-shadow:
        0 0 0 .25rem rgba(37,168,255,.10);

    color: #fff;
}


/* ==================================================
   SELECT OPTIONS
================================================== */

.contact-form option {

    background: #08182d;

    color: #fff;
}


/* ==================================================
   BUTTON
================================================== */

.contact-form .btn-primary-custom {

    border: none;

    background: var(--primary);

    color: #fff;

    padding: 16px 36px;

    border-radius: 999px;

    font-weight: 700;

    transition: all .3s ease;
}

.contact-form .btn-primary-custom:hover {

    background: var(--primary-dark);

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px rgba(37,168,255,.25);
}

/* ==================================================
   ALERTS
================================================== */

.alert {

    border: none;

    border-radius: 18px;

    padding: 18px 22px;

    margin-bottom: 30px;

    font-weight: 500;
}

.alert-success {

    color: #9ef3c2;

    background:
        rgba(25,135,84,.15);

    border:
        1px solid rgba(25,135,84,.25);
}

.alert-danger {

    color: #ffb8b8;

    background:
        rgba(220,53,69,.15);

    border:
        1px solid rgba(220,53,69,.25);
}

@media (max-width: 991px) {

    .contact-section {

        padding: 100px 0;
    }

    .contact-form {

        padding: 30px;
    }

    .contact-item {

        gap: 15px;
    }

    .contact-item i {

        width: 60px;
        height: 60px;

        font-size: 1.3rem;
    }
}

/* ==================================================
   ABOUT STORY
================================================== */

.about-story {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #08182d 100%
        );
}

.about-story h2,
.about-benefits h2 {

    color: #fff;

    font-size: clamp(2.2rem,4vw,3.5rem);

    font-weight: 800;

    line-height: 1.2;

    margin: 20px 0 30px;
}

.about-story p,
.about-benefits p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.9;

    margin-bottom: 20px;
}


/* ==================================================
   IMAGE PLACEHOLDER
================================================== */

.about-image-placeholder {

    height: 420px;

    border-radius: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.30);
}

.about-image-placeholder i {

    font-size: 7rem;

    color:
        rgba(37,168,255,.35);
}


/* ==================================================
   MISSION & VISION
================================================== */

.mission-vision {

    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #08182d 0%,
            #040b18 100%
        );
}

.info-card {

    height: 100%;

    padding: 45px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: all .35s ease;
}

.info-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(37,168,255,.25);
}

.info-card h3 {

    color: #fff;

    margin-bottom: 18px;

    font-weight: 700;
}

.info-card p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.8;

    margin: 0;
}


/* ==================================================
   VALUES
================================================== */

.values {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #040b18 0%,
            #061223 100%
        );
}

/* ==================================================
   INDUSTRIES
================================================== */

.industries {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #08182d 100%
        );
}

.industry-card {

    height: 100%;

    text-align: center;

    padding: 40px 25px;

    border-radius: 24px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(15px);

    transition: all .35s ease;
}

.industry-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(37,168,255,.25);

    box-shadow:
        0 20px 50px rgba(0,0,0,.30);
}

.industry-card i {

    font-size: 2.5rem;

    color: var(--primary);

    margin-bottom: 18px;

    display: block;
}

.industry-card h5 {

    color: #fff;

    margin: 0;

    font-weight: 600;
}


/* ==================================================
   ABOUT BENEFITS
================================================== */

.about-benefits {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #08182d 0%,
            #040b18 100%
        );
}

.benefit-list {

    list-style: none;

    padding: 0;

    margin-top: 35px;
}

.benefit-list li {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 22px;

    color:
        rgba(255,255,255,.78);

    line-height: 1.8;
}

.benefit-list i {

    color: var(--primary);

    font-size: 1.1rem;

    margin-top: 5px;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 991px) {

    .about-story,
    .mission-vision,
    .values,
    .industries,
    .about-benefits {

        padding: 100px 0;
    }

    .about-image-placeholder {

        margin-top: 40px;

        height: 280px;
    }

    .about-image-placeholder i {

        font-size: 5rem;
    }

    .info-card {

        padding: 35px;
    }
}

.about-image {

    width: 100%;
    height: 420px;

    object-fit: cover;

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,.08);
}

/* ==================================================
   SERVICES PAGE
================================================== */

.service-detail-section {

    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #08182d 100%
        );
}

.service-detail-section:nth-child(even) {

    background:
        linear-gradient(
            180deg,
            #08182d 0%,
            #040b18 100%
        );
}


/* ==================================================
   PAGE INTRO
================================================== */

.service-detail-section:first-of-type {

    padding-top: 140px;
}


/* ==================================================
   SERVICE DETAIL
================================================== */

.service-detail {

    display: flex;

    gap: 40px;

    align-items: flex-start;

    padding: 50px;

    border-radius: 32px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition:
        all .35s ease;
}

.service-detail:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(37,168,255,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.30);
}


/* ==================================================
   ICON
================================================== */

.service-detail .service-icon {

    width: 100px;
    height: 100px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);
}

.service-detail .service-icon i {

    font-size: 2.5rem;

    color: var(--primary);
}


/* ==================================================
   CONTENT
================================================== */

.service-detail h3 {

    color: #fff;

    font-size: 2rem;

    font-weight: 700;

    margin-bottom: 20px;
}

.service-detail p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.9;

    margin-bottom: 25px;
}


/* ==================================================
   FEATURE LIST
================================================== */

.service-detail ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.service-detail li {

    position: relative;

    padding-left: 30px;

    margin-bottom: 15px;

    color:
        rgba(255,255,255,.78);
}

.service-detail li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--primary);

    font-weight: 700;
}

/* ==================================================
   FAQ SECTION
================================================== */

.faq-section {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #040b18 0%,
            #061223 100%
        );
}

.faq-container {

    max-width: 900px;

    margin: auto;
}


/* ==================================================
   FAQ CARD
================================================== */

.faq-card {

    overflow: hidden;

    border-radius: 24px !important;

    background:
        rgba(255,255,255,.04) !important;

    border:
        1px solid rgba(255,255,255,.08) !important;

    margin-bottom: 18px;

    backdrop-filter: blur(20px);
}


/* ==================================================
   ACCORDION HEADER
================================================== */

.faq-card .accordion-button {

    background:
        transparent !important;

    color: #fff !important;

    font-weight: 600;

    padding: 24px 28px;

    box-shadow: none !important;
}

.faq-card .accordion-button:not(.collapsed) {

    background:
        rgba(37,168,255,.08) !important;

    color: #fff !important;
}

.faq-card .accordion-button::after {

    filter: brightness(0) invert(1);

    opacity: .8;
}


/* ==================================================
   BODY
================================================== */

.faq-card .accordion-body {

    color:
        rgba(255,255,255,.72);

    line-height: 1.9;

    padding: 0 28px 28px;
}


/* ==================================================
   REMOVE BOOTSTRAP DEFAULTS
================================================== */

.accordion {

    --bs-accordion-bg: transparent;

    --bs-accordion-border-width: 0;

    --bs-accordion-border-color: transparent;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 991px) {

    .service-detail {

        flex-direction: column;

        padding: 35px;
    }

    .service-detail .service-icon {

        width: 80px;
        height: 80px;
    }

    .service-detail .service-icon i {

        font-size: 2rem;
    }

    .service-detail h3 {

        font-size: 1.7rem;
    }

    .faq-section,
    .service-detail-section {

        padding: 100px 0;
    }
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

/* ==================================================
   BLOG SECTION
================================================== */

.blog-section {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #08182d 100%
        );
}


/* ==================================================
   BLOG CARD
================================================== */

.blog-card {

    height: 100%;

    overflow: hidden;

    border-radius: 28px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition:
        all .35s ease;
}

.blog-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(37,168,255,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
}


/* ==================================================
   IMAGE
================================================== */

.blog-card-image {

    width: 100%;

    height: 260px;

    object-fit: cover;

    transition:
        transform .7s ease;
}

.blog-card:hover .blog-card-image {

    transform:
        scale(1.08);
}


/* ==================================================
   CONTENT
================================================== */

.blog-card-content {

    padding: 30px;
}

.blog-card-content h3 {

    color: #fff;

    font-size: 1.4rem;

    font-weight: 700;

    line-height: 1.4;

    margin-bottom: 16px;
}

.blog-card-content p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.8;

    margin-bottom: 24px;
}

/* ==================================================
   DATE
================================================== */

.blog-date {

    display: inline-block;

    margin-bottom: 18px;

    padding: 8px 14px;

    border-radius: 999px;

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);

    color: var(--primary);

    font-size: .8rem;

    font-weight: 600;
}


/* ==================================================
   READ MORE
================================================== */

.read-more-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-weight: 600;

    transition:
        all .3s ease;
}

.read-more-link:hover {

    color: #fff;

    transform:
        translateX(5px);
}

.read-more-link i {

    transition:
        transform .3s ease;
}

.read-more-link:hover i {

    transform:
        translateX(4px);
}


/* ==================================================
   EMPTY STATE
================================================== */

.empty-blog-state {

    max-width: 600px;

    margin: auto;

    text-align: center;

    padding: 80px 40px;

    border-radius: 32px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);
}

.empty-blog-state i {

    font-size: 5rem;

    color: var(--primary);

    margin-bottom: 20px;

    display: block;
}

.empty-blog-state h3 {

    color: #fff;

    margin-bottom: 15px;

    font-weight: 700;
}

.empty-blog-state p {

    color:
        rgba(255,255,255,.72);

    margin: 0;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {

    .blog-section {

        padding: 100px 0;
    }

    .blog-card-image {

        height: 220px;
    }

    .blog-card-content {

        padding: 24px;
    }

    .empty-blog-state {

        padding: 60px 25px;
    }
}

.blog-meta {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.reading-time {

    color:
        rgba(255,255,255,.55);

    font-size: .85rem;
}

/* ==================================================
   ARTICLE HEADER
================================================== */

.article-header {

    padding: 180px 0 80px;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            #040b18 0%,
            #061223 100%
        );

    position: relative;

    overflow: hidden;
}

.article-header::before {

    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    left: 50%;
    top: -500px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(37,168,255,.15),
            transparent 70%
        );

    pointer-events: none;
}


/* ==================================================
   META
================================================== */

.article-meta {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);

    color: var(--primary);

    font-size: .9rem;

    font-weight: 600;

    margin-bottom: 25px;
}


/* ==================================================
   TITLE
================================================== */

.article-header h1 {

    max-width: 950px;

    margin: auto;

    color: #fff;

    font-size: clamp(2.8rem,6vw,5rem);

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;
}


/* ==================================================
   EXCERPT
================================================== */

.article-excerpt {

    max-width: 850px;

    margin: auto;

    color:
        rgba(255,255,255,.72);

    font-size: 1.2rem;

    line-height: 1.9;
}


/* ==================================================
   FEATURED IMAGE
================================================== */

.article-image-section {

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #08182d 100%
        );

    padding-bottom: 80px;
}

.article-featured-image {

    width: 100%;

    max-height: 650px;

    object-fit: cover;

    border-radius: 32px;

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}

/* ==================================================
   ARTICLE CONTENT
================================================== */

.article-content-section {

    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #08182d 0%,
            #040b18 100%
        );
}

.article-content {

    max-width: 850px;

    margin: auto;

    color:
        rgba(255,255,255,.82);

    font-size: 1.1rem;

    line-height: 2;
}


/* ==================================================
   TYPOGRAPHY
================================================== */

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {

    color: #fff;

    font-weight: 700;

    line-height: 1.3;

    margin-top: 2.5rem;

    margin-bottom: 1rem;
}

.article-content h2 {

    font-size: 2rem;
}

.article-content h3 {

    font-size: 1.6rem;
}

.article-content p {

    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {

    margin-bottom: 1.5rem;

    padding-left: 1.5rem;
}

.article-content li {

    margin-bottom: .8rem;
}

.article-content strong {

    color: #fff;
}

.article-content a {

    color: var(--primary);

    text-decoration: none;
}

.article-content a:hover {

    color: #fff;
}


/* ==================================================
   BLOCKQUOTE
================================================== */

.article-content blockquote {

    margin: 2rem 0;

    padding: 25px 30px;

    border-left:
        4px solid var(--primary);

    background:
        rgba(37,168,255,.06);

    border-radius: 0 20px 20px 0;

    color: rgba(255,255,255,.85);

    font-style: italic;
}


/* ==================================================
   IMAGES INSIDE ARTICLE
================================================== */

.article-content img {

    width: 100%;

    height: auto;

    border-radius: 20px;

    margin: 2rem 0;

    border:
        1px solid rgba(255,255,255,.08);
}


/* ==================================================
   CODE BLOCKS
================================================== */

.article-content pre {

    padding: 25px;

    border-radius: 20px;

    overflow-x: auto;

    background: #020814;

    border:
        1px solid rgba(255,255,255,.08);
}

.article-content code {

    color: #7dd3fc;
}


/* ==================================================
   RELATED POSTS
================================================== */

.related-posts {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #040b18 0%,
            #061223 100%
        );
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {

    .article-header {

        padding: 150px 0 60px;
    }

    .article-content-section,
    .related-posts {

        padding: 100px 0;
    }

    .article-content {

        font-size: 1rem;
    }

    .article-featured-image {

        border-radius: 24px;
    }
}

.article-content iframe {

    width: 100%;

    aspect-ratio: 16/9;

    height: auto;

    border: 0;

    border-radius: 20px;

    margin: 2rem 0;
}

.article-content table {

    width: 100%;

    margin: 2rem 0;

    border-collapse: collapse;
}

.article-content table th,
.article-content table td {

    border:
        1px solid rgba(255,255,255,.08);

    padding: 14px;
}

.article-content table th {

    color: #fff;
}

/* ==================================================
   PROJECT SHOWCASE PAGE
================================================== */

.project-showcase {

    padding: 0 0 100px;

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #08182d 100%
        );
}


/* ==================================================
   PROJECT META
================================================== */

.project-meta {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}

.project-meta span {

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);

    color: var(--primary);

    font-size: .9rem;

    font-weight: 600;
}


/* ==================================================
   MAIN IMAGE
================================================== */

.project-main-image {

    width: 100%;

    border-radius: 32px;

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}


/* ==================================================
   STATS SECTION
================================================== */

.project-stats {

    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #08182d 0%,
            #040b18 100%
        );
}

.stat-card {

    text-align: center;

    padding: 35px 25px;

    border-radius: 24px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: all .35s ease;
}

.stat-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(37,168,255,.25);
}

.stat-card h3 {

    color: var(--primary);

    font-size: 2rem;

    font-weight: 800;

    margin-bottom: 10px;
}

.stat-card p {

    color:
        rgba(255,255,255,.72);

    margin: 0;
}


/* ==================================================
   PROJECT SECTION
================================================== */

.project-section {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #040b18 0%,
            #061223 100%
        );
}

.project-section.bg-light {

    background:
        linear-gradient(
            180deg,
            #061223 0%,
            #08182d 100%
        ) !important;
}

.project-section h2 {

    color: #fff;

    font-size: clamp(2rem,4vw,3.5rem);

    font-weight: 800;

    line-height: 1.2;

    margin: 20px 0 25px;
}

.project-section p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.9;
}

.lead-text {

    font-size: 1.15rem;

    color:
        rgba(255,255,255,.85);

    margin-bottom: 25px;
}

/* ==================================================
   PROJECT INFO CARD
================================================== */

.project-info-card {

    padding: 35px;

    border-radius: 28px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    position: sticky;

    top: 120px;
}

.info-item {

    padding: 18px 0;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.info-item:last-child {

    border-bottom: none;
}

.info-label {

    display: block;

    color:
        rgba(255,255,255,.50);

    font-size: .85rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 6px;
}

.info-value {

    color: #fff;

    font-weight: 600;
}


/* ==================================================
   CHALLENGE / SOLUTION
================================================== */

.case-study-card {

    height: 100%;

    padding: 40px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: all .35s ease;
}

.case-study-card:hover {

    transform:
        translateY(-8px);
}

.case-study-card h4 {

    color: #fff;

    margin-bottom: 20px;

    font-weight: 700;
}

.case-study-card p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.9;
}


/* ==================================================
   ICONS
================================================== */

.case-icon {

    width: 90px;
    height: 90px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 24px;

    margin-bottom: 25px;

    font-size: 2rem;
}

.challenge-icon {

    background:
        rgba(255,193,7,.10);

    border:
        1px solid rgba(255,193,7,.20);

    color: #ffc107;
}

.solution-icon {

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);

    color: var(--primary);
}


/* ==================================================
   LISTS
================================================== */

.challenge-list {

    list-style: none;

    padding: 0;

    margin-top: 25px;
}

.challenge-list li {

    position: relative;

    padding-left: 30px;

    margin-bottom: 14px;

    color:
        rgba(255,255,255,.78);
}

.challenge-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--primary);

    font-weight: 700;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 991px) {

    .project-section,
    .project-stats {

        padding: 100px 0;
    }

    .project-info-card {

        position: static;

        margin-top: 30px;
    }

    .case-study-card {

        padding: 30px;
    }

    .project-main-image {

        border-radius: 24px;
    }
}

/* ==================================================
   CORE FEATURES
================================================== */

.feature-card {

    height: 100%;

    text-align: center;

    padding: 45px 35px;

    border-radius: 28px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition:
        all .35s ease;
}

.feature-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(37,168,255,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
}

.feature-card i {

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 22px;

    font-size: 2rem;

    color: var(--primary);

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);
}

.feature-card h5 {

    color: #fff;

    font-size: 1.3rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.feature-card p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.8;

    margin: 0;
}

/* ==================================================
   MATERIAL MODULES
================================================== */

.material-modules-section {

    background:
        linear-gradient(
            180deg,
            #08182d 0%,
            #040b18 100%
        );
}


/* ==================================================
   MODULE CARD
================================================== */

.module-card {

    height: 100%;

    text-align: center;

    padding: 35px 28px;

    border-radius: 24px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.06);

    transition:
        all .35s ease;
}

.module-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(37,168,255,.25);

    background:
        rgba(255,255,255,.05);

    box-shadow:
        0 20px 50px rgba(0,0,0,.30);
}


/* ==================================================
   MODULE ICON
================================================== */

.module-icon {

    width: 80px;
    height: 80px;

    margin: 0 auto 20px;

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(37,168,255,.15),
            rgba(37,168,255,.05)
        );

    border:
        1px solid rgba(37,168,255,.20);
}

.module-icon i {

    font-size: 2rem;

    color: var(--primary);
}


/* ==================================================
   MODULE CONTENT
================================================== */

.module-card h4 {

    color: #fff;

    font-size: 1.2rem;

    font-weight: 700;

    margin-bottom: 12px;
}

.module-card p {

    color:
        rgba(255,255,255,.70);

    line-height: 1.8;

    margin: 0;
}

.module-count {

    display: inline-block;

    margin-bottom: 25px;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);

    color: var(--primary);

    font-size: .9rem;

    font-weight: 600;
}

/* ==================================================
   TECHNOLOGY STACK
================================================== */

.tech-card {

    height: 100%;

    text-align: center;

    padding: 35px 25px;

    border-radius: 24px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(15px);

    transition: all .35s ease;
}

.tech-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(37,168,255,.25);

    box-shadow:
        0 20px 50px rgba(0,0,0,.30);
}

.tech-card i {

    display: block;

    font-size: 2.4rem;

    color: var(--primary);

    margin-bottom: 20px;
}

.tech-card h5 {

    color: #fff;

    font-weight: 700;

    margin-bottom: 12px;
}

.tech-card p {

    color:
        rgba(255,255,255,.70);

    line-height: 1.8;

    margin: 0;
}


/* ==================================================
   BUSINESS BENEFITS
================================================== */

.benefit-card {

    height: 100%;

    padding: 40px;

    border-radius: 28px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: all .35s ease;
}

.benefit-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(37,168,255,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
}

.benefit-icon {

    width: 85px;
    height: 85px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 22px;

    margin-bottom: 25px;

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);
}

.benefit-icon i {

    font-size: 2rem;

    color: var(--primary);
}

.benefit-card h4 {

    color: #fff;

    font-weight: 700;

    margin-bottom: 15px;
}

.benefit-card p {

    color:
        rgba(255,255,255,.72);

    line-height: 1.9;

    margin: 0;
}

/* ==================================================
   ROADMAP
================================================== */

.roadmap-card {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    height: 100%;

    border-radius: 24px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: all .35s ease;
}

.roadmap-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(37,168,255,.25);
}

.roadmap-card i {

    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        rgba(37,168,255,.10);

    border:
        1px solid rgba(37,168,255,.20);

    color: var(--primary);

    font-size: 1.8rem;
}

.roadmap-card h5 {

    color: #fff;

    margin-bottom: 10px;

    font-weight: 700;
}

.roadmap-card p {

    color:
        rgba(255,255,255,.72);

    margin: 0;

    line-height: 1.8;
}


/* ==================================================
   PROJECT NAVIGATION
================================================== */

.project-navigation {

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #040b18 0%,
            #061223 100%
        );
}

.navigation-wrapper {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 25px;
}

.project-nav-card {

    padding: 35px;

    border-radius: 28px;

    text-decoration: none;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: all .35s ease;
}

.project-nav-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(37,168,255,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
}

.nav-label {

    display: block;

    color: var(--primary);

    font-size: .85rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 12px;
}

.project-nav-card h5 {

    color: #fff;

    font-size: 1.25rem;

    font-weight: 700;

    line-height: 1.5;

    margin: 0;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 991px) {

    .navigation-wrapper {

        grid-template-columns: 1fr;
    }

    .roadmap-card {

        padding: 25px;
    }

    .benefit-card {

        padding: 30px;
    }

    .project-navigation {

        padding: 100px 0;
    }
}