/* =========================================
   NETFIT MEDIA
   MAIN STYLESHEET
========================================= */


/* =========================================
   BASIC CONTENT PROTECTION
========================================= */

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
}


/* Keep form fields usable */

input,
textarea,
select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}


/* Prevent dragging images */

img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

:root {
    --orange: #ff5a00;
    --orange-light: #ff7a2f;
    --black: #050505;
    --dark: #0b0b0d;
    --dark-2: #111114;
    --dark-3: #17171b;
    --white: #ffffff;
    --gray: #a5a5ad;
    --border: rgba(255, 255, 255, 0.09);
    --purple: #8c52ff;
}


/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    background: var(--orange);
    color: #fff;
}


/* =========================================
   BOOTSTRAP OVERRIDES
========================================= */

.container {
    max-width: 1180px;
}

.section-padding {
    padding: 120px 0;
}

.btn {
    border-radius: 8px;
    padding: 13px 23px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    border: 1px solid var(--orange);
    box-shadow: 0 10px 30px rgba(255, 90, 0, 0.18);
}

.btn-orange:hover {
    background: #ff6c1a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 90, 0, 0.3);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}


/* =========================================
   NETFIT MEDIA
   PREMIUM PRELOADER
========================================= */

#preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    background:
        radial-gradient(circle at center,
            rgba(255, 88, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.95) 42%,
            #050505 100%);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}


/* =========================================
   PRELOADER HIDDEN STATE
========================================= */

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* =========================================
   INNER CONTAINER
========================================= */

.preloader-inner {
    width: 100%;
    max-width: 420px;

    padding: 30px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    animation: preloaderEnter 1s ease forwards;
}


/* =========================================
   LOGO AREA
========================================= */

.logo-loader {
    position: relative;

    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}


/* =========================================
   ROTATING RING
========================================= */

.logo-ring {
    position: absolute;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, 0.08);

    border-top-color: #ff5a00;
    border-right-color: rgba(255, 90, 0, 0.45);

    animation: rotateLoader 1.4s linear infinite;

    box-shadow:
        0 0 20px rgba(255, 90, 0, 0.15);
}


/* =========================================
   SECOND RING
========================================= */

.logo-ring::before {
    content: "";

    position: absolute;

    inset: 8px;

    border-radius: 50%;

    border: 1px dashed rgba(255, 90, 0, 0.35);

    animation: rotateReverse 3s linear infinite;
}


/* =========================================
   ORANGE GLOW
========================================= */

.logo-glow {
    position: absolute;

    width: 105px;
    height: 105px;

    border-radius: 50%;

    background: rgba(255, 90, 0, 0.12);

    filter: blur(25px);

    animation: logoGlow 2s ease-in-out infinite;
}


/* =========================================
   LOGO IMAGE
========================================= */

.preloader-logo {
    position: relative;

    z-index: 5;

    width: 95px;
    height: auto;

    max-height: 95px;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(0 0 10px rgba(255, 90, 0, 0.15));

    animation: logoFloat 2.5s ease-in-out infinite;
}


/* =========================================
   BRAND NAME
========================================= */

.preloader-brand {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: 4px;

    color: #ffffff;

    margin-bottom: 10px;
}

.preloader-brand span {
    color: #ff5a00;

    font-size: 13px;

    letter-spacing: 3px;

    margin-left: 5px;
}


/* =========================================
   LOADING TEXT
========================================= */

.loading-text {
    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    font-weight: 400;

    letter-spacing: 1.5px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 3px;

    margin-bottom: 18px;
}


/* =========================================
   ANIMATED DOTS
========================================= */

.loading-dots {
    display: inline-flex;

    gap: 3px;

    margin-left: 3px;
}

.loading-dots i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #ff5a00;

    display: block;

    animation: loadingDot 1.4s infinite ease-in-out;
}

.loading-dots i:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots i:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots i:nth-child(3) {
    animation-delay: 0.4s;
}


/* =========================================
   PROGRESS BAR
========================================= */

