html {
    scroll-behavior: smooth;
}

:root {
    --nav-text: #ffffff;
    --nav-muted: rgba(255, 255, 255, 0.7);
    --nav-accent: #00e5ff;
    --nav-bg-glass: rgba(0, 0, 0, 0.35);
}


body {
    color: white !important;
    font-family: 'Supreme', sans-serif;
}

h1 {
    font-family: 'Clash Display', sans-serif;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

/* CONTENT */
.glass-box {
    background: transparent;
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: auto;
    margin: auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
}

/* BUTTON */
.btn-custom {
    background: #ff4d5a;
    border: none;
    border-radius: 30px;
}

.btn-custom:hover {
    background: #ff1e3c;
}

/* SCROLL INDICATOR */
.scroll-down {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/* MOBILE FALLBACK */
@media (max-width: 768px) {
    .bg-video {
        display: none;
    }

    .hero .glass-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;

    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* ==========================
       NAVBAR BASE
    ========================== */
.app-navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.app-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
}

.app-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--nav-text);
    text-decoration: none;
    font-family: 'Clash Display', sans-serif;

}

.app-brand:hover {
    color: var(--nav-text);
}

/* ==========================
       NAV ITEMS
    ========================== */
.app-nav {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.app-nav a {
    color: var(--nav-muted);
    text-decoration: none;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    font-family: 'Supreme', sans-serif;
}

.app-nav a i {
    font-size: 18px;
    display: none;
}

.app-nav a:hover {
    color: var(--nav-text);
}

.app-nav a.active {
    color: var(--nav-text);
}

.app-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--nav-accent);
}

/* ==========================
       MOBILE BOTTOM TRANSPARENT NAV
    ========================== */
@media (max-width: 768px) {
    .app-navbar {
        position: fixed;
        bottom: 0;
        top: auto;
        background: var(--nav-bg-glass);
        backdrop-filter: blur(10px);
    }

    .app-navbar-inner {
        padding: 10px 0;
        justify-content: center;
    }

    .app-brand {
        display: none;
    }

    .app-nav {
        width: 100%;
        justify-content: space-around;
        gap: 0;
    }

    .app-nav a {
        flex-direction: column;
        font-size: 12px;
    }

    .app-nav a i {
        font-size: 20px;
        display: block;
    }

    .app-nav a.active::after {
        display: none;
    }
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    z-index: 9999;
}

.bg-video-global {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -3;
    color: white;
}

.contact-section {
    background: #050505;
    color: #fff;
    padding: 100px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Supreme', sans-serif;

}

.contact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-sub {
    opacity: 0.6;
    max-width: 500px;
    margin: auto;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.footer {
    position: relative;
    background: #000;
    color: #fff;
    padding: 70px 20px 30px;
    overflow: hidden;
    font-family: 'Supreme', sans-serif;
    text-align: center;
}

/* Glow Background */
.footer-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    top: -100px;
    left: -100px;
    filter: blur(80px);
}

/* Container */
.footer-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 2;
}

/* BRAND */
.footer-brand h2 {
    font-size: 26px;
    letter-spacing: 1px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
}

.footer-brand h2 span {
    color: #888;
}

.footer-brand p {
    color: #aaa;
    font-size: 15px;
    margin: 10px 0 20px;
}

/* CTA Button */
.footer-cta {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #fff;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.footer-cta:hover {
    background: #fff;
    color: #000;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}

.footer-links a {
    text-decoration: none;
    color: #bbb;
    font-size: 16px;
    position: relative;
    transition: 0.3s;
}

.footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background: #fff;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #888;
    font-size: 22px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #111;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* DESKTOP */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }
}























/* From Uiverse.io by doniaskima */
.btn-17,
.btn-17 *,
.btn-17 :after,
.btn-17 :before,
.btn-17:after,
.btn-17:before {
    border: 0 solid;
    box-sizing: border-box;
    
}

.btn-17 {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    background-color: #000;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
        Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 100%;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
    -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
    padding: 0;
    text-transform: uppercase;
}

.btn-17:disabled {
    cursor: default;
}

.btn-17:-moz-focusring {
    outline: auto;
}

.btn-17 svg {
    display: block;
    vertical-align: middle;
}

.btn-17 [hidden] {
    display: none;
}

.btn-17 {
    border-radius: 99rem;
    border-width: 2px;
    padding: 0.8rem 3rem;
    z-index: 0;
}

