:root {
    /*Login CSS*/
    /* From Uiverse.io by vinodjangid07 */

    .form_body {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f8f9fa;
        font-family: sans-serif;
    }

    .form_main {
        width: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: rgb(255, 255, 255);
        padding: 30px 30px 30px 30px;
        border-radius: 30px;
        box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.062);

    }

    .heading {
        font-size: 2.5em;
        color: #2e2e2e;
        font-weight: 700;
        margin: 15px 0 30px 0;
    }

    .inputContainer {
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .inputIcon {
        position: absolute;
        left: 10px;
    }

    .inputField {
        width: 100%;
        height: 40px;
        background-color: transparent;
        border: none;
        border-bottom: 2px solid rgb(173, 173, 173);
        border-radius: 30px;
        margin: 10px 0;
        color: black;
        font-size: .8em;
        font-weight: 500;
        box-sizing: border-box;
        padding-left: 30px;
    }

    .inputField:focus {
        outline: none;
        border-bottom: 2px solid rgb(199, 114, 255);
    }

    .inputField::placeholder {
        color: rgb(80, 80, 80);
        font-size: 1em;
        font-weight: 500;
    }

    #button {
        position: relative;
        width: 100%;
        border: 2px solid #8000ff;
        background-color: #8000ff;
        height: 40px;
        color: white;
        font-size: .8em;
        font-weight: 500;
        letter-spacing: 1px;
        border-radius: 30px;
        margin: 10px;
        cursor: pointer;
        overflow: hidden;
    }

    #button::after {
        content: "";
        position: absolute;
        background-color: rgba(255, 255, 255, 0.253);
        height: 100%;
        width: 150px;
        top: 0;
        left: -200px;
        border-bottom-right-radius: 100px;
        border-top-left-radius: 100px;
        filter: blur(10px);
        transition-duration: .5s;
    }

    #button:hover::after {
        transform: translateX(600px);
        transition-duration: .5s;
    }

    .signupContainer {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .signupContainer p {
        font-size: .9em;
        font-weight: 500;
        color: black;
    }

    .signupContainer a {
        font-size: .7em;
        font-weight: 500;
        background-color: #2e2e2e;
        color: white;
        text-decoration: none;
        padding: 8px 15px;
        border-radius: 20px;
    }




    /* Light theme palette */
    --black: #f8fafc;
    --deep: #ffffff;
    --dark: #f1f5f9;
    --card: #ffffff;
    --blue-primary: #0057ff;
    --blue-bright: #000810;
    --cyan: #00c8ff;
    --cyan-glow: rgba(0, 200, 255, 0.15);
    --blue-glow: rgba(0, 87, 255, 0.2);
    --text: #0f172a;
    --text-muted: #7a90b0;
    --border: rgba(0, 200, 255, 0.12);
    --gradient: linear-gradient(135deg, #0057ff, #00c8ff);
    --gradient-dark: linear-gradient(135deg, #003db3, #0098c8);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Orbitron',
    monospace;
    --font-body: 'Inter',
    sans-serif;
    --header-bg: rgba(255, 255, 255, 0.8);
    --header-scrolled-bg: rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ===================== NOISE OVERLAY ===================== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ===================== SCROLL PROGRESS BAR ===================== */
.scroll-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    transition: width 0.1s ease;
}

/* ===================== HEADER ===================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 120px;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

header.scrolled {
    height: 100px;
    background: var(--header-scrolled-bg);
    border-bottom-color: rgba(0, 200, 255, 0.062);
    box-shadow: 0 4px 20px rgba(0, 87, 255, 0.04);
}

.nav-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-img {
    width: auto;
    height: 140px;
    max-height: 140px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    filter: brightness(1.3) drop-shadow(0 0 12px var(--cyan));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-drawer-close,
.nav-drawer-close-wrap {
    display: none;
}

.dropdown {
    position: relative;
    list-style: none;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card);
    min-width: 200px;
    padding: 0.25rem 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    pointer-events: none;
}

.nav-links .dropdown>a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links .dropdown>a::after {
    content: '\f107';
    position: static;
    width: auto;
    height: auto;
    background: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.72rem;
    color: var(--cyan);
    transition: transform 0.3s ease;
}

.dropdown:hover>a::after {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: rgba(0, 200, 255, 0.06);
    color: var(--cyan);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    position: relative;
    z-index: 1200;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hamburger:hover {
    color: var(--cyan);
    transform: scale(1.1);
}

.nav-backdrop {
    display: none;
}

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(0, 87, 255, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 60%, rgba(0, 200, 255, 0.12) 0%, transparent 50%),
        var(--black);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 200, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 87, 255, 0.15);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(0, 200, 255, 0.1);
    bottom: 0;
    left: -100px;
    animation-delay: 4s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(0, 87, 255, 0.08);
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    padding-top: 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 2px;
    background: rgba(0, 200, 255, 0.05);
}

.hero-text .eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 1.5rem;
}

.hero-title .line-accent {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 0.9rem 2.2rem;
    background: var(--gradient);
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(0, 87, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0, 200, 255, 0.5);
}

.btn-ghost {
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 200, 255, 0.4);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ghost:hover {
    background: rgba(0, 200, 255, 0.08);
    border-color: var(--cyan);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    transform: scale(1.15);
    display: flex;
    justify-content: center;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: var(--blue-primary);
    filter: blur(80px);
    opacity: 0.3;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 0;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 87, 255, 0.15);
}

@keyframes deviceFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.screen-header {
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 6px;
    border-bottom: 1px solid var(--border);
}

.screen-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.sd1 {
    background: #ff5f57;
}

.sd2 {
    background: #febc2e;
}

.sd3 {
    background: #28c840;
}

.screen-body {
    padding: 1.5rem;
    height: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.code-line {
    height: 10px;
    border-radius: 20px;
    background: rgba(0, 200, 255, 0.1);
    animation: codePulse 3s ease-in-out infinite;
}

.code-line.blue {
    background: rgba(0, 87, 255, 0.25);
}

.code-line.cyan {
    background: rgba(0, 200, 255, 0.2);
}

.code-line.short {
    width: 60%;
}

.code-line.medium {
    width: 80%;
}

@keyframes codePulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.code-block {
    background: rgba(0, 87, 255, 0.08);
    border-left: 3px solid var(--blue-primary);
    padding: 0.75rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    position: absolute;
    background: var(--dark);
    border: 1px solid rgba(0, 200, 255, 0.25);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge i {
    color: var(--cyan);
    font-size: 1rem;
}

.badge-1 {
    top: 5%;
    right: -8%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 2s;
}

.badge-3 {
    bottom: 5%;
    right: -5%;
    animation-delay: 1s;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ===================== MARQUEE ===================== */
.marquee-section {
    padding: 1.5rem 0;
    background: rgba(0, 87, 255, 0.08);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.marquee-item i {
    color: var(--cyan);
}

.marquee-divider {
    color: rgba(0, 200, 255, 0.3);
    font-size: 0.6rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 7rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: var(--cyan);
    opacity: 0.5;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: #000000;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.8;
}

/* ===================== ABOUT ===================== */
.about-section {
    background: var(--deep);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    position: relative;
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.15), transparent 60%);
}

.about-mock {
    width: 100%;
    background: var(--card);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

.about-stat-row {
    display: flex;
    gap: 1.5rem;
}

.about-stat {
    flex: 1;
    background: rgba(0, 87, 255, 0.08);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
}

.about-stat .num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cyan);
}