.loader-progress {
    position: relative;

    width: 180px;
    height: 3px;

    overflow: hidden;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);
}


/* =========================================
   PROGRESS BAR ANIMATION
========================================= */

.loader-progress-bar {
    width: 0%;
    height: 100%;

    border-radius: 50px;

    background: linear-gradient(90deg,
            #ff3d00,
            #ff5a00,
            #ff8a00);

    box-shadow:
        0 0 10px rgba(255, 90, 0, 0.7);

    animation: loaderProgress 2s ease forwards;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes rotateLoader {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes rotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


@keyframes logoGlow {

    0%,
    100% {
        transform: scale(0.85);

        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);

        opacity: 0.9;
    }

}


@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


@keyframes loadingDot {

    0%,
    80%,
    100% {
        transform: scale(0.6);

        opacity: 0.35;
    }

    40% {
        transform: scale(1);

        opacity: 1;
    }

}


@keyframes loaderProgress {

    0% {
        width: 0%;
    }

    30% {
        width: 35%;
    }

    60% {
        width: 65%;
    }

    85% {
        width: 85%;
    }

    100% {
        width: 100%;
    }

}


@keyframes preloaderEnter {

    from {
        opacity: 0;

        transform:
            translateY(15px) scale(0.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .preloader-inner {
        padding: 20px;
    }

    .logo-loader {
        width: 130px;
        height: 130px;
    }

    .logo-ring {
        width: 125px;
        height: 125px;
    }

    .preloader-logo {
        width: 82px;
    }

    .preloader-brand {
        font-size: 21px;
        letter-spacing: 3px;
    }

    .preloader-brand span {
        font-size: 11px;
    }

    .loading-text {
        font-size: 12px;
    }

    .loader-progress {
        width: 150px;
    }

}

/* =========================================
   NAVBAR
========================================= */

.navbar {
    padding: 18px 0;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(18px);
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.92);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.navbar-brand img {
    width: 145px;
    height: auto;
}

.nav-link {
    color: #aaa !important;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    padding: 9px 18px;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    filter: invert(1);
}


/* =========================================
   HERO
========================================= */

.hero-section {
    margin-top: 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 40%, rgba(255, 90, 0, 0.1), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(255, 90, 0, 0.05), transparent 30%),
        var(--black);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 90, 0, 0.3);
    background: rgba(255, 90, 0, 0.06);
    border-radius: 50px;
    color: #ff9a63;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 90, 0, 0.1);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    50% {
        box-shadow: 0 0 0 11px rgba(255, 90, 0, 0);
    }
}

.hero-title {
    font-size: clamp(48px, 6vw, 86px);
    line-height: 0.98;
    letter-spacing: -4px;
    font-weight: 900;
    max-width: 800px;
}

.hero-title span,
.section-heading h2 span,
.growth-section h2 span,
.about-section h2 span,
.contact-section h2 span,
.cta-box h2 span {
    color: var(--orange);
}

.hero-description {
    color: var(--gray);
    max-width: 650px;
    font-size: 17px;
    line-height: 1.8;
    margin: 28px 0;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 55px;
}

.hero-stats div {
    position: relative;
}

.hero-stats div:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 45px;
    background: var(--border);
    right: -25px;
    top: 5px;
}

.hero-stats strong {
    font-size: 32px;
    font-weight: 800;
}

.hero-stats span {
    color: var(--orange);
    font-weight: 800;
    font-size: 25px;
}

.hero-stats small {
    display: block;
    color: #777;
    font-size: 11px;
    margin-top: 2px;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-orbit {
    width: 400px;
    height: 400px;
    position: relative;
}

.orbit {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 90, 0, 0.18);
    border-radius: 50%;
}

.orbit-one {
    animation: orbitRotate 18s linear infinite;
}

.orbit-two {
    inset: 45px;
    border-color: rgba(255, 255, 255, 0.08);
    animation: orbitRotateReverse 12s linear infinite;
}