.btn-17,
.btn-17 .text-container {
    overflow: hidden;
    position: relative;
}

.btn-17 .text-container {
    display: block;
    mix-blend-mode: difference;
}

.btn-17 .text {
    display: block;
    position: relative;

}

.btn-17:hover .text {
    -webkit-animation: move-up-alternate 0.3s forwards;
    animation: move-up-alternate 0.3s forwards;
}

@-webkit-keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

.btn-17:after,
.btn-17:before {
    --skew: 0.2;
    background: #fff;
    content: "";
    display: block;
    height: 102%;
    left: calc(-50% - 50% * var(--skew));
    pointer-events: none;
    position: absolute;
    top: -104%;
    transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
    transition: transform 0.2s ease;
    width: 100%;
}

.btn-17:after {
    --progress: 0%;
    left: calc(50% + 50% * var(--skew));
    top: 102%;
    z-index: -1;
}

.btn-17:hover:before {
    --progress: 100%;
}

.btn-17:hover:after {
    --progress: -102%;
}

































/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    color: white !important;
    font-family: 'Supreme', sans-serif;
    overflow: hidden;
}

/* FLOATING ORBS */
.floating-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: #fff;
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: #888;
    bottom: 10%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* TEXT */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Clash Display', sans-serif;

}

.gradient-text {
    background: linear-gradient(90deg, #fff, #777, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    0% {
        background-position: -200px;
    }

    100% {
        background-position: 200px;
    }
}

.hero-subtitle {
    color: #bbb;
    max-width: 600px;
    margin: 20px auto;
}