.about-stat .lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-bar-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-bar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-bar-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    animation: fillBar 1.4s ease forwards paused;
}

.reveal.visible .bar-fill {
    animation-play-state: running;
}

@keyframes fillBar {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.floating-card {
    position: absolute;
    background: var(--dark);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    bottom: -20px;
    right: -20px;
    z-index: 5;
}

.floating-card i {
    font-size: 1.4rem;
    color: var(--cyan);
}

.floating-card .fc-text .num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #000000;
}

.floating-card .fc-text .sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.about-text .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.mv-item {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.mv-item:hover {
    border-color: rgba(0, 200, 255, 0.35);
    transform: translateY(-4px);
    background: rgba(0, 87, 255, 0.08);
}

.mv-item i {
    color: var(--cyan);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.mv-item h4 {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.mv-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================== SERVICES ===================== */
.services-section {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.service-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    border-color: rgba(0, 200, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 87, 255, 0.2), 0 0 0 1px rgba(0, 200, 255, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 87, 255, 0.12);
    border: 2px solid rgba(0, 87, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: var(--text);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 87, 255, 0.4);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.divider {
    width: 30px;
    height: 3px;
    background: var(--text);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--cyan);
    margin-top: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.watermark-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 6rem;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.service-card:hover .watermark-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    background: var(--text);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    text-decoration: none;
}

.service-btn:hover {
    background: var(--blue-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 87, 255, 0.3);
}

/* ===================== STATS ===================== */
.stats-section {
    background: var(--deep);
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0, 87, 255, 0.08) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-card .num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===================== PROCESS ===================== */
.process-section {
    background: var(--black);
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 2.5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.process-step {
    padding: 0 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--card);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyan);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .step-num {
    background: var(--gradient);
    color: var(--text);
    border-color: transparent;
    box-shadow: 0 0 25px rgba(0, 87, 255, 0.5);
}

.process-step h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================== PORTFOLIO ===================== */
.portfolio-section {
    background: var(--deep);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.portfolio-card {
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    position: relative;
}

.portfolio-img {
    width: 100%;
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 30, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.portfolio-overlay .tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--cyan);
    margin: 0.2rem;
}

.portfolio-info {
    padding: 1.2rem 1.5rem;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-info h4 {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}

.portfolio-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===================== WHY US ===================== */
.whyus-section {
    background: var(--black);
    padding-top: 2rem;
}

.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.service-card {
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--blue-primary);
    cursor: pointer;
}

.service-explore {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #eef1f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--blue-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.explore-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.service-card:hover .explore-arrow {
    background: var(--blue-primary);
    color: #fff;
    transform: translateX(4px);
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: rgba(0, 200, 255, 0.3);
    transform: translateX(8px);
    background: rgba(0, 87, 255, 0.06);
}

.fi-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 87, 255, 0.12);
    border: 2px solid rgba(0, 87, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fi-text h4 {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.fi-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.whyus-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
}

.orbit-container {
    width: 500px;
    height: 500px;
    position: relative;
}

@media (max-width: 768px) {
    .orbit-container {
        transform: scale(0.6);
    }
}

.center-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -75px;
    margin-left: -75px;
    z-index: 100;
    background: radial-gradient(circle at center, rgba(0, 200, 255, 0), transparent 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

img.logo {
    width: 95%;
    height: 95%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: all 0.3s ease;
    cursor: pointer;
}

img.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 183, 255, 0.5));
}

.orbit {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 480px;
    height: 480px;
    border: 1px solid rgba(0, 200, 255, 0.1);
}

.orbit-2 {
    width: 340px;
    height: 340px;
    border: 1px dashed rgba(0, 87, 255, 0.2);
}

.orbit-3 {
    width: 220px;
    height: 220px;
    border: 1px solid rgba(0, 200, 255, 0.15);
}

.tech {
    width: 56px;
    height: 56px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    font-size: 2.2rem;
    color: var(--cyan);
}

.ring-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    background: rgba(19, 118, 225, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(12, 92, 113, 0.4), 0 0 20px rgba(120, 179, 193, 0.1);
    z-index: 60;
}

.orbit-1 .ring-dot {
    transform: rotate(0deg) translateX(240px);
    transform-origin: center center;
    animation: spinAround 35s linear infinite;
}

.orbit-2 .ring-dot {
    transform: rotate(0deg) translateX(170px);
    transform-origin: center center;
    animation: spinAroundReverse 25s linear infinite;
}

.orbit-3 .ring-dot {
    transform: rotate(0deg) translateX(110px);
    transform-origin: center center;
    animation: spinAround 18s linear infinite;
}

@keyframes spinAround {
    from {
        transform: rotate(0deg) translateX(var(--r, 240px));
    }

    to {
        transform: rotate(360deg) translateX(var(--r, 240px));
    }
}

@keyframes spinAroundReverse {
    from {
        transform: rotate(360deg) translateX(var(--r, 170px));
    }

    to {
        transform: rotate(0deg) translateX(var(--r, 170px));
    }
}

.t1 {
    top: -28px;
    left: 50%;
    margin-left: -28px;
}

.t2 {
    top: 60px;
    right: -15px;
}

.t3 {
    top: 50%;
    right: -28px;
    margin-top: -28px;
}

.t4 {
    bottom: 60px;
    right: -15px;
}

.t5 {
    bottom: -28px;
    left: 50%;
    margin-left: -28px;
}

.t6 {
    top: 50%;
    left: -28px;
    margin-top: -28px;
}

.m1 {
    top: -28px;
    left: 50%;
    margin-left: -28px;
}

.m2 {
    top: 60px;
    right: -20px;
}

.m3 {
    bottom: -28px;
    left: 50%;
    margin-left: -28px;
}

.m4 {
    bottom: 60px;
    left: -20px;
}

.m5 {
    top: 50%;
    left: -28px;
    margin-top: -28px;
}

.i1 {
    top: -28px;
    left: 50%;
    margin-left: -28px;
}

.i2 {
    top: 50%;
    right: -28px;
    margin-top: -28px;
}

.i3 {
    bottom: -28px;
    left: 50%;
    margin-left: -28px;
}

.i4 {
    top: 50%;
    left: -28px;
    margin-top: -28px;
}

@keyframes rotateClockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateAnti {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes counterRotateAnti {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
    background: var(--deep);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.testi-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    color: rgba(0, 200, 255, 0.06);
    font-family: Georgia, serif;
}

.testi-card:hover {
    border-color: rgba(0, 200, 255, 0.3);
    transform: translateY(-5px);
}

.testi-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.testi-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}

.testi-author-info h5 {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.testi-author-info span {
    font-size: 0.75rem;
    color: var(--cyan);
}

/* ===================== CONTACT ===================== */
.contact-section {
    background: var(--black);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ci-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 200, 255, 0.08);
    border: 2px solid rgba(0, 200, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}

.ci-item h5 {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.ci-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.social-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.soc-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.15rem;
    transition: var(--transition);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.soc-btn i {
    color: #ffffff;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.soc-btn.facebook {
    background: #1877f2;
    color: #ffffff;
    border-color: transparent;
}

.soc-btn.twitter {
    background: #111111;
    color: #ffffff;
    border-color: transparent;
}

.soc-btn.linkedin {
    background: #0a66c2;
    color: #ffffff;
    border-color: transparent;
}

.soc-btn.instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
    color: #ffffff;
    border: none;
    overflow: hidden;
    font-size: 1.25rem;
    border-radius: 14px;
}

.soc-btn.youtube {
    background: #ff0000;
    color: #ffffff;
    border-color: transparent;
}

.soc-btn.threads {
    background: #111111;
    color: #ffffff;
    border-color: transparent;
}

.soc-btn:hover {
    transform: translateY(-3px) scale(1.04);
    opacity: 0.95;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-row.form-row--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-field input,
.form-field textarea,
.form-field select {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
    width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: rgba(0, 200, 255, 0.5);
    background: rgba(0, 200, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.08);
}

.form-field textarea {
    min-height: 130px;
    resize: none;
}

.form-field select option {
    background: var(--dark);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.btn-submit {
    padding: 1rem 2rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    background: var(--gradient);
    box-shadow: 0 0 30px rgba(0, 87, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0, 200, 255, 0.4);
}

.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 260px;
    max-width: 320px;
    padding: 0.95rem 1.1rem;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast-success {
    background: #d1fae5;
    color: #14532d;
    border: 1px solid rgba(20, 83, 45, 0.12);
}

.toast-success i {
    font-size: 1.1rem;
    color: #166534;
}

/* ===================== WHATSAPP FLOATING BUTTON ===================== */
.whatsapp-btn {
    position: fixed;
    bottom: 4rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
}

.whatsapp-label {
    position: relative;
    padding: 0.65rem 0.95rem;
    background: #fff;
    color: var(--text);
    border-radius: 4px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    animation: whatsappJump 2.0s ease-in-out infinite;
}

.whatsapp-label::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 4px 4px 14px rgba(15, 23, 42, 0.04);
}

.whatsapp-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.whatsapp-logo {
    display: block;
    line-height: 1;
    color: #fff !important;
}

.whatsapp-btn:hover .whatsapp-circle {
    transform: scale(1.08);
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.45);
}

.form-success {
    display: none;
    color: #10b981;
    font-size: 0.9rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    text-align: center;
}

/* ===================== FOOTER ===================== */
footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 280px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--cyan);
    padding-left: 4px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 0.85rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--cyan);
}