@keyframes orbitRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

.center-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 80px rgba(255, 90, 0, 0.25),
        inset 0 0 30px rgba(255, 255, 255, 0.12);
}

.center-logo img {
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
}

.orbit-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101014;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: floatIcon 3s ease-in-out infinite;
}

.icon-1 {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #4285f4;
}

.icon-2 {
    right: 10px;
    top: 50%;
    color: #1877f2;
    animation-delay: .4s;
}

.icon-3 {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #a855f7;
    animation-delay: .8s;
}

.icon-4 {
    left: 10px;
    top: 50%;
    color: var(--orange);
    animation-delay: 1.2s;
}

@keyframes floatIcon {
    50% {
        margin-top: -10px;
    }
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 23, .88);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    z-index: 5;
}

.card-ads {
    left: 0;
    top: 80px;
    animation: cardFloat 4s ease-in-out infinite;
}

.card-ai {
    right: 0;
    bottom: 100px;
    animation: cardFloat 4s ease-in-out infinite reverse;
}

@keyframes cardFloat {
    50% {
        transform: translateY(-15px);
    }
}

.mini-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.mini-icon.orange {
    color: var(--orange);
    background: rgba(255, 90, 0, .1);
}

.mini-icon.purple {
    color: #b57aff;
    background: rgba(140, 82, 255, .1);
}

.floating-card small {
    display: block;
    color: #777;
    font-size: 9px;
}

.floating-card strong {
    display: block;
    font-size: 15px;
}

.growth-arrow {
    color: #4ade80;
}

.active-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    margin-left: 5px;
}


/* =========================================
   SCROLL DOWN
========================================= */

.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #555;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.section-label {
    display: inline-block;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading h2,
.growth-section h2,
.about-section h2,
.contact-section h2 {
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -2.5px;
}

.section-heading p,
.section-text {
    color: var(--gray);
    line-height: 1.8;
    max-width: 650px;
}

.section-heading.text-center p {
    margin: 15px auto 0;
}


/* =========================================
   SERVICES
========================================= */

.services-section {
    background: #09090b;
}

.service-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, #111114, #0b0b0d);
    overflow: hidden;
    transition: all .4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 90, 0, .4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .35);
}

.service-card.featured {
    border-color: rgba(255, 90, 0, .25);
}

.service-number {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #29292d;
    font-size: 50px;
    font-weight: 900;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255, 90, 0, .08);
    border: 1px solid rgba(255, 90, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 25px;
    margin-bottom: 35px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.service-card p {
    color: #85858c;
    line-height: 1.7;
    font-size: 14px;
}

.service-card a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-top: 18px;
}

.service-card a i {
    color: var(--orange);
}

.service-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--orange);
    filter: blur(100px);
    opacity: .12;
    right: -50px;
    bottom: -50px;
}


/* =========================================
   GROWTH SECTION
========================================= */

.growth-section {
    background: #050505;
}

.check-list {
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 14px;
}

.check-list i {
    color: var(--orange);
}

.ai-row {
    margin-top: 150px;
}


/* =========================================
   ADS DASHBOARD
========================================= */

.ads-dashboard {
    border-radius: 20px;
    background: #0d0d10;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
    overflow: hidden;
}

.dashboard-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header>div {
    display: flex;
    gap: 6px;
}

.dashboard-header>div span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444;
}

.dashboard-header small {
    color: #555;
}

.dashboard-content {
    padding: 25px;
}

.metric-box {
    display: inline-block;
    width: 48%;
    background: #141418;
    padding: 18px;
    border-radius: 12px;
}

.metric-box small {
    display: block;
    color: #666;
}

.metric-box strong {
    display: block;
    font-size: 28px;
    margin: 5px 0;
}

.positive {
    color: #4ade80;
    font-size: 11px;
}

.chart {
    height: 180px;
    margin-top: 25px;
    position: relative;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 100% 35px;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    left: -5%;
    bottom: 20px;
    width: 115%;
    height: 100px;
    border-top: 3px solid var(--orange);
    transform: rotate(-8deg);
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(255, 90, 0, .6));
}