/* BUTTONS */
.btn-mains {
    background: #fff;
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-mains:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-outline-light {
    border-radius: 30px;
    padding: 12px 28px;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* ✨ FIXED MOUSE GLOW */
.mouse-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;
    z-index: 0;
    position: absolute;
    width: 250px;
    height: 250px;
    pointer-events: none;

    /* IMPORTANT: center exactly on cursor */
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

/* KEEP CONTENT ABOVE GLOW */
.hero-content {
    position: relative;
    z-index: 2;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .hero-title {
        font-size: 2.8rem !important;
    }
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 30px;
}




/* From Uiverse.io by doniaskima */
.btn-96,
.btn-96 *,
.btn-96 :after,
.btn-96 :before,
.btn-96:after,
.btn-96:before {
    border: 0 solid;
    box-sizing: border-box;
    border-radius: 20px;

}

.btn-96 {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    background-color: #000;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
        Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 100%;
    line-height: 1.5;
    margin: 0;
    -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
    padding: 0;
}

.btn-96:disabled {
    cursor: default;
}

.btn-96:-moz-focusring {
    outline: auto;
}

.btn-96 svg {
    display: block;
    vertical-align: middle;
}

.btn-96 [hidden] {
    display: none;
}

.btn-96 {
    box-sizing: border-box;
    display: block;
    font-weight: 900;
    -webkit-mask-image: none;
    padding: 2rem 5rem;
    perspective: 800px;
    position: relative;
    text-transform: uppercase;
    transform-style: preserve-3d;
}

.btn-96 span {
    background: #fff;
    color: #000;
    display: grid;
    inset: 0;
    place-items: center;
    position: absolute;
    transform: rotateX(0deg);
    transform-origin: top center;
    transition: 0.2s;
}

.btn-96:hover span {
    transform: rotateX(35deg);
}

.btn-96:after,
.btn-96:before {
    background: #a1a1a1;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: rotateX(0deg);
    width: 100%;
    z-index: -1;
}

.btn-96:after {
    background: #ccc;
    width: 0;
}

.btn-96:hover:after {
    -webkit-animation: progress-bar 1.2s;
    animation: progress-bar 1.2s;
}

@-webkit-keyframes progress-bar {
    0% {
        opacity: 1;
        width: 0;
    }

    10% {
        opacity: 1;
        width: 15%;
    }

    25% {
        opacity: 1;
        width: 25%;
    }

    40% {
        opacity: 1;
        width: 35%;
    }

    55% {
        opacity: 1;
        width: 75%;
    }

    60% {
        opacity: 1;
        width: 100%;
    }

    to {
        opacity: 0;
        width: 100%;
    }
}

@keyframes progress-bar {
    0% {
        opacity: 1;
        width: 0;
    }

    10% {
        opacity: 1;
        width: 15%;
    }

    25% {
        opacity: 1;
        width: 25%;
    }

    40% {
        opacity: 1;
        width: 35%;
    }

    55% {
        opacity: 1;
        width: 75%;
    }

    60% {
        opacity: 1;
        width: 100%;
    }

    to {
        opacity: 0;
        width: 100%;
    }
}


























/* SECTION */
.pricing-section {
    position: relative;
    font-family: 'Supreme', sans-serif;
}

/* HEADING */
.pricing-title {
    font-size: 2.6rem;
    font-weight: 700;
    font-family: 'Clash Display', sans-serif;
}

.pricing-subtitle {
    color: #aaa;
}

/* CARD */
.pricing-card {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* REMOVE SCALE → KEEP SYMMETRY */
.featured {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

/* FIXED BADGE */
.badge-top {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #000;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* TEXT */
.plan-desc {
    color: #bbb;
    font-size: 14px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.duration {
    color: #aaa;
    font-size: 13px;
}

/* LIST */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

/* HOVER */
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.08);
}

/* BUTTON */
.btn-main {
    background: #fff;
    color: #000;
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
}

.btn-main:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* MOBILE */
@media(max-width:768px) {
    .pricing-title {
        font-size: 2rem;
    }
}

/* DIVIDER (connects visually, not separates harshly) */
.pricing-divider {
    width: 100%;
    height: 1px;
    margin: 40px 0 20px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
}

/* TITLE */
.addons-title {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Clash Display', sans-serif;
}

.addons-subtitle {
    font-size: 15px;
    color: #aaa;
}

/* INLINE CARD (MATCHES PRICING STYLE) */
.addon-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 16px;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.116);
    border: 1px solid rgba(255, 255, 255, 0.021);

    font-size: 13px;
    transition: 0.25s;
}

/* PRICE */
.addon-inline .price {
    color: #fff;
    font-weight: 500;
}

/* HOVER */
.addon-inline:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* HIGHLIGHT */
.addon-inline.highlight {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

/* NOTE */
.addons-note p {
    font-size: 15px;
    color: #888;
}

.addons-min {
    font-size: 1.1rem;
}

































/* SECTION */
.services-section {
    position: relative;
    overflow: hidden;
}

/* GLASS WRAPPER */
.services-wrapper {
    background: rgba(255, 255, 255, 0.034);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 60px 30px;
    position: relative;
    z-index: 2;
    font-family: 'Supreme', sans-serif;
}

/* HEADING */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Clash Display', sans-serif;
}

.section-subtitle {
    color: #b3b1b1;
    max-width: 600px;
    margin: auto;
}

/* STATS */
.stats h3 {
    font-size: 2rem;
    font-weight: 700;
}

.stats p {
    color: #aaa;
    font-size: 14px;
}

/* CARD */
.service-card {
    background: rgba(255, 255, 255, 0.089);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 18px;
    height: 100%;
    transition: 0.4s;
    position: relative;
}

/* FEATURED */
.featured {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

/* BADGE */
.badge {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 11px;
    padding: 5px 10px;
    background: #fff;
    color: #000;
    border-radius: 20px;
}

/* TEXT */
.service-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    color: #bbb;
    font-size: 14px;
}

/* LIST */
.service-card ul {
    padding-left: 0;
    list-style: none;
    margin-top: 10px;
}

.service-card li {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 6px;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.08);
}

/* BUTTON */
.btn-main {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-main:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* SPOTLIGHT */
.spotlight {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

/* RESPONSIVE */
@media(max-width:768px) {
    .featured {
        transform: scale(1);
    }

    .section-title {
        font-size: 2rem;
    }
}


/* From Uiverse.io by adamgiebl */
.btn-10 {
    display: flex;
    align-items: center;
    font-family: inherit;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    padding: 0.8em 1.3em 0.8em 0.9em;
    color: white;
    background: #ad5389;
    background: linear-gradient(to right, #070614, #131127, #10101b);
    border: 1px solid rgb(49, 49, 49);
    letter-spacing: 0.05em;
    border-radius: 16px;

}

.btn-10 svg {
    margin-right: 3px;
    transform: rotate(30deg);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-10 span {
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-10:hover svg {
    transform: translateX(5px) rotate(90deg);
}

.btn-10:hover span {
    transform: translateX(7px);
}