.newsletter-form button {
    padding: 0.65rem 1.1rem;
    background: var(--gradient);
    color: var(--text);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-badge {
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 0.3rem 0.75rem;
    border: 2px solid var(--border);
    border-radius: 20px;
}

/* ===================== SCROLL TOP ===================== */
@keyframes whatsappJump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===================== ANIMATIONS ===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 1rem;
}

.hero-content {
    grid-template-columns: 1fr minmax(380px, 540px);
    gap: 2.2rem;
}

.service-card,
.portfolio-card,
.mv-item,
.testi-card,
.stat-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .portfolio-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nav-wrap {
        padding: 0 1.2rem;
    }

    .hero-content,
    .about-grid,
    .whyus-grid,
    .contact-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .services-grid,
    .portfolio-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row,
    .form-row.form-row--three {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
    }

    .nav-cta .btn-nav {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        padding: 5.1rem 1rem 1.25rem;
        gap: 0.90rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 2px solid rgba(255, 255, 255, 0.45);
        box-shadow: -24px 0 60px rgba(15, 23, 42, 0.14);
        z-index: 9999;
        transition: 0.3s;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    body.nav-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(3px);
        z-index: 990;
    }

    .nav-drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0.85rem;
        right: 0.95rem;
        width: 2.4rem;
        height: 2.4rem;
        border: none;
        border-radius: 999px;
        background: transparent;
        color: #111827;
        font-size: 1.5rem;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
        cursor: pointer;
        z-index: 2;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-drawer-close-wrap {
        display: block;
        position: relative;
        height: 3rem;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.95rem 1rem;
        border-radius: 18px;
        background: rgba(241, 245, 249, 0.9);
        color: #0f172a;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .nav-links .dropdown-menu {
        display: block;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border: 1px solid var(--border);
        border-radius: 14px;
        margin-top: 0.5rem;
        background: rgba(241, 245, 249, 0.95);
    }

    .nav-links .dropdown>a::after {
        margin-left: auto;
    }

    .nav-links .dropdown-menu li a {
        padding-left: 1.1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    header {
        height: 100px;
    }

    header.scrolled {
        height: 85px;
    }

    .logo-img {
        height: 92px;
        max-height: 92px;
    }

    .footer-brand .logo-img {
        height: 104px;
        max-height: 104px;
    }

    .container,
    .nav-wrap,
    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .hero {
        min-height: auto;
        padding-top: 5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .section-sub,
    .hero-desc {
        font-size: 1rem;
    }

    .toast {
        left: 1rem;
        right: 1rem;
        min-width: 0;
        max-width: none;
    }

    .stats-grid,
    .process-steps,
    .about-stat-row {
        grid-template-columns: 1fr;
    }

    .about-stat-row,
    .mv-grid {
        display: grid;
    }

    .marquee-track {
        gap: 1.5rem;
    }

    .contact-wrap {
        padding: 2rem 1.25rem;
    }

    .whatsapp-btn {
        right: 0.75rem;
        bottom: 3.25rem;
    }

    .whatsapp-label {
        padding: 0.65rem 0.95rem;
        font-size: 0.82rem;
    }

    .whatsapp-circle {
        width: 50px;
        height: 50px;
    }

    .whyus-container,
    .whyus-card,
    .whyus-grid,
    .feature-item {
        width: 100%;
        max-width: 100%;
    }

    #services .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }

    #services .service-card {
        padding: 1.4rem 1.1rem !important;
        min-width: 0;
        width: 100%;
        overflow: hidden;
    }

    #services .service-card h3 {
        font-size: 1.15rem !important;
        line-height: 1.2 !important;
    }

    #services .service-card ul {
        font-size: 0.85rem !important;
        line-height: 1.45 !important;
        gap: 0.55rem !important;
    }

    #services .service-card .service-icon {
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 500px) {
    .logo-img {
        height: 84px;
        max-height: 84px;
    }

    .footer-brand .logo-img {
        height: 96px;
        max-height: 96px;
    }

    .nav-cta .btn-nav {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        padding: 5.1rem 1rem 1.25rem;
        gap: 0.90rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 2px solid rgba(255, 255, 255, 0.45);
        box-shadow: -24px 0 60px rgba(15, 23, 42, 0.14);
        z-index: 9999;
        transition: 0.3s;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    body.nav-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(3px);
        z-index: 990;
    }

    .nav-drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0.85rem;
        right: 0.95rem;
        width: 2.4rem;
        height: 2.4rem;
        border: none;
        border-radius: 999px;
        background: transparent;
        color: #111827;
        font-size: 1.5rem;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
        cursor: pointer;
        z-index: 2;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-drawer-close-wrap {
        display: block;
        position: relative;
        height: 3rem;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.95rem 1rem;
        border-radius: 18px;
        background: rgba(241, 245, 249, 0.9);
        color: #0f172a;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .nav-links .dropdown-menu {
        display: block;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border: 1px solid var(--border);
        border-radius: 14px;
        margin-top: 0.5rem;
        background: rgba(241, 245, 249, 0.95);
    }

    .nav-links .dropdown>a::after {
        margin-left: auto;
    }

    .nav-links .dropdown-menu li a {
        padding-left: 1.1rem;
        font-size: 0.9rem;
    }

    .stats-grid,
    .process-steps,
    .about-stat-row {
        grid-template-columns: 1fr;
    }

    .about-stat-row,
    .mv-grid {
        display: grid;
    }

    .marquee-track {
        gap: 1.5rem;
    }

    .contact-wrap {
        padding: 2rem 1.25rem;
    }

    .whatsapp-btn {
        right: 0.75rem;
        bottom: 3.25rem;
    }

    .whatsapp-label {
        padding: 0.65rem 0.95rem;
        font-size: 0.82rem;
    }

    .whatsapp-circle {
        width: 50px;
        height: 50px;
    }

    .whyus-container,
    .whyus-card,
    .whyus-grid,
    .feature-item {
        width: 100%;
        max-width: 100%;
    }

    #services .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }

    #services .service-card {
        padding: 1.15rem 1rem !important;
        border-radius: 16px;
    }

    #services .service-card h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0.65rem;
    }

    #services .service-card ul {
        gap: 0.5rem !important;
        font-size: 0.84rem !important;
        line-height: 1.35 !important;
    }

    #services .service-card .service-icon {
        margin-bottom: 0.35rem;
        font-size: 1.05rem;
    }
}

