
/* =========================================================
   BASE / RESET
========================================================= */

:root {
    --bg-dark: #070A1A;
    --text-dark: #1D1D1F;
    --text-light: #F5F7FF;
    --muted: #737373;
    --muted-light: #A7AEC4;
    --purple: #6C2BFF;
    --blue: #246BFF;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    background: #FFFFFF;
    line-height: 1.5;
    text-align: left;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
}


/* Vazirmatn */
@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* Global Persian Font */
html[lang="fa"],
html[lang="fa"] body,
html[lang="fa"] button,
html[lang="fa"] input,
html[lang="fa"] textarea,
html[lang="fa"] select {
    font-family: "Vazirmatn", sans-serif;
}


/* Headings */
html[lang="fa"] h1,
html[lang="fa"] h2,
html[lang="fa"] h3,
html[lang="fa"] h4,
html[lang="fa"] h5,
html[lang="fa"] h6 {
    font-family: "Vazirmatn", sans-serif;
    font-weight: 600;
}


/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: var(--bg-dark);
}

.site-nav {
    min-height: 82px;
    background: var(--bg-dark);
}

.nav-container {
    width: min(1200px, 92%);
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 170px;
    height: auto;
    display: block;
}

.brand-text {
    margin-left: 14px;
    line-height: 1;
}

.brand-name {
    font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.2px;
    margin-bottom: 7px;
    white-space: nowrap;
}

.brand-tagline {
    font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    color: var(--muted-light);
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--text-light);
    font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px 10px;
    white-space: nowrap;
    background-image: linear-gradient(90deg, var(--purple), var(--blue));
    background-repeat: no-repeat;
    background-position: 0 calc(100% - 2px);
    background-size: 0% 2px;
    transition: color 0.25s ease, background-size 0.25s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-item.active > .nav-link {
    color: #8B5CFF;
    background-size: 100% 2px;
}