.chart-point {
    position: absolute;
    width: 9px;
    height: 9px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--orange);
    animation: chartPulse 1.5s infinite;
}

.point-1 {
    left: 5%;
    bottom: 35px;
}

.point-2 {
    left: 23%;
    bottom: 60px;
}

.point-3 {
    left: 42%;
    bottom: 75px;
}

.point-4 {
    left: 60%;
    bottom: 105px;
}

.point-5 {
    left: 78%;
    bottom: 115px;
}

.point-6 {
    left: 94%;
    bottom: 145px;
}

@keyframes chartPulse {
    50% {
        transform: scale(1.5);
    }
}

.campaign-status {
    padding: 14px;
    background: #141418;
    border-radius: 10px;
    color: #777;
    font-size: 12px;
}

.campaign-status strong {
    float: right;
    color: #fff;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}


/* =========================================
   AI FLOW
========================================= */

.automation-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 35px 15px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #0d0d10;
}

.flow-node {
    min-width: 105px;
    padding: 18px 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    background: #151518;
    transition: .3s;
}

.flow-node:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
}

.flow-node i {
    display: block;
    color: var(--orange);
    font-size: 22px;
    margin-bottom: 8px;
}

.flow-node span {
    font-size: 10px;
    color: #aaa;
}

.ai-node {
    border-color: rgba(140, 82, 255, .4);
}

.ai-node i {
    color: #a66cff;
}

.flow-line {
    width: 35px;
    height: 2px;
    background: #29292d;
    position: relative;
    overflow: hidden;
}

.flow-line span {
    position: absolute;
    width: 15px;
    height: 100%;
    background: var(--orange);
    animation: flowMove 1.2s linear infinite;
}

@keyframes flowMove {
    from {
        left: -15px;
    }

    to {
        left: 100%;
    }
}


/* =========================================
   PORTFOLIO
========================================= */

.portfolio-section {
    background: #09090b;
}

.heading-flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}

.portfolio-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #101014;
    transition: .4s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 90, 0, .35);
}