@media (max-width: 500px) {
    .logo-img {
        height: 84px;
        max-height: 84px;
    }

    .footer-brand .logo-img {
        height: 96px;
        max-height: 96px;
    }

    .btn-primary,
    .btn-ghost,
    .btn-nav,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .hero-btns,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-row {
        flex-wrap: wrap;
    }
}

/* ===================== TOAST ===================== */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;

    min-width: 320px;
    max-width: 400px;

    background: #fff;
    color: #111827;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    padding: 14px 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.04);

    z-index: 9999;

    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    border-left: 4px solid #22c55e;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast i {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 14px;

    background: #dcfce7;
    color: #16a34a;

    flex-shrink: 0;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-title {
    font-size: 14px;
    font-weight: 600;
}

.toast-message {
    font-size: 13px;
    color: #6b7280;

}

/* --- Accordion Dropdown Functionality --- */
/* Disable hover triggers */
.dropdown:hover>a::after {
    transform: none !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(8px) !important;
    pointer-events: none !important;
}

/* Enable expanded class triggers */
.dropdown.expanded>a::after {
    transform: rotate(180deg) !important;
}

.dropdown.expanded .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* Mobile Accordion Overrides */
@media screen and (max-width: 991px) {
    .nav-links .dropdown-menu {
        max-height: 0;
        margin-top: 0 !important;
        border: none !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, margin-top 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.4s ease-in-out !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .nav-links .dropdown.expanded .dropdown-menu {
        max-height: 400px;
        margin-top: 0.5rem !important;
        border: 1px solid var(--border) !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* --- User Requested Dropdown Container Functionality --- */
.dropdown-btn {
    padding: 0;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    background: none;
    width: auto;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.dropdown-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card);
    min-width: 240px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    padding: 0.5rem 0;
    z-index: 100;
}

.dropdown-container a {
    display: block;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-container a:hover {
    background: rgba(0, 200, 255, 0.06);
    color: var(--cyan);
}

.dropdown-btn.active .arrow-icon {
    transform: rotate(180deg);
}

@media screen and (max-width: 991px) {
    .dropdown-container {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        background: transparent;
        margin-top: 0.5rem;
    }
}

/* --- Mobile Accordion Overrides (Appended) --- */
@media screen and (max-width: 991px) {

    /* Rotate the original CSS ::after arrow when accordion is expanded */
    .nav-links .dropdown.expanded>a::after {
        transform: rotate(180deg) !important;
    }

    /* Accordion behavior for the submenu */
    .nav-links .dropdown-menu {
        display: block !important;
        position: static !important;
        overflow: hidden !important;
        max-height: 0 !important;
        margin-top: 0 !important;
        border: none !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, margin 0.4s ease-in-out, opacity 0.4s ease-in-out !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .nav-links .dropdown.expanded .dropdown-menu {
        max-height: 400px !important;
        margin-top: 0.5rem !important;
        border: 1px solid var(--border) !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}