.language-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.language-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF !important;
    text-decoration: none !important;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    border: 0;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(108, 43, 255, 0.20);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.quote-arrow {
    font-size: 17px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.btn-quote:hover {
    color: #FFFFFF !important;
    background: linear-gradient(90deg, #7B3FFF, #3578FF);
    box-shadow: 0 10px 28px rgba(108, 43, 255, 0.35);
}

.btn-quote:hover .quote-arrow {
    transform: translateX(4px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid rgba(167, 174, 196, 0.28);
    border-radius: 8px;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #F5F7FF;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HEADER RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .site-nav,
    .nav-container {
        min-height: 70px;
    }

    .nav-container {
        width: min(100%, 94%);
        gap: 15px;
    }

    .brand-logo {
        width: 120px;
    }

    .brand-text {
        margin-left: 9px;
    }

    .brand-name {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .brand-tagline {
        font-size: 7px;
        letter-spacing: 0;
    }

    .nav-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        width: min(100%, 94%);
        margin: 0 auto;
        padding: 18px 18px 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        background: #0A0E24;
        border: 1px solid rgba(167, 174, 196, 0.12);
        border-radius: 0 0 14px 14px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-list {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 5px;
        font-size: 15px;
    }

    .language-link {
        width: fit-content;
    }

    .btn-quote {
        width: 100%;
        margin-top: 0;
        padding: 11px 18px;
    }
}


/* =========================================================
   IMAGE / SCROLL PERFORMANCE
========================================================= */

.hero-img,
.portfolio-screen img,
.brand-logo,
.footer-logo img {
    display: block;
}

.portfolio-screen img {
    width: 100%;
    height: auto;
}

section {
    overflow: hidden;
}

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

.hero-section {
    position: relative;
    width: 100%;
    min-height: 680px;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse 55% 85% at 78% 50%,
            rgba(36, 107, 255, 0.16) 0%,
            rgba(108, 43, 255, 0.10) 32%,
            rgba(7, 10, 26, 0) 70%
        ),
        radial-gradient(
            ellipse 45% 70% at 15% 45%,
            rgba(108, 43, 255, 0.08) 0%,
            rgba(7, 10, 26, 0) 65%
        ),
        #070A1A;

    color: #F5F7FF;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.hero-bg-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(100px);

    z-index: 0;
}


.hero-glow-1 {
    width: 480px;
    height: 480px;

    right: 5%;
    top: 15%;

    background: rgba(36, 107, 255, 0.10);
}


.hero-glow-2 {
    width: 400px;
    height: 400px;

    left: 5%;
    top: 25%;

    background: rgba(108, 43, 255, 0.07);
}


/* =========================================================
   CONTAINER
========================================================= */

.hero-container {
    position: relative;

    width: 100%;
    max-width: 1450px;

    min-height: 680px;

    margin: 0 auto;

    padding: 70px 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    z-index: 2;
}


/* =========================================================
   TEXT AREA
========================================================= */

.hero-content {
    position: relative;

    width: 47%;

    z-index: 5;

    text-align: left;
}


/* =========================================================
   SMALL LABEL
========================================================= */

.hero-label {
    margin-bottom: 22px;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.6;

    letter-spacing: 2.5px;

    color: #8B5CFF;

    white-space: nowrap;
}


.hero-label span {
    margin: 0 7px;

    color: #246BFF;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.hero-title {
    margin: 0 0 27px;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: clamp(44px, 4.5vw, 68px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.8px;

    color: #F7F8FF;
}


.hero-title span {
    display: block;

    margin-top: 4px;

    background:
        linear-gradient(
            90deg,
            #6C2BFF 0%,
            #246BFF 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
    max-width: 570px;

    margin: 0 0 34px;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 17px;

    line-height: 1.8;

    font-weight: 400;

    color: #A7AEC4;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 42px;
}


.hero-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 0 23px;

    border-radius: 8px;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


/* Primary Button */

.primary-btn {
    color: #FFFFFF !important;

    background:
        linear-gradient(
            100deg,
            #6C2BFF,
            #246BFF
        );

    border: 1px solid transparent;

    box-shadow:
        0 8px 30px
        rgba(72, 55, 255, 0.25);
}


.primary-btn span {
    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


.primary-btn:hover {
    color: #FFFFFF !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 35px
        rgba(72, 55, 255, 0.40);
}


.primary-btn:hover span {
    transform: translateX(4px);
}


/* Secondary Button */

.secondary-btn {
    color: #F5F7FF !important;

    background:
        rgba(255, 255, 255, 0.015);

    border: 1px solid
        rgba(139, 92, 255, 0.55);
}


.secondary-btn:hover {
    color: #FFFFFF !important;

    background:
        rgba(108, 43, 255, 0.08);

    border-color: #246BFF;

    transform: translateY(-2px);
}


/* =========================================================
   HERO SERVICES / FEATURES
========================================================= */

.hero-services {
    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}


.hero-service {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-right: 24px;

    border-right:
        1px solid
        rgba(139, 92, 255, 0.20);
}


.hero-service:last-child {
    padding-right: 0;

    border-right: none;
}


/* Feature Icon */

.hero-service .service-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;
    height: 32px;

    flex-shrink: 0;

    font-size: 19px;

    color: #6C2BFF;
}


.hero-service .service-icon i {
    background:
        linear-gradient(
            135deg,
            #6C2BFF,
            #246BFF
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* Feature Title */

.hero-service strong {
    display: block;

    margin: 0;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 600;

    color: #F1F3FA;
}


/* Feature Subtitle */

.hero-service small {
    display: block;

    margin-top: 2px;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 10px;

    line-height: 1.4;

    color: #737B92;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {
    position: relative;

    width: 53%;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 3;
}


/* Glow Behind Image */

.hero-image-glow {
    position: absolute;

    width: 80%;
    height: 75%;

    top: 12%;
    right: 3%;

    background:
        radial-gradient(
            ellipse,
            rgba(108, 43, 255, 0.20) 0%,
            rgba(36, 107, 255, 0.12) 35%,
            transparent 72%
        );

    filter: blur(55px);

    z-index: -1;

    pointer-events: none;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-img {
    position: relative;

    width: 100%;

    max-width: 760px;

    height: auto;

    display: block;

    object-fit: contain;

    /*
       اگر HeroE.png واقعاً Transparent باشد،
       این بخش‌ها نیازی به تغییر ندارند.
    */

    background: transparent !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-container {
        padding-left: 4%;
        padding-right: 4%;

        gap: 5px;
    }


    .hero-content {
        width: 49%;
    }


    .hero-image {
        width: 51%;
    }


    .hero-title {
        font-size: 48px;
    }


    .hero-description {
        font-size: 15px;
    }


    .hero-services {
        gap: 15px;
    }


    .hero-service {
        padding-right: 15px;
    }

}


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

@media (max-width: 767.98px) {

    .hero-section {
        min-height: auto;
    }


    .hero-container {
        min-height: auto;

        padding: 60px 22px 65px;

        flex-direction: column;

        gap: 35px;
    }


    /* Text */

    .hero-content {
        width: 100%;

        text-align: center;

        order: 1;
    }


    /* Image */

    .hero-image {
        width: 100%;

        order: 2;
    }


    .hero-img {
        width: 110%;

        max-width: none;

        margin-left: -5%;
    }


    /* Label */

    .hero-label {
        font-size: 9px;

        letter-spacing: 1.5px;

        white-space: normal;

        line-height: 1.8;
    }


    /* Title */

    .hero-title {
        font-size: 40px;

        line-height: 1.12;

        letter-spacing: -0.8px;
    }


    /* Description */

    .hero-description {
        margin-left: auto;
        margin-right: auto;

        font-size: 15px;

        line-height: 1.8;
    }


    /* Buttons */

    .hero-buttons {
        justify-content: center;

        flex-wrap: wrap;

        margin-bottom: 32px;
    }


    /* Services */

    .hero-services {
        justify-content: center;

        gap: 15px;
    }


    .hero-service {
        border-right: none;

        padding-right: 0;
    }

}


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

@media (max-width: 575.98px) {

    .hero-container {
        padding: 48px 20px 50px;

        gap: 25px;
    }


    .hero-title {
        font-size: 36px;
    }


    .hero-description {
        font-size: 14px;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .hero-btn {
        width: 100%;
    }


    .hero-services {
        display: none;
    }


    .hero-img {
        width: 115%;

        margin-left: -7.5%;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .hero-title {
        font-size: 32px;
    }


    .hero-label {
        font-size: 8px;
    }

}

.language-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #54595F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.language-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.language-link:hover {
    color: #6C2BFF;
}

/* ========================================
   OUR SERVICES
======================================== */

.services-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.services-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* ========================================
   SERVICES GRID
======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* ========================================
   SERVICE CARD
======================================== */

.service-card {
    position: relative;

    min-height: 330px;
    padding: 34px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #EAEAEA;
    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(108, 43, 255, 0.25);

    box-shadow:
        0 20px 50px rgba(40, 30, 80, 0.08);
}


/* ========================================
   NUMBER
======================================== */

.service-number {
    position: absolute;
    top: 28px;
    right: 30px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;

    color: #B5B5B5;
}


/* ========================================
   ICON
======================================== */

.service-icon {
    width: 52px;
    height: 52px;

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

    margin-bottom: 28px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        rgba(108, 43, 255, 0.10),
        rgba(36, 107, 255, 0.08)
    );

    color: #6C2BFF;

    font-size: 21px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(
        135deg,
        #6C2BFF,
        #246BFF
    );

    color: #ffffff;

    transform: translateY(-2px);
}


/* ========================================
   TITLE
======================================== */

.service-card h3 {
    margin: 0 0 14px;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 650;

    color: #1D1D1F;
}


/* ========================================
   DESCRIPTION
======================================== */

.service-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.75;

    color: #737373;
}


/* ========================================
   LEARN MORE
======================================== */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;
    padding-top: 28px;

    width: fit-content;

    font-size: 13px;
    font-weight: 600;

    color: #54595F;

    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.service-link span {
    font-size: 18px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.service-link:hover {
    color: #6C2BFF;
    gap: 11px;
}

.service-link:hover span {
    transform: translateX(3px);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 992px) {

    .services-section {
        padding: 90px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-header {
        margin-bottom: 50px;
    }

}


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

@media (max-width: 600px) {

    .services-section {
        padding: 75px 0;
    }

    .services-container {
        width: 88%;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-header h2 {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .services-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        min-height: 300px;
        padding: 28px;
    }

}

/* ========================================
   OUR SERVICES
======================================== */

.services-section {
    position: relative;
    padding: 110px 0 120px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(108, 43, 255, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(36, 107, 255, 0.10),
            transparent 35%
        ),
        #050816;

    overflow: hidden;
}


/* Container */

.services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}


/* ========================================
   HEADING
======================================== */

.services-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}


.section-label {
    display: inline-block;
    margin-bottom: 15px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5px;

    background: linear-gradient(
        90deg,
        #6C2BFF,
        #246BFF
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.services-heading h2 {
    margin: 0 0 15px;

    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;

    color: #ffffff;

    letter-spacing: -1px;
}


.services-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #aeb5ca;
}


/* ========================================
   SERVICES GRID
======================================== */

.services-grid {
    display: grid;

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

    gap: 25px;
}


/* ========================================
   SERVICE CARD
======================================== */

.service-card {
    position: relative;

    padding: 35px 30px;

    min-height: 285px;

    background: rgba(13, 18, 45, 0.72);

    border: 1px solid rgba(108, 43, 255, 0.35);

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* Glow inside card */

.service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -90px;

    background: radial-gradient(
        circle,
        rgba(108, 43, 255, 0.20),
        transparent 70%
    );

    pointer-events: none;
}


/* Bottom gradient line */

.service-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        #6C2BFF,
        #246BFF
    );

    transition: width 0.4s ease;
}


/* ========================================
   CARD HOVER
======================================== */

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

    border-color: rgba(108, 43, 255, 0.75);

    background: rgba(17, 22, 55, 0.90);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(108, 43, 255, 0.12);
}


.service-card:hover::after {
    width: 100%;
}


/* ========================================
   ICON
======================================== */

.service-icon {
    display: flex;

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

    width: 58px;
    height: 58px;

    margin-bottom: 25px;

    border-radius: 14px;

    background: rgba(108, 43, 255, 0.10);

    border: 1px solid rgba(108, 43, 255, 0.25);

    font-size: 25px;

    background-image: linear-gradient(
        135deg,
        #6C2BFF,
        #246BFF
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.service-card:hover .service-icon {
    transform: translateY(-3px);

    box-shadow:
        0 0 25px rgba(108, 43, 255, 0.20);
}


/* ========================================
   CARD TITLE
======================================== */

.service-card h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 21px;
    font-weight: 600;

    line-height: 1.3;
}


/* ========================================
   CARD DESCRIPTION
======================================== */

.service-card p {
    margin: 0 0 25px;

    color: #aeb5ca;

    font-size: 15px;

    line-height: 1.7;
}


/* ========================================
   LEARN MORE
======================================== */

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.3s ease;
}


.service-link i {
    font-size: 13px;

    color: #6C2BFF;

    transition: transform 0.3s ease;
}


.service-link:hover {
    color: #ffffff;

    text-decoration: none;
}


.service-link:hover i {
    transform: translateX(5px);

    color: #246BFF;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .services-section {
        padding: 90px 0 100px;
    }

    .services-heading {
        margin-bottom: 45px;
    }

    .services-heading h2 {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


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

@media (max-width: 575px) {

    .services-section {
        padding: 75px 0 80px;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-heading {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .services-heading h2 {
        font-size: 34px;
    }

    .services-heading p {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-card {
        min-height: auto;

        padding: 30px 25px;
    }

}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us-section {
    position: relative !important;
    width: 100% !important;
    padding: 110px 0 120px !important;

    overflow: hidden !important;

    background:
        radial-gradient(
            ellipse 50% 80% at 85% 50%,
            rgba(36, 107, 255, 0.10) 0%,
            rgba(108, 43, 255, 0.07) 35%,
            transparent 70%
        ),
        #070A1A !important;

    color: #FFFFFF !important;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.why-us-section::before {
    content: "" !important;

    position: absolute !important;

    width: 450px !important;
    height: 450px !important;

    left: -220px !important;
    top: 20% !important;

    border-radius: 50% !important;

    background: rgba(108, 43, 255, 0.08) !important;

    filter: blur(110px) !important;

    pointer-events: none !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.why-us-container {
    position: relative !important;

    width: 100% !important;
    max-width: 1200px !important;

    margin: 0 auto !important;

    padding: 0 25px !important;

    display: grid !important;

    grid-template-columns: 0.85fr 1.15fr !important;

    gap: 90px !important;

    align-items: center !important;

    z-index: 2 !important;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.why-us-content {
    position: relative !important;

    text-align: left !important;
}


/* =========================================================
   LABEL
========================================================= */

.why-us-label {
    display: inline-block !important;

    margin-bottom: 18px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 12px !important;

    font-weight: 600 !important;

    letter-spacing: 4px !important;

    line-height: 1.5 !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;
    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


/* =========================================================
   TITLE
========================================================= */

.why-us-title {
    margin: 0 0 25px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: clamp(42px, 4vw, 58px) !important;

    line-height: 1.08 !important;

    font-weight: 700 !important;

    letter-spacing: -1.5px !important;

    color: #F7F8FF !important;
}


.why-us-title span {
    display: block !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;
    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;

    color: transparent !important;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.why-us-description {
    max-width: 500px !important;

    margin: 0 0 32px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 16px !important;

    line-height: 1.85 !important;

    font-weight: 400 !important;

    color: #A7AEC4 !important;
}


/* =========================================================
   BUTTON
========================================================= */

.why-us-button {
    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 10px !important;

    min-height: 48px !important;

    padding: 0 23px !important;

    border-radius: 8px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 14px !important;

    font-weight: 600 !important;

    color: #FFFFFF !important;

    text-decoration: none !important;

    background:
        linear-gradient(
            100deg,
            #6C2BFF,
            #246BFF
        ) !important;

    border: 1px solid transparent !important;

    box-shadow:
        0 8px 30px
        rgba(72, 55, 255, 0.22) !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease !important;
}


.why-us-button span {
    font-size: 18px !important;

    transition:
        transform 0.25s ease !important;
}


.why-us-button:hover {
    color: #FFFFFF !important;

    text-decoration: none !important;

    transform: translateY(-2px) !important;

    box-shadow:
        0 12px 35px
        rgba(72, 55, 255, 0.38) !important;
}


.why-us-button:hover span {
    transform: translateX(5px) !important;
}


/* =========================================================
   FEATURES
========================================================= */

.why-us-features {
    width: 100% !important;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.why-us-feature {
    position: relative !important;

    display: grid !important;

    grid-template-columns: 65px 1fr !important;

    gap: 25px !important;

    padding: 28px 0 !important;

    border-bottom:
        1px solid
        rgba(139, 92, 255, 0.18) !important;

    transition:
        padding-left 0.3s ease,
        border-color 0.3s ease !important;
}


.why-us-feature:first-child {
    padding-top: 0 !important;
}


.why-us-feature:last-child {
    border-bottom: none !important;
}


/* =========================================================
   NUMBER
========================================================= */

.feature-number {
    position: relative !important;

    padding-top: 2px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 18px !important;

    line-height: 1 !important;

    font-weight: 600 !important;

    letter-spacing: 1px !important;

    background:
        linear-gradient(
            135deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;
    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.feature-content h3 {
    margin: 0 0 8px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 19px !important;

    line-height: 1.4 !important;

    font-weight: 600 !important;

    color: #F3F5FC !important;
}


.feature-content p {
    max-width: 580px !important;

    margin: 0 !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 14px !important;

    line-height: 1.75 !important;

    color: #858EA6 !important;
}


/* =========================================================
   FEATURE HOVER
========================================================= */

.why-us-feature:hover {
    padding-left: 10px !important;

    border-bottom-color:
        rgba(108, 43, 255, 0.42) !important;
}


.why-us-feature:hover .feature-number {
    background:
        linear-gradient(
            135deg,
            #8B5CFF,
            #3F86FF
        ) !important;

    -webkit-background-clip: text !important;
    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


.why-us-feature:hover .feature-content h3 {
    color: #FFFFFF !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .why-us-section {
        padding: 90px 0 100px !important;
    }


    .why-us-container {
        grid-template-columns: 1fr !important;

        gap: 60px !important;

        max-width: 850px !important;
    }


    .why-us-content {
        text-align: center !important;
    }


    .why-us-description {
        margin-left: auto !important;
        margin-right: auto !important;
    }


    .why-us-title {
        font-size: 46px !important;
    }


    .why-us-features {
        max-width: 750px !important;

        margin: 0 auto !important;
    }

}


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

@media (max-width: 767.98px) {

    .why-us-section {
        padding: 75px 0 80px !important;
    }


    .why-us-container {
        padding: 0 22px !important;

        gap: 45px !important;
    }


    .why-us-label {
        font-size: 10px !important;

        letter-spacing: 3px !important;
    }


    .why-us-title {
        font-size: 38px !important;

        letter-spacing: -0.8px !important;
    }


    .why-us-description {
        font-size: 15px !important;

        line-height: 1.8 !important;
    }


    .why-us-feature {
        grid-template-columns: 48px 1fr !important;

        gap: 15px !important;

        padding: 24px 0 !important;
    }


    .feature-number {
        font-size: 16px !important;
    }


    .feature-content h3 {
        font-size: 17px !important;
    }


    .feature-content p {
        font-size: 13px !important;

        line-height: 1.7 !important;
    }

}


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

@media (max-width: 575.98px) {

    .why-us-container {
        padding: 0 20px !important;
    }


    .why-us-title {
        font-size: 34px !important;
    }


    .why-us-button {
        width: 100% !important;
    }


    .why-us-feature:hover {
        padding-left: 0 !important;
    }

}

/* =========================================================
   SELECTED WORK / PORTFOLIO
========================================================= */

.portfolio-section {
    position: relative !important;

    width: 100% !important;

    padding: 120px 0 125px !important;

    overflow: hidden !important;

    background:
        radial-gradient(
            ellipse 55% 65% at 50% 0%,
            rgba(108, 43, 255, 0.08) 0%,
            transparent 70%
        ),
        #070A1A !important;

    color: #FFFFFF !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.portfolio-container {
    position: relative !important;

    width: 100% !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

    padding: 0 25px !important;

    z-index: 2 !important;
}


/* =========================================================
   HEADING
========================================================= */

.portfolio-heading {
    max-width: 760px !important;

    margin: 0 auto 65px !important;

    text-align: center !important;
}


.portfolio-label {
    display: inline-block !important;

    margin-bottom: 18px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 12px !important;

    font-weight: 600 !important;

    letter-spacing: 4px !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


.portfolio-title {
    margin: 0 0 20px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: clamp(42px, 4vw, 58px) !important;

    line-height: 1.08 !important;

    font-weight: 700 !important;

    letter-spacing: -1.5px !important;

    color: #F7F8FF !important;
}


.portfolio-title span {
    display: block !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;

    color: transparent !important;
}


.portfolio-description {
    max-width: 650px !important;

    margin: 0 auto !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 16px !important;

    line-height: 1.85 !important;

    color: #929AAF !important;
}


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

.portfolio-grid {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 55px 30px !important;
}


/* =========================================================
   PROJECT
========================================================= */

.portfolio-item {
    position: relative !important;

    min-width: 0 !important;
}


.portfolio-item-large {
    grid-column: 1 / -1 !important;
}


/* =========================================================
   PREVIEW
========================================================= */

.portfolio-preview {
    position: relative !important;

    width: 100% !important;

    overflow: hidden !important;

    border-radius: 16px !important;

    background: #0D1228 !important;

    border:
        1px solid
        rgba(139, 92, 255, 0.20) !important;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.28) !important;
}


/* =========================================================
   BROWSER
========================================================= */

.portfolio-browser {
    width: 100% !important;

    background: #11162B !important;

    overflow: hidden !important;
}


/* =========================================================
   BROWSER BAR
========================================================= */

.browser-bar {
    position: relative !important;

    height: 38px !important;

    display: flex !important;

    align-items: center !important;

    padding: 0 14px !important;

    background: #11162B !important;

    border-bottom:
        1px solid
        rgba(255,255,255,0.07) !important;

    z-index: 5 !important;
}


.browser-dots {
    display: flex !important;

    gap: 6px !important;

    width: 70px !important;
}


.browser-dots span {
    display: block !important;

    width: 8px !important;

    height: 8px !important;

    border-radius: 50% !important;

    background: #596176 !important;
}


.browser-address {
    position: absolute !important;

    left: 50% !important;

    transform: translateX(-50%) !important;

    width: 45% !important;

    height: 22px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    border-radius: 6px !important;

    background:
        rgba(255,255,255,0.055) !important;

    color: #737C94 !important;

    font-family:
        Arial,
        sans-serif !important;

    font-size: 9px !important;

    letter-spacing: 0.3px !important;
}


/* =========================================================
   SCREEN
========================================================= */

.portfolio-screen {
    position: relative !important;

    width: 100% !important;

    height: 480px !important;

    overflow: hidden !important;

    background: #FFFFFF !important;
}


/* LARGE PROJECT */

.portfolio-item-large .portfolio-screen {
    height: 540px !important;
}


/* =========================================================
   FULL PAGE IMAGE
========================================================= */

.portfolio-screen img {
    position: absolute !important;

    top: 0 !important;

    left: 0 !important;

    width: 100% !important;

    height: auto !important;

    max-width: none !important;

    display: block !important;

    object-fit: initial !important;

    transform:
        translateY(0)
        scale(1) !important;

    transform-origin: top center !important;

    transition:
        transform 5s
        cubic-bezier(
            0.25,
            0.46,
            0.45,
            0.94
        ) !important;
}


/* =========================================================
   HOVER SCROLL
========================================================= */

.portfolio-item:hover
.portfolio-screen img {

    transform:
        translateY(
            calc(
                -1 *
                (100% - 480px)
            )
        )
        scale(1.015) !important;
}


/* LARGE PROJECT SCROLL */

.portfolio-item-large:hover
.portfolio-screen img {

    transform:
        translateY(
            calc(
                -1 *
                (100% - 540px)
            )
        )
        scale(1.015) !important;
}


/* =========================================================
   HOVER OVERLAY
========================================================= */

.portfolio-hover {
    position: absolute !important;

    inset: 38px 0 0 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    background:
        linear-gradient(
            135deg,
            rgba(108,43,255,0.18),
            rgba(36,107,255,0.14)
        ) !important;

    opacity: 0 !important;

    pointer-events: none !important;

    transition:
        opacity 0.35s ease !important;

    z-index: 10 !important;
}


.portfolio-item:hover
.portfolio-hover {
    opacity: 1 !important;
}


/* =========================================================
   VIEW PROJECT
========================================================= */

.portfolio-view {
    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 10px !important;

    min-height: 48px !important;

    padding: 0 24px !important;

    border-radius: 8px !important;

    background:
        rgba(7,10,26,0.88) !important;

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

    color: #FFFFFF !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 13px !important;

    font-weight: 600 !important;

    text-decoration: none !important;

    backdrop-filter: blur(10px) !important;

    -webkit-backdrop-filter: blur(10px) !important;

    pointer-events: auto !important;

    transition:
        transform 0.25s ease,
        background 0.25s ease !important;
}


.portfolio-view span {
    font-size: 17px !important;

    transition:
        transform 0.25s ease !important;
}


.portfolio-view:hover {
    color: #FFFFFF !important;

    text-decoration: none !important;

    background:
        linear-gradient(
            100deg,
            #6C2BFF,
            #246BFF
        ) !important;

    transform: translateY(-2px) !important;
}


.portfolio-view:hover span {
    transform:
        translate(3px,-3px) !important;
}


/* =========================================================
   PROJECT INFO
========================================================= */

.portfolio-info {
    display: flex !important;

    align-items: flex-start !important;

    justify-content: space-between !important;

    gap: 20px !important;

    padding: 20px 4px 0 !important;
}


.portfolio-info h3 {
    margin: 0 0 7px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 20px !important;

    font-weight: 600 !important;

    color: #F5F7FF !important;
}


.portfolio-info p {
    margin: 0 !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 13px !important;

    line-height: 1.6 !important;

    color: #7F889F !important;
}


.portfolio-category {
    flex-shrink: 0 !important;

    margin-top: 3px !important;

    font-family:
        Arial,
        sans-serif !important;

    font-size: 9px !important;

    font-weight: 600 !important;

    letter-spacing: 2px !important;

    color: #6F78A0 !important;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.portfolio-bottom {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 25px !important;

    margin-top: 75px !important;

    padding-top: 40px !important;

    border-top:
        1px solid
        rgba(139,92,255,0.15) !important;
}


.portfolio-bottom p {
    margin: 0 !important;

    color: #858EA6 !important;

    font-size: 15px !important;
}


.portfolio-cta {
    display: inline-flex !important;

    align-items: center !important;

    gap: 9px !important;

    color: #FFFFFF !important;

    font-size: 14px !important;

    font-weight: 600 !important;

    text-decoration: none !important;
}


.portfolio-cta:hover {
    color: #FFFFFF !important;

    text-decoration: none !important;
}


.portfolio-cta span {
    color: #6C2BFF !important;

    font-size: 18px !important;

    transition:
        transform 0.25s ease !important;
}


.portfolio-cta:hover span {
    transform: translateX(5px) !important;

    color: #246BFF !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .portfolio-section {
        padding: 90px 0 100px !important;
    }

    .portfolio-grid {
        gap: 40px 22px !important;
    }

    .portfolio-screen {
        height: 400px !important;
    }

    .portfolio-item-large .portfolio-screen {
        height: 450px !important;
    }

    .portfolio-item:hover
    .portfolio-screen img {

        transform:
            translateY(
                calc(
                    -1 *
                    (100% - 400px)
                )
            )
            scale(1.015) !important;
    }

    .portfolio-item-large:hover
    .portfolio-screen img {

        transform:
            translateY(
                calc(
                    -1 *
                    (100% - 450px)
                )
            )
            scale(1.015) !important;
    }
}


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

@media (max-width: 767.98px) {

    .portfolio-section {
        padding: 75px 0 80px !important;
    }

    .portfolio-container {
        padding: 0 22px !important;
    }

    .portfolio-grid {
        grid-template-columns: 1fr !important;

        gap: 40px !important;
    }

    .portfolio-item-large {
        grid-column: auto !important;
    }

    .portfolio-screen,
    .portfolio-item-large .portfolio-screen {
        height: 360px !important;
    }

    /*
       Mobile:
       Show the top of the website.
       Hover-scroll is disabled because
       there is no real hover on touch screens.
    */

    .portfolio-screen img {
        transform:
            translateY(0)
            scale(1) !important;
    }

    .portfolio-item:hover
    .portfolio-screen img,
    .portfolio-item-large:hover
    .portfolio-screen img {

        transform:
            translateY(0)
            scale(1) !important;
    }

    .portfolio-hover {
        display: none !important;
    }

    .browser-bar {
        height: 34px !important;
    }

    .browser-address {
        width: 50% !important;

        font-size: 8px !important;
    }

    .portfolio-info {
        padding-top: 16px !important;
    }

    .portfolio-info h3 {
        font-size: 18px !important;
    }

    .portfolio-info p {
        font-size: 12px !important;
    }

    .portfolio-bottom {
        flex-direction: column !important;

        gap: 15px !important;

        margin-top: 55px !important;
    }
}


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

@media (max-width: 575.98px) {

    .portfolio-container {
        padding: 0 20px !important;
    }

    .portfolio-screen,
    .portfolio-item-large .portfolio-screen {
        height: 300px !important;
    }

    .portfolio-item:hover
    .portfolio-screen img,
    .portfolio-item-large:hover
    .portfolio-screen img {

        transform:
            translateY(0)
            scale(1) !important;
    }
}

/* =========================================================
   OUR APPROACH
========================================================= */

.approach-section {
    position: relative !important;

    width: 100% !important;

    padding: 120px 0 125px !important;

    overflow: hidden !important;

    background:
        linear-gradient(
            180deg,
            #070A1A 0%,
            #090D20 100%
        ) !important;

    color: #FFFFFF !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.approach-container {
    position: relative !important;

    width: 100% !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

    padding: 0 25px !important;

    z-index: 2 !important;
}


/* =========================================================
   HEADING
========================================================= */

.approach-heading {
    max-width: 760px !important;

    margin: 0 auto 75px !important;

    text-align: center !important;
}


.approach-label {
    display: inline-block !important;

    margin-bottom: 18px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 12px !important;

    font-weight: 600 !important;

    letter-spacing: 4px !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


.approach-title {
    margin: 0 0 20px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: clamp(
        42px,
        4vw,
        58px
    ) !important;

    line-height: 1.08 !important;

    font-weight: 700 !important;

    letter-spacing: -1.5px !important;

    color: #F7F8FF !important;
}


.approach-title span {
    display: block !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;

    color: transparent !important;
}


.approach-description {
    max-width: 650px !important;

    margin: 0 auto !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 16px !important;

    line-height: 1.85 !important;

    color: #929AAF !important;
}


/* =========================================================
   APPROACH STEPS
========================================================= */

.approach-steps {
    position: relative !important;

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 25px !important;
}


/* =========================================================
   CONNECTING LINE
========================================================= */

.approach-steps::before {
    content: "" !important;

    position: absolute !important;

    top: 37px !important;

    left: 12% !important;

    right: 12% !important;

    height: 1px !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(108,43,255,0.45),
            rgba(36,107,255,0.45),
            transparent
        ) !important;

    z-index: 0 !important;
}


/* =========================================================
   STEP
========================================================= */

.approach-step {
    position: relative !important;

    padding: 0 15px !important;

    text-align: center !important;

    z-index: 1 !important;
}


/* =========================================================
   NUMBER
========================================================= */

.approach-number {
    position: absolute !important;

    top: -10px !important;

    right: 20px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 11px !important;

    font-weight: 600 !important;

    letter-spacing: 1px !important;

    color: #4C5470 !important;
}


/* =========================================================
   ICON
========================================================= */

.approach-icon {
    width: 74px !important;

    height: 74px !important;

    margin: 0 auto 28px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    border-radius: 50% !important;

    background:
        linear-gradient(
            145deg,
            #11162E,
            #0C1024
        ) !important;

    border:
        1px solid
        rgba(108,43,255,0.35) !important;

    box-shadow:
        0 0 0 8px
        rgba(108,43,255,0.035),
        0 15px 40px
        rgba(0,0,0,0.28) !important;

    color: #8C63FF !important;

    font-size: 22px !important;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease !important;
}


/* =========================================================
   STEP HOVER
========================================================= */

.approach-step:hover .approach-icon {
    transform:
        translateY(-5px)
        scale(1.04) !important;

    border-color:
        rgba(108,43,255,0.75) !important;

    box-shadow:
        0 0 0 9px
        rgba(108,43,255,0.05),
        0 15px 45px
        rgba(108,43,255,0.16) !important;

    color: #FFFFFF !important;

    background:
        linear-gradient(
            135deg,
            #6C2BFF,
            #246BFF
        ) !important;
}


/* =========================================================
   CONTENT
========================================================= */

.approach-content h3 {
    margin: 0 0 13px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 20px !important;

    line-height: 1.3 !important;

    font-weight: 600 !important;

    color: #F5F7FF !important;
}


.approach-content p {
    max-width: 245px !important;

    margin: 0 auto !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 13px !important;

    line-height: 1.8 !important;

    color: #7F889F !important;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.approach-bottom {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 25px !important;

    margin-top: 85px !important;
}


.approach-bottom p {
    margin: 0 !important;

    white-space: nowrap !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 11px !important;

    font-weight: 600 !important;

    letter-spacing: 2px !important;

    text-transform: uppercase !important;

    color: #626B85 !important;
}


.approach-bottom p span {
    margin: 0 8px !important;

    color: #6C2BFF !important;
}


.approach-line {
    width: 100px !important;

    height: 1px !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(108,43,255,0.3)
        ) !important;
}


.approach-line:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(36,107,255,0.3),
            transparent
        ) !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .approach-section {
        padding: 90px 0 100px !important;
    }


    .approach-steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        row-gap: 65px !important;
    }


    .approach-steps::before {
        display: none !important;
    }


    .approach-step {
        padding: 0 25px !important;
    }

}


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

@media (max-width: 767.98px) {

    .approach-section {
        padding: 75px 0 80px !important;
    }


    .approach-container {
        padding: 0 22px !important;
    }


    .approach-heading {
        margin-bottom: 50px !important;
    }


    .approach-label {
        font-size: 10px !important;

        letter-spacing: 3px !important;
    }


    .approach-title {
        font-size: 38px !important;

        letter-spacing: -0.8px !important;
    }


    .approach-description {
        font-size: 14px !important;
    }


    .approach-steps {
        grid-template-columns: 1fr !important;

        gap: 50px !important;
    }


    .approach-step {
        padding: 0 15px !important;
    }


    .approach-number {
        top: -5px !important;

        right: 10px !important;
    }


    .approach-icon {
        width: 68px !important;

        height: 68px !important;

        margin-bottom: 22px !important;

        font-size: 20px !important;
    }


    .approach-content h3 {
        font-size: 19px !important;
    }


    .approach-content p {
        max-width: 310px !important;

        font-size: 13px !important;
    }


    .approach-bottom {
        margin-top: 60px !important;

        gap: 12px !important;
    }


    .approach-bottom p {
        font-size: 8px !important;

        letter-spacing: 1.2px !important;
    }


    .approach-bottom p span {
        margin: 0 3px !important;
    }


    .approach-line {
        width: 35px !important;
    }

}


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

@media (max-width: 575.98px) {

    .approach-title {
        font-size: 34px !important;
    }


    .approach-description {
        font-size: 13px !important;

        line-height: 1.8 !important;
    }


    .approach-bottom {
        display: none !important;
    }

}

/* =========================================================
   ABOUT WEB GOSTAR PARIN
========================================================= */

.about-section {
    position: relative !important;

    width: 100% !important;

    padding: 120px 0 125px !important;

    overflow: hidden !important;

    background:
        #070A1A !important;

    color: #FFFFFF !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.about-container {
    position: relative !important;

    width: 100% !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

    padding: 0 25px !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr) !important;

    gap: 90px !important;

    align-items: center !important;

    z-index: 2 !important;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.about-content {
    max-width: 650px !important;
}


.about-label {
    display: inline-block !important;

    margin-bottom: 18px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 12px !important;

    font-weight: 600 !important;

    letter-spacing: 4px !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


/* =========================================================
   TITLE
========================================================= */

.about-title {
    margin: 0 0 28px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size:
        clamp(42px, 4vw, 58px) !important;

    line-height: 1.08 !important;

    font-weight: 700 !important;

    letter-spacing: -1.5px !important;

    color: #F7F8FF !important;
}


.about-title span {
    display: block !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;

    color: transparent !important;
}


/* =========================================================
   TEXT
========================================================= */

.about-intro {
    margin: 0 0 20px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 18px !important;

    line-height: 1.75 !important;

    font-weight: 400 !important;

    color: #C8CDDC !important;
}


.about-text {
    margin: 0 0 15px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 14px !important;

    line-height: 1.9 !important;

    color: #7F889F !important;
}


/* =========================================================
   BUTTON
========================================================= */

.about-button {
    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 12px !important;

    margin-top: 18px !important;

    min-height: 50px !important;

    padding: 0 24px !important;

    border-radius: 8px !important;

    background:
        linear-gradient(
            100deg,
            #6C2BFF,
            #246BFF
        ) !important;

    color: #FFFFFF !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 13px !important;

    font-weight: 600 !important;

    text-decoration: none !important;

    box-shadow:
        0 12px 35px
        rgba(108,43,255,0.18) !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease !important;
}


.about-button span {
    font-size: 18px !important;

    transition:
        transform 0.25s ease !important;
}


.about-button:hover {
    color: #FFFFFF !important;

    text-decoration: none !important;

    transform: translateY(-2px) !important;

    box-shadow:
        0 16px 40px
        rgba(108,43,255,0.28) !important;
}


.about-button:hover span {
    transform: translateX(4px) !important;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.about-side {
    position: relative !important;

    padding-left: 35px !important;
}


/* =========================================================
   STAT
========================================================= */

.about-stat {
    position: relative !important;

    display: flex !important;

    align-items: flex-start !important;

    gap: 25px !important;

    padding: 28px 0 !important;

    border-bottom:
        1px solid
        rgba(255,255,255,0.07) !important;
}


.about-stat:first-child {
    padding-top: 0 !important;
}


.about-stat:last-of-type {
    border-bottom: none !important;
}


/* =========================================================
   STAT NUMBER
========================================================= */

.about-stat-number {
    flex-shrink: 0 !important;

    width: 80px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 34px !important;

    line-height: 1 !important;

    font-weight: 700 !important;

    letter-spacing: -1px !important;

    background:
        linear-gradient(
            135deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;

    color: transparent !important;
}


/* =========================================================
   STAT CONTENT
========================================================= */

.about-stat-content h3 {
    margin: 0 0 8px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 16px !important;

    line-height: 1.4 !important;

    font-weight: 600 !important;

    color: #F3F5FC !important;
}


.about-stat-content p {
    max-width: 300px !important;

    margin: 0 !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 12px !important;

    line-height: 1.75 !important;

    color: #747E98 !important;
}


/* =========================================================
   TECHNOLOGIES
========================================================= */

.about-tech {
    display: flex !important;

    flex-wrap: wrap !important;

    gap: 8px !important;

    margin-top: 32px !important;
}


.about-tech span {
    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    min-height: 30px !important;

    padding: 0 11px !important;

    border-radius: 5px !important;

    background:
        rgba(255,255,255,0.035) !important;

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

    color: #737D97 !important;

    font-family:
        Arial,
        sans-serif !important;

    font-size: 8px !important;

    font-weight: 600 !important;

    letter-spacing: 1px !important;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease !important;
}


.about-tech span:hover {
    color: #A88BFF !important;

    border-color:
        rgba(108,43,255,0.35) !important;

    background:
        rgba(108,43,255,0.06) !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .about-section {
        padding: 90px 0 100px !important;
    }


    .about-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr) !important;

        gap: 50px !important;
    }


    .about-side {
        padding-left: 15px !important;
    }


    .about-title {
        font-size: 45px !important;
    }

}


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

@media (max-width: 767.98px) {

    .about-section {
        padding: 75px 0 80px !important;
    }


    .about-container {
        grid-template-columns: 1fr !important;

        gap: 60px !important;

        padding: 0 22px !important;
    }


    .about-content {
        max-width: none !important;
    }


    .about-label {
        font-size: 10px !important;

        letter-spacing: 3px !important;
    }


    .about-title {
        font-size: 38px !important;

        letter-spacing: -0.8px !important;

        margin-bottom: 22px !important;
    }


    .about-intro {
        font-size: 16px !important;

        line-height: 1.7 !important;
    }


    .about-text {
        font-size: 13px !important;

        line-height: 1.85 !important;
    }


    .about-side {
        padding-left: 0 !important;
    }


    .about-stat {
        gap: 18px !important;

        padding: 23px 0 !important;
    }


    .about-stat-number {
        width: 65px !important;

        font-size: 28px !important;
    }


    .about-stat-content h3 {
        font-size: 15px !important;
    }


    .about-stat-content p {
        max-width: none !important;

        font-size: 12px !important;
    }


    .about-tech {
        margin-top: 25px !important;
    }

}


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

@media (max-width: 575.98px) {

    .about-container {
        padding: 0 20px !important;
    }


    .about-title {
        font-size: 34px !important;
    }


    .about-intro {
        font-size: 15px !important;
    }


    .about-button {
        width: 100% !important;
    }

}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
    position: relative !important;

    width: 100% !important;

    padding: 120px 0 125px !important;

    overflow: hidden !important;

    background:
        #070A1A !important;

    color: #FFFFFF !important;
}


/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.cta-glow {
    position: absolute !important;

    width: 500px !important;

    height: 500px !important;

    border-radius: 50% !important;

    filter: blur(100px) !important;

    pointer-events: none !important;

    opacity: 0.10 !important;
}


.cta-glow-1 {
    top: -300px !important;

    left: 15% !important;

    background: #6C2BFF !important;
}


.cta-glow-2 {
    right: 10% !important;

    bottom: -350px !important;

    background: #246BFF !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.cta-container {
    position: relative !important;

    width: 100% !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

    padding: 0 25px !important;

    z-index: 2 !important;
}


/* =========================================================
   CONTENT
========================================================= */

.cta-content {
    position: relative !important;

    max-width: 850px !important;

    margin: 0 auto !important;

    padding: 75px 60px !important;

    text-align: center !important;

    border-radius: 20px !important;

    background:
        linear-gradient(
            135deg,
            rgba(17,22,46,0.95),
            rgba(10,14,34,0.95)
        ) !important;

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

    box-shadow:
        0 30px 90px
        rgba(0,0,0,0.30),
        inset 0 1px 0
        rgba(255,255,255,0.025) !important;
}


/* =========================================================
   LABEL
========================================================= */

.cta-label {
    display: inline-block !important;

    margin-bottom: 20px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 11px !important;

    font-weight: 600 !important;

    letter-spacing: 4px !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


/* =========================================================
   TITLE
========================================================= */

.cta-title {
    margin: 0 0 22px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size:
        clamp(42px, 5vw, 62px) !important;

    line-height: 1.08 !important;

    font-weight: 700 !important;

    letter-spacing: -1.8px !important;

    color: #F7F8FF !important;
}


.cta-title span {
    display: block !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;

    color: transparent !important;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.cta-description {
    max-width: 620px !important;

    margin: 0 auto !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 15px !important;

    line-height: 1.85 !important;

    color: #8992A9 !important;
}


/* =========================================================
   BUTTONS
========================================================= */

.cta-buttons {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 14px !important;

    margin-top: 35px !important;
}


/* =========================================================
   BUTTON BASE
========================================================= */

.cta-btn {
    min-height: 52px !important;

    padding: 0 25px !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 12px !important;

    border-radius: 8px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 13px !important;

    font-weight: 600 !important;

    text-decoration: none !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease !important;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.cta-primary {
    background:
        linear-gradient(
            100deg,
            #6C2BFF,
            #246BFF
        ) !important;

    color: #FFFFFF !important;

    box-shadow:
        0 12px 35px
        rgba(108,43,255,0.20) !important;
}


.cta-primary:hover {
    color: #FFFFFF !important;

    text-decoration: none !important;

    transform: translateY(-3px) !important;

    box-shadow:
        0 18px 45px
        rgba(108,43,255,0.32) !important;
}


.cta-primary span {
    font-size: 18px !important;

    transition:
        transform 0.25s ease !important;
}


.cta-primary:hover span {
    transform: translateX(4px) !important;
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.cta-secondary {
    background:
        rgba(255,255,255,0.025) !important;

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

    color: #D7DBE8 !important;
}


.cta-secondary:hover {
    color: #FFFFFF !important;

    text-decoration: none !important;

    transform: translateY(-3px) !important;

    border-color:
        rgba(108,43,255,0.45) !important;

    background:
        rgba(108,43,255,0.07) !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .cta-section {
        padding: 90px 0 100px !important;
    }


    .cta-content {
        padding: 65px 45px !important;
    }


    .cta-title {
        font-size: 48px !important;
    }

}


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

@media (max-width: 767.98px) {

    .cta-section {
        padding: 75px 0 80px !important;
    }


    .cta-container {
        padding: 0 20px !important;
    }


    .cta-content {
        padding: 55px 22px !important;

        border-radius: 16px !important;
    }


    .cta-label {
        font-size: 9px !important;

        letter-spacing: 3px !important;
    }


    .cta-title {
        font-size: 38px !important;

        letter-spacing: -0.8px !important;
    }


    .cta-description {
        font-size: 13px !important;

        line-height: 1.8 !important;
    }


    .cta-buttons {
        flex-direction: column !important;

        width: 100% !important;

        gap: 10px !important;
    }


    .cta-btn {
        width: 100% !important;

        min-height: 50px !important;
    }


    .cta-glow {
        width: 300px !important;

        height: 300px !important;

        filter: blur(80px) !important;
    }

}


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

@media (max-width: 575.98px) {

    .cta-title {
        font-size: 34px !important;
    }


    .cta-content {
        padding: 48px 18px !important;
    }

}

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

.contact-section {
    position: relative !important;

    width: 100% !important;

    padding: 120px 0 125px !important;

    overflow: hidden !important;

    background: #070A1A !important;

    color: #FFFFFF !important;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.contact-bg-glow {
    position: absolute !important;

    width: 500px !important;

    height: 500px !important;

    border-radius: 50% !important;

    filter: blur(120px) !important;

    pointer-events: none !important;

    opacity: 0.08 !important;
}


.contact-glow-1 {
    top: -300px !important;

    left: -150px !important;

    background: #6C2BFF !important;
}


.contact-glow-2 {
    right: -180px !important;

    bottom: -320px !important;

    background: #246BFF !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.contact-container {
    position: relative !important;

    width: 100% !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

    padding: 0 25px !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr) !important;

    gap: 80px !important;

    align-items: center !important;

    z-index: 2 !important;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.contact-info {
    max-width: 500px !important;
}


.contact-label {
    display: inline-block !important;

    margin-bottom: 18px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 11px !important;

    font-weight: 600 !important;

    letter-spacing: 4px !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


/* =========================================================
   TITLE
========================================================= */

.contact-title {
    margin: 0 0 25px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size:
        clamp(42px, 4vw, 58px) !important;

    line-height: 1.08 !important;

    font-weight: 700 !important;

    letter-spacing: -1.5px !important;

    color: #F7F8FF !important;
}


.contact-title span {
    display: block !important;

    background:
        linear-gradient(
            90deg,
            #6C2BFF,
            #246BFF
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;

    color: transparent !important;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.contact-description {
    margin: 0 0 40px !important;

    max-width: 460px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 14px !important;

    line-height: 1.9 !important;

    color: #858EA6 !important;
}


/* =========================================================
   CONTACT INFORMATION ITEM
========================================================= */

.contact-info-item {
    display: flex !important;

    align-items: center !important;

    gap: 18px !important;

    width: fit-content !important;

    margin-bottom: 23px !important;

    text-decoration: none !important;

    color: inherit !important;
}


.contact-info-item:last-child {
    margin-bottom: 0 !important;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-icon {
    flex-shrink: 0 !important;

    width: 48px !important;

    height: 48px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    border-radius: 12px !important;

    background:
        rgba(108,43,255,0.07) !important;

    border:
        1px solid
        rgba(108,43,255,0.18) !important;

    color: #8D67FF !important;

    font-size: 15px !important;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease !important;
}


.contact-info-item:hover {
    text-decoration: none !important;

    color: inherit !important;
}


.contact-info-item:hover .contact-icon {
    transform: translateY(-2px) !important;

    background:
        linear-gradient(
            135deg,
            #6C2BFF,
            #246BFF
        ) !important;

    border-color:
        transparent !important;

    color: #FFFFFF !important;
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.contact-info-text {
    display: flex !important;

    flex-direction: column !important;

    gap: 4px !important;
}


.contact-info-text small {
    font-family:
        Arial,
        sans-serif !important;

    font-size: 8px !important;

    font-weight: 600 !important;

    letter-spacing: 2px !important;

    color: #59627A !important;
}


.contact-info-text strong {
    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 13px !important;

    font-weight: 500 !important;

    color: #CDD2E0 !important;

    transition:
        color 0.25s ease !important;
}


.contact-info-item:hover
.contact-info-text strong {
    color: #FFFFFF !important;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    position: relative !important;

    padding: 40px !important;

    border-radius: 18px !important;

    background:
        linear-gradient(
            145deg,
            rgba(16,21,44,0.96),
            rgba(10,14,32,0.96)
        ) !important;

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

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.28),
        inset 0 1px 0
        rgba(255,255,255,0.025) !important;
}


/* =========================================================
   FORM ROW
========================================================= */

.contact-form-row {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 18px !important;
}


/* =========================================================
   FIELD
========================================================= */

.contact-field {
    margin-bottom: 22px !important;
}


.contact-field label {
    display: block !important;

    margin-bottom: 9px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 11px !important;

    font-weight: 500 !important;

    color: #AAB1C3 !important;
}


/* =========================================================
   INPUTS
========================================================= */

.contact-field input,
.contact-field textarea {
    width: 100% !important;

    padding: 14px 15px !important;

    border-radius: 8px !important;

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

    outline: none !important;

    background:
        rgba(255,255,255,0.025) !important;

    color: #E9EBF3 !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 13px !important;

    line-height: 1.5 !important;

    box-shadow: none !important;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease !important;
}


.contact-field input {
    height: 48px !important;
}


.contact-field textarea {
    min-height: 140px !important;

    resize: vertical !important;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #50596F !important;

    opacity: 1 !important;
}


/* =========================================================
   FOCUS
========================================================= */

.contact-field input:focus,
.contact-field textarea:focus {
    border-color:
        rgba(108,43,255,0.65) !important;

    background:
        rgba(108,43,255,0.035) !important;

    box-shadow:
        0 0 0 3px
        rgba(108,43,255,0.08) !important;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    width: 100% !important;

    height: 52px !important;

    margin-top: 3px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 12px !important;

    border: none !important;

    border-radius: 8px !important;

    outline: none !important;

    cursor: pointer !important;

    background:
        linear-gradient(
            100deg,
            #6C2BFF,
            #246BFF
        ) !important;

    color: #FFFFFF !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 13px !important;

    font-weight: 600 !important;

    box-shadow:
        0 12px 35px
        rgba(108,43,255,0.18) !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease !important;
}


.contact-submit span {
    font-size: 18px !important;

    transition:
        transform 0.25s ease !important;
}


.contact-submit:hover {
    transform: translateY(-2px) !important;

    box-shadow:
        0 17px 40px
        rgba(108,43,255,0.30) !important;
}


.contact-submit:hover span {
    transform: translateX(4px) !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .contact-section {
        padding: 90px 0 100px !important;
    }


    .contact-container {
        grid-template-columns:
            1fr 1fr !important;

        gap: 45px !important;
    }


    .contact-form-wrapper {
        padding: 30px !important;
    }


    .contact-title {
        font-size: 45px !important;
    }

}


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

@media (max-width: 767.98px) {

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


    .contact-container {
        grid-template-columns: 1fr !important;

        gap: 55px !important;

        padding: 0 20px !important;
    }


    .contact-info {
        max-width: none !important;
    }


    .contact-label {
        font-size: 10px !important;

        letter-spacing: 3px !important;
    }


    .contact-title {
        font-size: 38px !important;

        letter-spacing: -0.8px !important;
    }


    .contact-description {
        font-size: 13px !important;

        line-height: 1.85 !important;

        margin-bottom: 32px !important;
    }


    .contact-info-item {
        margin-bottom: 20px !important;
    }


    .contact-form-wrapper {
        padding: 25px 20px !important;

        border-radius: 15px !important;
    }


    .contact-form-row {
        grid-template-columns: 1fr !important;

        gap: 0 !important;
    }


    .contact-field input {
        height: 47px !important;
    }


    .contact-field textarea {
        min-height: 130px !important;
    }

}


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

@media (max-width: 575.98px) {

    .contact-title {
        font-size: 34px !important;
    }


    .contact-form-wrapper {
        padding: 22px 16px !important;
    }


    .contact-icon {
        width: 44px !important;

        height: 44px !important;
    }


    .contact-info-text strong {
        font-size: 12px !important;
    }

}

/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-wrapper {
    width: 100%;
    position: relative;
}


/* FORM */

.contact-form {
    width: 100%;
}


.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}


.contact-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}


.contact-field label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 9px;
    color: #283B81;
}


.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(40, 59, 129, .14);
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 17px;
    font-family: inherit;
    font-size: 14px;
    color: #222;
    outline: none;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.contact-field input {
    height: 52px;
}


.contact-field textarea {
    min-height: 155px;
    resize: vertical;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a1a5ad;
}


.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #6A80D1;
    box-shadow: 0 0 0 4px rgba(106, 128, 209, .08);
}


/* SUBMIT BUTTON */

.contact-submit {
    width: 100%;
    min-height: 56px;
    border: none;
    border-radius: 12px;
    background: #283B81;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    cursor: pointer;
    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.contact-submit span:last-child {
    font-size: 20px;
    transition: transform .25s ease;
}


.contact-submit:hover {
    background: #344b9a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 59, 129, .15);
}


.contact-submit:hover span:last-child {
    transform: translateX(5px);
}


.contact-submit:active {
    transform: translateY(0);
}



/* =====================================================
   CONTACT STATUS MESSAGES
===================================================== */

.contact-message {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 16px 18px;
    margin-bottom: 24px;

    border-radius: 12px;

    font-size: 13px;
}


.contact-message > i {
    font-size: 20px;
    margin-top: 1px;
}


.contact-message > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.contact-message strong {
    font-size: 14px;
}


.contact-message span {
    line-height: 1.6;
}


.contact-success {
    background: rgba(46, 160, 67, .08);
    border: 1px solid rgba(46, 160, 67, .18);
    color: #247a36;
}


.contact-error {
    background: rgba(220, 53, 69, .07);
    border: 1px solid rgba(220, 53, 69, .16);
    color: #b02a37;
}



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

@media (max-width: 767px) {

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .contact-field {
        margin-bottom: 18px;
    }


    .contact-field input {
        height: 50px;
    }


    .contact-submit {
        min-height: 54px;
    }

}

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

.site-footer {
    position: relative !important;

    width: 100% !important;

    background:
        linear-gradient(
            180deg,
            #070A1A 0%,
            #050817 100%
        ) !important;

    color: #FFFFFF !important;

    overflow: hidden !important;
}


/* =========================================================
   TOP BORDER
========================================================= */

.site-footer::before {
    content: "" !important;

    position: absolute !important;

    top: 0 !important;

    left: 0 !important;

    width: 100% !important;

    height: 1px !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(108,43,255,0.45),
            rgba(36,107,255,0.45),
            transparent
        ) !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.footer-container {
    position: relative !important;

    width: 100% !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

    padding: 75px 25px 0 !important;
}


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

.footer-main {
    display: grid !important;

    grid-template-columns:
        1.6fr
        0.75fr
        0.95fr
        1fr !important;

    gap: 50px !important;

    padding-bottom: 60px !important;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    max-width: 340px !important;
}


.footer-logo {
    display: inline-flex !important;

    align-items: center !important;

    gap: 12px !important;

    text-decoration: none !important;

    color: #FFFFFF !important;

    margin-bottom: 22px !important;
}


.footer-logo:hover {
    text-decoration: none !important;

    color: #FFFFFF !important;
}


.footer-logo img {
    width: 42px !important;

    height: auto !important;

    display: block !important;
}


.footer-brand-text {
    display: flex !important;

    flex-direction: column !important;

    gap: 4px !important;
}


.footer-brand-name {
    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 15px !important;

    font-weight: 600 !important;

    letter-spacing: 0.2px !important;

    color: #F4F6FC !important;
}


.footer-brand-tagline {
    font-family:
        Arial,
        sans-serif !important;

    font-size: 7px !important;

    font-weight: 600 !important;

    letter-spacing: 1.5px !important;

    color: #606A83 !important;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.footer-description {
    max-width: 320px !important;

    margin: 0 0 20px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 12px !important;

    line-height: 1.85 !important;

    color: #717B94 !important;
}


/* =========================================================
   EMAIL
========================================================= */

.footer-email {
    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 12px !important;

    color: #A0A8BB !important;

    text-decoration: none !important;

    transition:
        color 0.25s ease !important;
}


.footer-email:hover {
    color: #8D68FF !important;

    text-decoration: none !important;
}


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

.footer-column h3 {
    margin: 3px 0 22px !important;

    font-family:
        Arial,
        sans-serif !important;

    font-size: 9px !important;

    font-weight: 600 !important;

    letter-spacing: 2.5px !important;

    color: #626C84 !important;
}


.footer-column ul {
    list-style: none !important;

    padding: 0 !important;

    margin: 0 !important;
}


.footer-column li {
    margin: 0 0 13px !important;

    padding: 0 !important;
}


.footer-column li a {
    position: relative !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 12px !important;

    color: #929AAF !important;

    text-decoration: none !important;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease !important;
}


.footer-column li a:hover {
    color: #FFFFFF !important;

    text-decoration: none !important;

    padding-left: 4px !important;
}


/* =========================================================
   CONTACT COLUMN
========================================================= */

.footer-contact {
    display: flex !important;

    flex-direction: column !important;

    align-items: flex-start !important;
}


.footer-contact > a {
    display: flex !important;

    align-items: center !important;

    gap: 10px !important;

    margin-bottom: 15px !important;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 11px !important;

    color: #929AAF !important;

    text-decoration: none !important;

    transition:
        color 0.25s ease !important;
}


.footer-contact > a:hover {
    color: #FFFFFF !important;

    text-decoration: none !important;
}


.footer-contact > a i {
    width: 16px !important;

    text-align: center !important;

    font-size: 11px !important;

    color: #7351E8 !important;
}


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

.footer-bottom {
    min-height: 65px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 25px !important;

    border-top:
        1px solid
        rgba(255,255,255,0.06) !important;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-copyright {
    font-family:
        Arial,
        sans-serif !important;

    font-size: 9px !important;

    color: #535C73 !important;
}


.footer-copyright span {
    color: #777F94 !important;
}


/* =========================================================
   DESIGN CREDIT
========================================================= */

.footer-bottom-right {
    display: flex !important;

    align-items: center !important;

    gap: 5px !important;

    font-family:
        Arial,
        sans-serif !important;

    font-size: 9px !important;

    color: #535C73 !important;
}


.footer-bottom-right strong {
    font-weight: 500 !important;

    color: #777F94 !important;
}


/* =========================================================
   HOVER DESIGN CREDIT
========================================================= */

.footer-bottom-right strong:hover {
    color: #8D68FF !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .footer-container {
        padding-top: 65px !important;
    }


    .footer-main {
        grid-template-columns:
            1.5fr
            1fr
            1fr !important;

        gap: 45px !important;
    }


    .footer-brand {
        grid-column: span 3 !important;

        max-width: 500px !important;
    }

}


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

@media (max-width: 767.98px) {

    .footer-container {
        padding:
            60px 22px 0 !important;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr !important;

        gap: 45px 25px !important;

        padding-bottom: 45px !important;
    }


    .footer-brand {
        grid-column: span 2 !important;

        max-width: 100% !important;
    }


    .footer-description {
        max-width: 400px !important;

        font-size: 12px !important;
    }


    .footer-column h3 {
        margin-bottom: 18px !important;
    }


    .footer-bottom {
        flex-direction: column !important;

        justify-content: center !important;

        gap: 8px !important;

        padding: 20px 0 !important;

        text-align: center !important;
    }


    .footer-bottom-right {
        justify-content: center !important;
    }

}


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

@media (max-width: 575.98px) {

    .footer-container {
        padding:
            50px 20px 0 !important;
    }


    .footer-main {
        grid-template-columns: 1fr !important;

        gap: 35px !important;
    }


    .footer-brand {
        grid-column: span 1 !important;
    }


    .footer-column {
        width: 100% !important;
    }


    .footer-contact {
        align-items: flex-start !important;
    }


    .footer-bottom {
        font-size: 8px !important;
    }

}