.portfolio-image {
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-one {
    background:
        radial-gradient(circle at center, rgba(255, 90, 0, .2), transparent 50%),
        #131316;
}

.portfolio-two {
    background:
        linear-gradient(135deg, #19101a, #0b1018);
}

.portfolio-three {
    background:
        radial-gradient(circle, rgba(140, 82, 255, .25), transparent 55%),
        #101014;
}

.portfolio-four {
    background:
        linear-gradient(135deg, #201006, #090909);
}

.portfolio-info {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-info span {
    color: var(--orange);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-info h3 {
    font-size: 17px;
    margin-top: 6px;
}

.portfolio-info>i {
    color: var(--orange);
    font-size: 20px;
}


/* MOCK WEBSITE */

.mock-browser {
    width: 75%;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
    transform: perspective(700px) rotateX(5deg) rotateY(-5deg);
}

.browser-bar {
    height: 24px;
    background: #ddd;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 10px;
}

.browser-bar span {
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.website-mock {
    height: 180px;
    background: white;
    padding: 20px;
    color: #111;
}

.mock-logo {
    font-size: 9px;
    font-weight: 900;
}

.mock-lines {
    margin-top: 35px;
}

.mock-lines span {
    display: block;
    width: 60%;
    height: 6px;
    background: #ddd;
    margin-bottom: 8px;
}

.mock-lines span:first-child {
    width: 80%;
    background: #111;
}

.mock-button {
    margin-top: 18px;
    width: 60px;
    padding: 5px;
    background: var(--orange);
    color: #fff;
    text-align: center;
    font-size: 6px;
}


/* SOCIAL MOCK */

.social-mock {
    width: 65%;
    height: 210px;
    background: #15151a;
    border: 1px solid #29292d;
    border-radius: 14px;
    padding: 20px;
    position: relative;
}

.social-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--orange);
}

.social-content {
    margin-top: 20px;
}

.social-content div {
    height: 7px;
    background: #29292d;
    margin: 8px 0;
    border-radius: 5px;
}

.social-content div:first-child {
    width: 90%;
}

.social-content div:nth-child(2) {
    width: 70%;
}

.social-content div:last-child {
    width: 50%;
}

.social-stat {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 90, 0, .1);
    color: #ff8a50;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 9px;
}


/* AI MOCK */

.ai-mock {
    width: 200px;
    padding: 25px;
    border: 1px solid rgba(140, 82, 255, .3);
    border-radius: 16px;
    background: #15131b;
    text-align: center;
    box-shadow: 0 0 50px rgba(140, 82, 255, .1);
}

.ai-mock i {
    font-size: 35px;
    color: #a66cff;
    display: block;
    margin-bottom: 15px;
}

.ai-mock strong {
    display: block;
    font-size: 11px;
}

.ai-mock small {
    display: block;
    color: #777;
    margin-top: 7px;
}

.ai-progress {
    height: 5px;
    background: #29252f;
    border-radius: 5px;
    margin-top: 18px;
    overflow: hidden;
}

.ai-progress span {
    display: block;
    width: 75%;
    height: 100%;
    background: #9b62ff;
    animation: progress 2s ease-in-out infinite alternate;
}

@keyframes progress {
    to {
        width: 95%;
    }
}


/* VIDEO MOCK */

.video-mock {
    width: 70%;
    height: 190px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3a1605, #090909);
    border: 1px solid rgba(255, 90, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-mock i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.video-mock span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 9px;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    background: #050505;
}

.about-visual {
    height: 450px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #0c0c0f;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 100px rgba(255, 90, 0, .2);
}

.about-logo img {
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
}

.about-circle {
    position: absolute;
    border: 1px solid rgba(255, 90, 0, .12);
    border-radius: 50%;
}

.circle-a {
    width: 280px;
    height: 280px;
}

.circle-b {
    width: 500px;
    height: 500px;
}

.about-tag {
    position: absolute;
    padding: 10px 14px;
    background: #151518;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 3;
    animation: tagFloat 4s ease-in-out infinite;
}

.about-tag i {
    color: var(--orange);
}

.tag-one {
    left: 30px;
    top: 70px;
}

.tag-two {
    right: 25px;
    top: 150px;
    animation-delay: 1s;
}

.tag-three {
    left: 80px;
    bottom: 60px;
    animation-delay: 2s;
}

@keyframes tagFloat {
    50% {
        transform: translateY(-10px);
    }
}

.about-points {
    margin-top: 30px;
    display: grid;
    gap: 13px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
}

.about-points i {
    color: var(--orange);
}


/* =========================================
   PROCESS
========================================= */

.process-section {
    background: #09090b;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 70px;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: var(--border);
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 90, 0, .35);
    background: #101014;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-weight: 800;
}

.process-step h3 {
    font-size: 18px;
}

.process-step p {
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   TESTIMONIAL
========================================= */

.testimonial-section {
    background: #050505;
}

.testimonial-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #0d0d10;
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 90, 0, .25);
}

.stars {
    color: var(--orange);
    letter-spacing: 3px;
    font-size: 12px;
}

.testimonial-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
    margin: 25px 0;
}

.client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 90, 0, .12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.client strong {
    display: block;
    font-size: 12px;
}

.client small {
    display: block;
    color: #666;
    font-size: 10px;
    margin-top: 3px;
}


/* =========================================
   CTA
========================================= */

.cta-box {
    position: relative;
    text-align: center;
    padding: 100px 30px;
    overflow: hidden;
    border-radius: 25px;
    background:
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .15), transparent 35%),
        var(--orange);
}

.cta-box .section-label {
    color: rgba(0, 0, 0, .55);
}

.cta-box h2 {
    position: relative;
    z-index: 2;
    color: #080808;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 900;
    letter-spacing: -3px;
}

