    /**
* Template : cinerva VFX Studio
* Powered by : jtechnologies
* Author :Jilani Shaik
*/
    :root {
        --bg: #050505;
        --surface: #101010;
        --surface-2: #171717;

        --border: #2a2a2a;

        --text: #ffffff;
        --muted: #b4b4b4;
        --muted-2: #8a8a8a;

        --primary: #4E92CD;
        --secondary: #7b5cff;
        --cyan: #58c7ff;

        --container: 1280px;
        --pill: 999px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--bg);
        color: var(--text);
        overflow-x: hidden;
        line-height: 1.5;
    }

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background:
            radial-gradient(circle at top right,
                rgba(78, 146, 205, .08),
                transparent 30%),
            radial-gradient(circle at bottom left,
                rgba(123, 92, 255, .08),
                transparent 30%);
        pointer-events: none;
        z-index: -2;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    .container {
        width: min(92%, var(--container));
        margin: auto;
    }

    .navbar {
        padding: 0 20px;
    }

    /* =========================
    CURSOR GLOW
    ========================= */

    .cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgb(1 137 255 / 14%), rgb(52 7 255 / 12%), transparent 70%);
    transform: translate(-50%, -50%);
    /* filter: blur(70px); */
    mix-blend-mode: screen;
    }

    /* =========================
    NAVBAR
    ========================= */

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        /*backdrop-filter: blur(18px);*/
        /* background: rgba(5, 5, 5, .65); */
        /* border-bottom: 1px solid rgba(255, 255, 255, .05); */
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
    }

    .logo img,
    .logo svg {
        width: 280px;
        height: auto;
    }

    .logo {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: -1px;
    }

    .logo span {
        color: var(--primary);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 34px;
    }

    .nav-links a {
        font-size: 14px;
        color: var(--muted);
        transition: .3s;
    }

    .nav-links a:hover {
        color: #fff;
    }

    /* =========================
    BUTTONS
    ========================= */

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 30px;
        border-radius: var(--pill);
        font-size: 14px;
        font-weight: 500;
        transition: .35s;
        border: 1px solid transparent;
    }

    .btn-primary {
        background: #008eff;
        color: #fff;
    }

    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow:
            0 20px 50px rgba(78, 146, 205, .25);
    }

    .btn-secondary {
        border: 1px solid rgba(255, 255, 255, .12);
        color: #fff;
        background: rgba(255, 255, 255, .03);
    }

    .btn-secondary:hover {
        border-color: var(--primary);
    }

    /* =========================
    CINEMATIC HERO
    ========================= */

    .hero {
        min-height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background:
            radial-gradient(circle at center,
                rgba(78, 146, 205, .08),
                transparent 40%),
            #050505;
    }

    #hero-canvas {
        position: absolute;
        inset: 0;
        width: 100%!important;
        height: 100%!important;
        min-height: 100svh!important;
        z-index: 1;
    }

    /* overlays */

    .hero-gradient {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top,
                rgba(78, 146, 205, .12),
                transparent 40%);
        z-index: 2;
    }

    .hero-lines {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image:
            linear-gradient(to bottom,
                transparent,
                black 20%,
                black 80%,
                transparent);
        z-index: 2;
    }

    /* .hero-noise {
        position: absolute;
        inset: 0;
        opacity: .03;
        background-image: url("../img/gggrain.svg");
        z-index: 2;
    } */

    .cinematic-content {
        position: relative;
        z-index: 5;
        text-align: center;
        max-width: 800px;
        padding-top: 120px;
    }

    .eyebrow {
        display: inline-block;
        color: var(--primary);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: 'JetBrains Mono', monospace;
        margin-bottom: 30px;
    }

    .cinematic-content h1 {
        font-size: clamp(64px, 9vw, 80px);

        line-height: 1.2;

        letter-spacing: -6px;

        font-weight: 400;

        margin-bottom: 30px;

        background:
            linear-gradient(to bottom,
                #ffffff,
                #a8c7e8);

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .cinematic-content p {
        max-width: 760px;

        margin: 0 auto 50px;

        color: #b4b4b4;

        font-size: 20px;

        line-height: 1.7;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    /* =========================
    ORBS
    ========================= */

    .orb {
        position: absolute;

        border-radius: 50%;

        filter: blur(120px);

        opacity: .4;

        z-index: 1;
    }

    .orb-1 {
        width: 500px;
        height: 500px;

        background: #4E92CD;

        top: -100px;
        left: -100px;

        animation: moveOrb1 12s infinite alternate ease-in-out;
    }

    .orb-2 {
        width: 400px;
        height: 400px;

        background: #7b5cff;

        bottom: -100px;
        right: -50px;

        animation: moveOrb2 14s infinite alternate ease-in-out;
    }

    .orb-3 {
        width: 300px;
        height: 300px;

        background: #58c7ff;

        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        animation: pulseOrb 8s infinite ease-in-out;
    }

    @keyframes moveOrb1 {
        0% {
            transform: translate(0, 0);
        }

        100% {
            transform: translate(80px, 60px);
        }
    }

    @keyframes moveOrb2 {
        0% {
            transform: translate(0, 0);
        }

        100% {
            transform: translate(-60px, -40px);
        }
    }

    @keyframes pulseOrb {
        0% {
            transform: translate(-50%, -50%) scale(1);
        }

        50% {
            transform: translate(-50%, -50%) scale(1.2);
        }

        100% {
            transform: translate(-50%, -50%) scale(1);
        }
    }

    /* =========================
    FLOATING CARDS
    ========================= */

    .cinematic-card {
        position: absolute;

        z-index: 6;

        padding: 16px 22px;

        border-radius: 18px;

        backdrop-filter: blur(20px);

        background: rgba(255, 255, 255, .04);

        border: 1px solid rgba(255, 255, 255, .08);

        color: #fff;

        font-size: 14px;

        animation: floatCard 6s infinite ease-in-out;
    }

    .cinematic-card-1 {
        top: 25%;
        left: 8%;
    }

    .cinematic-card-2 {
        top: 35%;
        right: 10%;
        animation-delay: 1s;
    }

    .cinematic-card-3 {
        bottom: 18%;
        left: 18%;
        animation-delay: 2s;
    }

    @keyframes floatCard {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-14px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    /* =========================
    SECTIONS
    ========================= */

    section.hero {
        padding: 0 !important;
        position: relative;
    }

    section {
        padding: 120px 0;
        position: relative;
    }

    .section-heading {
        /* max-width: 760px; */
        margin-bottom: 70px;
    }

    .section-heading span {
        color: var(--primary);

        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;

        font-family: 'JetBrains Mono', monospace;
    }

    .section-heading h2 {
        font-size: clamp(40px, 5vw, 68px);

        line-height: 1.05;

        letter-spacing: -3px;

        font-weight: 400;

        margin: 18px 0 22px;
    }

    .section-heading p {
        color: var(--muted);
        font-size: 18px;
    }

    /* =========================
    SERVICES
    ========================= */

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .service-card {
        position: relative;

        background: rgba(255, 255, 255, .02);

        border: 1px solid var(--border);

        border-radius: 28px;

        padding: 34px;

        overflow: hidden;

        transition: .4s;
    }

    .service-card::before {
        content: "";

        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 3px;

        background:
            linear-gradient(90deg,
                #4E92CD,
                #8f5cff,
                #58c7ff);
    }

    .service-card:hover {
        transform: translateY(-8px);

        border-color: rgba(78, 146, 205, .3);
    }

    .service-icon {
        width: 60px;
        height: 60px;

        border-radius: 20px;

        background: rgba(78, 146, 205, .08);

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 24px;

        color: var(--primary);

        margin-bottom: 24px;
    }

    .service-card h3 {
        font-size: 26px;
        font-weight: 400;
        margin-bottom: 16px;
    }

    .service-card p {
        color: var(--muted);
        font-size: 15px;
    }

    /* =========================
    SHOWCASE
    ========================= */

    .showcase {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        /*background: #0c0c0c;*/
    }

    .showcase-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .showcase-card {
        border: 1px solid var(--border);

        border-radius: 32px;

        overflow: hidden;

        /*background: #101010;*/
    }

    .showcase-image {
        /*height: 220px;*/

        background:
            linear-gradient(135deg,
                rgba(78, 146, 205, .28),
                rgba(124, 92, 255, .14),
                rgba(88, 199, 255, .10));

        position: relative;
        overflow: hidden; 
    }

    .showcase-image::before {
        content: "";

        position: absolute;
        inset: 0;

        background-image:
            linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);

        background-size: 40px 40px;
    }
    .showcase-image img{
        width: 100%;
    }
    .showcase-content {
        padding: 34px;
    }

    .showcase-content h3 {
        font-size: 32px;
        font-weight: 400;
        margin-bottom: 16px;
    }

    .showcase-content p {
        color: var(--muted);
    }
 

    /* =========================
    STATS
    ========================= */

    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .stat {
        /*background: #101010;*/

        border: 1px solid var(--border);

        border-radius: 26px;

        padding: 40px;
    }

    .stat h3 {
        font-size: 56px;
        font-weight: 400;
        color: var(--primary);
        margin-bottom: 12px;
    }

    .stat p {
        color: var(--muted);
    }

    /* =========================
    FOOTER
    ========================= */

    footer {
        border-top: 1px solid var(--border);
        padding: 50px 0;
    }

    .footer-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }

    .footer-text {
        color: var(--muted-2);
        font-size: 14px;
    }

    .footer-links {
        display: flex;
        gap: 24px;
    }

    .footer-links a {
        color: var(--muted);
        transition: .3s;
    }

    .footer-links a:hover {
        color: var(--primary);
    }

    /* =========================
    SCROLL TOP
    ========================= */

    #scrollTopBtn {
        position: fixed;

        right: 30px;
        bottom: 30px;

        width: 56px;
        height: 56px;

        border: none;

        border-radius: 50%;

        background:#2196f3;

        color: #fff;

        font-size: 22px;

        cursor: pointer;

        z-index: 9999;

        opacity: 0;
        visibility: hidden;

        transform: translateY(20px);

        transition: .35s ease;
    }

    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* =========================
    RESPONSIVE
    ========================= */

    @media(max-width:1100px) {

        .services-grid,
        .showcase-grid,
        .stats {
            grid-template-columns: 1fr;
        }

    }

    @media(max-width:768px) {

        .nav-links {
            display: none;
        }

        .cinematic-content h1 {
            font-size: clamp(52px, 14vw, 82px);
            letter-spacing: -3px;
        }

        .cinematic-content p {
            font-size: 16px;
        }

        .cinematic-card {
            display: none;
        }

        .hero-lines {
            background-size: 40px 40px;
        }

        .hero-actions {
            flex-direction: column;
        }

        .btn {
            width: 100%;
        }

    }

 @media(max-width:1024px) {
  .logo img, .logo svg {
    width: 220px; 
  }
     
 }
 
 @media(min-width:1025px) and (max-width:1280px) {
  .logo img, .logo svg {
    width: 240px; 
  }
     
 }
    .pr-2 {
        padding-right: 0.75rem;
    }



    /* Services */
    .services-hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(0,0,0,.7),
    rgba(0,0,0,.8)),
    url('../img/services/services-bg.jpg');
    background-size:cover;
    background-position:center;
}

.service-box{
    background:#071827;
    padding:35px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.service-box:hover{
    transform:translateY(-10px);
    border-color:#4E92CD;
}

.service-list{
    list-style:none;
    padding:0;
}

.service-list li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.workflow-step span{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    background:#003658;
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.feature-box{
    background:#071827;
    padding:30px;
    border-radius:20px;
    height:100%;
}

.cta-section{
    background:linear-gradient(135deg,#003658,#0A5D91);
}

.navbar {
    /*position: relative;*/
    width: 100%;
    z-index: 999;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    width: 30px;
    height: 24px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
}

/* Mobile */
@media (max-width: 991px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #001e2d;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 16px;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.navbar.scrolled{
        backdrop-filter: blur(18px);
     background: rgba(5, 5, 5, .65); 
     border-bottom: 1px solid rgba(255, 255, 255, .05);
}