.cta-box h2 span {
    color: #fff;
}

.cta-box p {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 20px auto 30px;
    color: rgba(0, 0, 0, .65);
}

.cta-box .btn {
    position: relative;
    z-index: 3;
}

.decoration-one,
.decoration-two {
    position: absolute;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 50%;
}

.decoration-one {
    width: 400px;
    height: 400px;
    left: -150px;
    bottom: -200px;
}

.decoration-two {
    width: 300px;
    height: 300px;
    right: -100px;
    top: -150px;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    background: #09090b;
}

.contact-info {
    margin-top: 35px;
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    background: rgba(255, 90, 0, .08);
}

.contact-item small {
    display: block;
    color: #666;
    font-size: 10px;
}

.contact-item strong {
    font-size: 13px;
}

.contact-form {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #101014;
}

.contact-form label {
    display: block;
    color: #aaa;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    color: #fff;
    background: #09090b;
    border: 1px solid var(--border);
    padding: 13px 15px;
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    background: #09090b;
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 90, 0, .08);
}

.form-control::placeholder {
    color: #555;
}

.form-select option {
    background: #111;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 60px 0 25px;
    background: #050505;
    border-top: 1px solid var(--border);
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer p {
    max-width: 400px;
    color: #666;
    font-size: 12px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #777;
    font-size: 12px;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: .3s;
}

.social-links a:hover {
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 10px;
}


/* =========================================
   BACK TO TOP
========================================= */

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--orange);
    color: #fff;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   MOVING SERVICE CARDS
========================================= */

.moving-card {
    animation: subtleFloat 5s ease-in-out infinite;
}

.moving-card:nth-child(2) {
    animation-delay: .5s;
}

.moving-card:nth-child(3) {
    animation-delay: 1s;
}

.moving-card:nth-child(4) {
    animation-delay: 1.5s;
}

.moving-card:nth-child(5) {
    animation-delay: 2s;
}

.moving-card:nth-child(6) {
    animation-delay: 2.5s;
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.moving-card:hover {
    animation-play-state: paused;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .navbar-collapse {
        margin-top: 15px;
        padding: 20px;
        background: #101014;
        border: 1px solid var(--border);
        border-radius: 12px;
    }

    .nav-link {
        padding: 10px 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-visual {
        height: 450px;
        margin-top: 20px;
    }

    .main-orbit {
        width: 330px;
        height: 330px;
    }

    .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-line {
        display: none;
    }

    .social-links {
        justify-content: flex-start;
    }

}


@media (max-width: 767px) {

    .section-padding {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stats strong {
        font-size: 25px;
    }

    .hero-stats div:not(:last-child)::after {
        right: -13px;
    }

    .hero-visual {
        height: 400px;
    }

    .main-orbit {
        width: 280px;
        height: 280px;
    }

    .center-logo {
        width: 85px;
        height: 85px;
    }

    .center-logo span {
        font-size: 30px;
    }

    .orbit-icon {
        width: 45px;
        height: 45px;
    }

    .floating-card {
        transform: scale(.85);
    }

    .card-ads {
        left: -15px;
    }

    .card-ai {
        right: -15px;
    }

    .heading-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-image {
        height: 250px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .automation-flow {
        flex-direction: column;
    }

    .flow-line {
        width: 2px;
        height: 30px;
    }

    .flow-line span {
        width: 100%;
        height: 10px;
        animation: flowDown 1.2s linear infinite;
    }

    @keyframes flowDown {
        from {
            top: -10px;
        }

        to {
            top: 100%;
        }
    }

    .ai-row {
        margin-top: 90px;
    }

    .contact-form {
        padding: 22px;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}


@media (max-width: 480px) {

    .hero-title {
        font-size: 42px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        justify-content: space-between;
    }

    .hero-stats small {
        font-size: 9px;
    }

    .metric-box {
        width: 100%;
        margin-bottom: 10px;
    }

    .about-visual {
        height: 350px;
    }

}