/*ASIATRIX 
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Root Variables
02. General css
03. Header css
04. Footer
05. Hero Section
06. Services Cards

-------------------------------------------------------------------------------------- */

/* =========================
   01. ROOT VARIABLES
========================= */
:root {

    /* COLORS */
    --color-primary: #ffffff;
    --color-secondary: #aaaaaa;
    --color-black: #000000;
    --color-dark: #111111;
    --color-border: #222222;

    /* BRAND (optional future use) */
    --color-accent: #2563eb;
    --color-accent-gold: #facc15;

    /* TEXT */
    --text-color: var(--color-primary);
    --text-muted: var(--color-secondary);

    /* FONT */
    --font-primary: 'Hanken Grotesk', sans-serif;

    /* FONT SIZES */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 18px;
    --font-xl: 24px;
    --font-xxl: 40px;

    /* SPACING */
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 80px;

    /* BORDER RADIUS */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* TRANSITION */
    --transition: all 0.3s ease;

    /* CONTAINER */
    --container-width: 1200px;

}
html, body {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*=========================
   02. General css
========================= */
body {
    font-family: var(--font-primary);
    font-size: var(--font-md);
    color: var(--text-color);
    background: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* IMAGES */
img {
    max-width: 100%;
    display: block;
}

/* LINKS */
a {
    text-decoration: none;
    color: inherit;
}

/* LIST */
ul {
    list-style: none;
}

/* CONTAINER */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* FLEX HELPERS */
.flex {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BUTTON (GLOBAL STYLE) */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: var(--color-primary);
    color: var(--color-black);
    font-size: var(--font-sm);
    transition: var(--transition);
}

.btn:hover {
    opacity: 0.8;
}

/* SECTION SPACING */
.section {
    padding: var(--space-xl) 0;
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/************************************/
/****        03. HEADER CSS      ****/
/************************************/

/* BODY */
body {
    overflow-x: hidden;
}

/* HEADER */
.header {
    background: #000;
    color: #fff;
    position: relative;
    z-index: 1000;
    top: 0;
    left: 0;
}

/* FORCE FIXED HEADER (ALL DEVICES) */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999;
}
/* SAME SPACING SYSTEM */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 40px;
}



/* MENU */
.menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.menu-item {
    font-weight: 500;
}

/* LINKS */
.menu-link,
.menu-item a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: 0.3s;
}

.menu-link:hover,
.menu-item a:hover {
    color: #aaa;
}

/* UNDERLINE */
.menu-item a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #aaa;
    transition: 0.3s;
}

.menu-item a:hover::after {
    width: 100%;
}

/*=========================
    MEGA MENU 
========================= */

.mega-parent {
    position: static;
}

/* FULL WIDTH BACKGROUND */
.mega-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;

    background: #111;
    padding: 60px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.4s ease;

    z-index: 999;
}

/* SHOW */
.dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 🔥 SAME WIDTH AS HEADER */
.mega-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* SAME as header */
}

/* TITLE */
.mega-header {
    margin-bottom: 40px;
}

.mega-title {
    font-size: 28px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* UNDERLINE */
.mega-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mega-title:hover::after {
    width: 100%;
}

/* ARROW */
.arrow {
    font-size: 24px;
    transition: 0.3s;
}

.mega-title:hover .arrow {
    transform: translateX(6px);
}

/* GRID */
.mega-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px; /* more premium spacing */
}

/* COLUMN */
.mega-col h4 {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.mega-col ul li {
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.mega-col ul li:hover {
    color: #aaa;
}

/* =========================
   COUNTRY DROPDOWN
========================= */

.country {
    position: relative;
}

.country .dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;

    background: #111;
    min-width: 160px;
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
}

.country.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li:hover {
    background: #222;
}

/* =========================
   ICONS
========================= */

.icon-svg {
    width: 20px;
    height: 20px;
    color: #fff;
    transition: 0.3s;
}

.chevron-svg {
    width: 14px;
    height: 14px;
    transition: 0.3s;
}

.icon:hover .icon-svg,
.country:hover .icon-svg,
.menu-item:hover .chevron-svg {
    color: #aaa;
}

.dropdown.active .chevron-svg {
    transform: rotate(180deg);
}

/* RIGHT */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.country-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================
   GRADIENT BRAND TOUCH
========================= */

:root {
    --gradient-main: linear-gradient(90deg, #2563eb, #9333ea);
}

/* =========================
   OVERLAY BACKGROUND
========================= */

.mega-overlay {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 998;
}

/* SHOW OVERLAY */
.dropdown.active ~ .mega-overlay {
    opacity: 1;
    visibility: visible;
}

/* =========================
   STAGGER ANIMATION
========================= */

.mega-col {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

/* stagger delays */
.dropdown.active .mega-col:nth-child(1) { transition-delay: 0.1s; }
.dropdown.active .mega-col:nth-child(2) { transition-delay: 0.2s; }
.dropdown.active .mega-col:nth-child(3) { transition-delay: 0.3s; }
.dropdown.active .mega-col:nth-child(4) { transition-delay: 0.4s; }

.dropdown.active .mega-col {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
 TITLE PREMIUM EFFECT
========================= */

.mega-title {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* UNDERLINE GRADIENT */
.mega-title::after {
    background: var(--gradient-main);
}

/* ARROW GLOW */
.arrow {
    color: #9333ea;
}

.mega-title:hover .arrow {
    transform: translateX(8px);
    color: #2563eb;
}

/* =========================
   MENU HOVER PREMIUM
========================= */

.menu-link:hover,
.menu-item a:hover {
    color: #fff;
}

/* animated underline gradient */
.menu-item a::after {
    background: var(--gradient-main);
}

/* =========================
   LIST HOVER EFFECT
========================= */

.mega-col ul li {
    position: relative;
}

/* left glow line */
.mega-col ul li::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: 0.3s;
    transform: translateY(-50%);
}

.mega-col ul li:hover::before {
    width: 6px;
}

.mega-col ul li:hover {
    color: #fff;
    transform: translateX(6px);
}

/* =========================
   ICON HOVER GLOW
========================= */

.icon-svg,
.chevron-svg {
    transition: 0.3s;
}

.icon:hover .icon-svg,
.country:hover .icon-svg {
    color: #9333ea;
}

/* =========================
    MEGA MENU TOP BORDER
========================= */

.mega-menu {
    border-top: 1px solid rgba(255,255,255,0.05);
}



/* =========================
   MOBILE SAFE LAYER
   (No conflict with desktop)
========================= */

/* Hide mobile by default */
.mobile-header,
.mobile-menu {
    display: none;
}

/* =========================
   MOBILE ONLY
========================= */
@media (max-width: 768px) {

    /* Hide desktop elements ONLY visually */
    .header .menu,
    .header .header-right {
        display: none !important;
    }

    /* Keep logo hidden only on mobile */
    .header .logo {
        display: none;
    }

/* =========================
   MOBILE HEADER 
========================= */
@media (max-width: 1024px) {

    /* REMOVE CONTAINER EFFECT ON MOBILE */
    .header .container {
        display: none; /* hide desktop container cleanly */
    }

    /* HEADER CLEAN */
    .header {
        height: 60px;          /* fixed height */
        display: flex;
        align-items: center;
    }

    /* MOBILE HEADER */
    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;          /* same as header */

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 0 16px;       /* clean side spacing */
        margin: 0;

        background: #000;
        z-index: 1001;
    }

    /* FIX ICON ALIGNMENT */
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* LOGO PERFECT CENTER */
    .mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-logo img {
        height: 26px;
    }

}

    /* =========================
       MOBILE MENU PANEL
    ========================= */

    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #111;
        padding: 20px;

        flex-direction: column;
        justify-content: space-between;

        transition: left 0.4s ease;
        z-index: 9999;
    }

    .mobile-menu.active {
        left: 0;
    }

    /* TOP BAR */
    .mobile-menu-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .close-menu {
        font-size: 22px;
        cursor: pointer;
    }

    /* =========================
       MENU ITEMS
    ========================= */
    /* MOBILE LINKS */
    .mobile-item a,
    .mobile-bottom a {
        color: #fff;
        text-decoration: none;
        display: block;
        width: 100%;
        transition: 0.3s;
    }

    /* HOVER */
    .mobile-item a:hover,
    .mobile-bottom a:hover {
        color: #aaa;
    }

    .mobile-menu-content {
        margin-top: 40px;
    }

    .mobile-item {
        font-size: 20px;
        margin-bottom: 25px;
        cursor: pointer;
    }

    .mobile-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* SUBMENU */
    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        transition: 0.3s ease;
        padding-left: 10px;
    }

    .mobile-submenu p {
        margin: 10px 0;
        color: #aaa;
    }

    .mobile-item.active .mobile-submenu {
        max-height: 200px;
    }

    /* =========================
       BOTTOM SOCIAL
    ========================= */

    .mobile-bottom {
        margin-top: 40px;
    }

    .mobile-bottom p {
        margin: 10px 0;
    }

    .socials {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }

    .socials span {
        padding: 8px;
        border: 1px solid #333;
        border-radius: 4px;
        transition: 0.3s;
    }

    .socials span:hover {
        border-color: #9333ea;
        color: #9333ea;
    }
}

/* PREMIUM CHEVRON HOVER */
.menu-item:hover .chevron-svg {
    color: #2563eb !important; /* blue */
}

/*=========================
   04. Footer
========================= */
/* =========================
   FOOTER BASE
========================= */

.footer {
    background: #000;
    color: #fff;
    padding: 40px 40px 20px;
    font-size: 14px;
}

/* =========================
   DESKTOP
========================= */

.footer-desktop {
    display: block;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* LOGO */
.footer-logo img {
    height: 40px;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    max-width: 70%;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SOCIAL */
.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials span {
    cursor: pointer;
    transition: 0.3s;
}

.footer-socials span:hover {
    color: #aaa;
}

/* =========================
   MOBILE
========================= */

.footer-mobile {
    display: none;
}

@media (max-width: 768px) {

    .footer {
        padding: 30px 20px;
    }

    /* HIDE DESKTOP */
    .footer-desktop {
        display: none;
    }

    /* SHOW MOBILE */
    .footer-mobile {
        display: block;
    }

    /* CONTACT BUTTON */
    .footer-contact {
        display: block;
        text-align: center;
        padding: 12px;
        border: 1px solid #555;
        border-radius: 30px;
        margin-bottom: 25px;
        text-decoration: none;
        color: #fff;
    }

    /* LINKS */
    .footer-links-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .footer-links-mobile a {
        color: #ccc;
        text-decoration: none;
    }

    /* SOCIAL */
    .footer-socials {
        justify-content: center;
        margin-bottom: 20px;
    }

    /* COPYRIGHT */
    .footer-copy {
        text-align: center;
        font-size: 12px;
        color: #aaa;
    }

}
.footer-desktop {
    border-top: 1px solid #fff;
    padding-top: 20px;
}

/*=========================
       Website Body
========================= */

/*=========================
   05. HERO SECTION
========================= */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/index/hero.jpeg") center/cover no-repeat;
    z-index: -1;
}

/* CONTAINER ALIGN WITH HEADER */
.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* MAIN TITLE */
.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    display: inline-block;
    transition: 0.3s;
}

/* GRADIENT HOVER */
.hero-title:hover {
    background: linear-gradient(90deg, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* EXPLORE */
.hero-explore {
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    font-size: 18px;
    color: #fff;
    gap: 8px;
    transition: 0.3s;
}

/* ARROW */
.hero-explore .arrow {
    transition: 0.3s;
}

/* HOVER EFFECT */
.hero-explore:hover {
    background: linear-gradient(90deg, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ARROW MOVE */
.hero-explore:hover .arrow {
    transform: translateX(6px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

    .hero-title {
        font-size: 40px;
    }

}

/* =========================
   06. SERVICES CARDS
========================= */

.services {
    padding: 80px 0;
}

/* GRID */
.services-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #0f172a;
    transition: 0.4s ease;
}

/* HOVER SCALE */
.service-card:hover {
    transform: scale(1.03);
}

/* =========================
   IMAGE
========================= */

.card-image {
    position: absolute;
    inset: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* 🔥 FULL DISAPPEAR */
.service-card:hover .card-image img {
    transform: translate(300%, 300%) scale(0.8);
    opacity: 0;
}

/* =========================
   CONTENT
========================= */

.card-content {
    position: absolute;
    inset: 0;
    padding: 20px;
}

/* H1 SMALL */
.card-content h1 {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

/* H2 BIG */
.card-content h2 {
    font-size: 20px;
    font-weight: 600;
}

/* =========================
   HOVER TEXT
========================= */

.card-hover {
    position: absolute;
    bottom: 20px;
    left: -100%;
    right: 20px;

    opacity: 0;
    transition: 0.5s ease;
}

/* SHOW TEXT */
.service-card:hover .card-hover {
    left: 20px;
    opacity: 1;
}

/* PARAGRAPH */
.card-hover p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

/* =========================
   EXPLORE BUTTON
========================= */

.explore {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    text-decoration: none;
}

/* GRADIENT TEXT */
.service-card:hover .explore {
    background: linear-gradient(90deg, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ARROW */
.explore span {
    transition: 0.3s;
}

/* ARROW MOVE */
.service-card:hover .explore span {
    transform: translateX(6px);
}

/* =========================
   MOBILE SLIDER
========================= */

/* HIDE ON DESKTOP */
.services-controls {
    display: none;
}

@media (max-width: 1024px) {

    .services-controls {
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }

    /* TRACK = ONE CARD WIDTH */
    .slider-track {
        position: relative;
        width: 120px;   /* 🔥 matches 1 card feel */
        height: 4px;
        background: #444;
    }

    /* HANDLE */
    .slider-handle {
        position: absolute;
        top: 50%;
        left: 0;

        width: 14px;
        height: 14px;

        background: #fff;
        border: 2px solid #000;

        transform: translate(-50%, -50%);
        cursor: pointer;

        transition: transform 0.1s;
    }

    .slider-handle:active {
        transform: translate(-50%, -50%) scale(0.9);
    }

    /* SLIDER CONTAINER */
    .services-container {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden; /* 🔥 important */
        scroll-behavior: smooth;
        gap: 15px;
        padding-left: 20px;
    }

    .services-container::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        min-width: 85%;
        flex-shrink: 0;
    }

}
/* LOCK VERTICAL SCROLL INSIDE SLIDER */
.services-container {
    touch-action: pan-x;   /* 🔥 only horizontal allowed */
}
/* BETTER MOBILE FEEL */
.services-container {
    -webkit-overflow-scrolling: touch;
}

/* =========================
   ULTRA PREMIUM CTA
========================= */

.premium-cta {
    position: relative;
    background: radial-gradient(circle at center, #05010a 0%, #000 70%);
    color: #fff;
    padding: 140px 20px 100px;
    text-align: center;
    overflow: hidden;
}

/* SOFT ANIMATED GLOW */
.premium-cta::before,
.premium-cta::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    filter: blur(120px);
    opacity: 0.2;
    animation: floatGlow 8s ease-in-out infinite;
}

.premium-cta::before {
    left: -150px;
    top: 20%;
    background: #9333ea;
}

.premium-cta::after {
    right: -150px;
    top: 30%;
    background: #2563eb;
}

/* GLOW ANIMATION */
@keyframes floatGlow {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
}

/* CONTENT */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: auto;
}

/* EARLY TEXT */
.early {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #9333ea;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

/* TITLE */
.cta-content h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* SUBTEXT */
.subtext {
    color: #aaa;
    margin-bottom: 35px;
}

/* =========================
   FORM 
========================= */

.cta-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* INPUT WRAP (FOR GRADIENT BORDER) */
.cta-form input {
    padding: 14px 20px;
    border-radius: 30px;
    border: 1px solid #222;
    width: 320px;
    background: #0b0b0f;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

/* 🔥 GRADIENT FOCUS BORDER */
.cta-form input:focus {
    border: 1px solid transparent;
    background:
        linear-gradient(#0b0b0f, #0b0b0f) padding-box,
        linear-gradient(90deg, #9333ea, #2563eb) border-box;
}

/* BUTTON */
.cta-form button {
    padding: 14px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;

    background: linear-gradient(90deg, #2563eb, #9333ea);
    color: #fff;

    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.cta-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147,51,234,0.3);
}

/* SIGNUP */
.signup {
    font-size: 13px;
    color: #aaa;
}

/* =========================
   LOGO SLIDER 
========================= */

.cta-logos {
    margin-top: 90px;
}

.cta-logos p {
    color: #aaa;
    margin-bottom: 20px;
}

/* SLIDER WRAP */
.logo-slider {
    width: 300px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

/* FADE EDGES */
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

/* TRACK */
.logo-track {
    display: flex;
    gap: 40px;
    animation: logoSlide 14s linear infinite;
}

.logo-track span {
    color: #555;
    font-size: 18px;
}

.logo-track img {
    filter: grayscale(1) brightness(2);
    opacity: 0.6;
}

.logo-track img:hover {
    filter: none;
    opacity: 1;
}

/* ANIMATION */
@keyframes logoSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


@media (max-width: 768px) {

    .cta-content h1 {
        font-size: 36px;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input {
        width: 100%;
    }

}

/*=========================
   404 PAGE
========================= */

.error-404 {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* SOFT GRADIENT GLOW */
.error-404::before,
.error-404::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    filter: blur(120px);
    opacity: 0.2;
}

.error-404::before {
    left: -100px;
    top: 20%;
    background: #9333ea;
}

.error-404::after {
    right: -100px;
    bottom: 20%;
    background: #2563eb;
}

/* CONTENT */
.error-container {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

/* 404 TEXT */
.error-container h1 {
    font-size: 120px;
    font-weight: 700;
    background: linear-gradient(90deg, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* TITLE */
.error-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* TEXT */
.error-container p {
    color: #aaa;
    margin-bottom: 30px;
}

/* BUTTONS */
.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* PRIMARY BUTTON */
.btn-primary {
    padding: 12px 22px;
    border-radius: 30px;
    background: linear-gradient(90deg, #2563eb, #9333ea);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

/* SECONDARY BUTTON */
.btn-secondary {
    padding: 12px 22px;
    border-radius: 30px;
    border: 1px solid #333;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147,51,234,0.3);
}

.btn-secondary:hover {
    border-color: #666;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .error-container h1 {
        font-size: 80px;
    }

    .error-container h2 {
        font-size: 22px;
    }

    .error-actions {
        flex-direction: column;
    }

}

/* =========================
   PREMIUM BREADCRUMB
========================= */

.premium-breadcrumb {
    position: relative;
    background: #000;
    padding: 25px 40px;
    overflow: hidden;
}

/* SUBTLE TOP GRADIENT LINE */
.premium-breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #2563eb, #9333ea, transparent);
    opacity: 0.5;
}

/* CONTAINER */
.breadcrumb-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

/* LINKS */
.crumb {
    position: relative;
    color: #aaa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

/* HOVER GRADIENT TEXT */
.crumb:hover {
    background: linear-gradient(90deg, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* UNDERLINE ANIMATION */
.crumb::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, #2563eb, #9333ea);
    transition: 0.3s ease;
}

.crumb:hover::after {
    width: 100%;
}

/* CURRENT PAGE */
.current {
    color: #fff;
    font-weight: 500;
}

/* SEPARATOR */
.separator {
    color: #555;
}

/* HOME ICON (CSS ONLY) */
.home-icon {
    width: 10px;
    height: 10px;
    border-left: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    transform: rotate(45deg);
    display: inline-block;
    margin-right: 2px;
}

/* ADD SPACE BELOW FIXED HEADER */
.premium-breadcrumb {
    margin-top: 80px; /* adjust based on your header height */
}

/* =========================
   HOVER GLOW EFFECT
========================= */

.crumb:hover {
    text-shadow: 0 0 8px rgba(147,51,234,0.3);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .premium-breadcrumb {
        padding: 18px 20px;
    }

    .breadcrumb-container {
        font-size: 13px;
        flex-wrap: wrap;
    }

}

/* =========================
   ABOUT CSS
========================= */
.about {
    background: #000;
    color: #fff;
    padding: 80px 20px;
}

/* TOP */
.about-top {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
}

.about-text h1 { font-size: 40px; margin-bottom: 10px; }
.about-text h2 { color: #aaa; margin-bottom: 20px; }
.about-text h3 { margin-top: 20px; }
.about-text h4 { color: #aaa; }

/* STATS */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 80px 0;
}

.stat h2 {
    font-size: 40px;
    background: linear-gradient(90deg,#2563eb,#9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ABOUT GRID SYSTEM
/* =========================
   SECTION INTRO (GLOBAL USE)
========================= */

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 100px auto 60px;
}

/* ICON */
.intro-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  transition: all 0.3s ease;
}

/* TEXT */
.intro-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.intro-title {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
}

/* subtle hover */
.section-intro:hover .intro-icon svg {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* MOBILE */
@media (max-width:768px) {
  .section-intro {
    margin: 60px auto 40px;
  }

  .intro-title {
    font-size: 26px;
  }
}

/* FIX CENTER ALIGNMENT */
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}


/* ICON */
.about-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  position: relative;
}

.about-icon::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD CLEAN */
.about-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
  background: transparent;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}

/* ICON BOX */
.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover animation */
.about-card:hover .card-icon svg {
  transform: scale(1.1);
  stroke: #fff;
}
/* SVG control */
.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  transition: all 0.3s ease;
}

/* TEXT */
.about-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* MOBILE FIX */
@media (max-width:768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-header h2 {
    font-size: 26px;
  }
}
/* =========================
   CONTACT US PAGE CSS
========================= */

.contact-page {
    background: #000;
    color: #fff;
    padding: 80px 20px;
}

/* HERO */
.contact-hero {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    margin-top: 0px;
}

.contact-hero h1 {
    font-size: 60px;
}

.contact-hero p {
    max-width: 400px;
    color: #aaa;
}

/* CARDS */
.contact-cards {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.card {
    flex: 1;
    border: 1px solid #222;
    padding: 25px;
    text-align: center;
    cursor: pointer;
}

.card.active {
    border-color: #9333ea;
}

/* FORM */
.contact-form-box {
    max-width: 1000px;
    margin: auto;
    padding: 40px;
    background: #050505;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 10px;
    color: #fff;
}

.form-grid textarea {
    grid-column: span 2;
}

.form-grid button {
    grid-column: span 2;
    padding: 14px;
    background: linear-gradient(90deg,#2563eb,#9333ea);
    border: none;
}

/* EXTRA */
.contact-extra {
    max-width: 1200px;
    margin: 80px auto;
}

.extra-grid {
    display: flex;
    gap: 60px;
}

.extra-item h3 {
    margin-bottom: 10px;
}

.extra-item a {
    color: #9333ea;
}

/* MOBILE */
@media(max-width:768px){

    .contact-hero {
        flex-direction: column;
        gap: 20px;
    }

    .contact-cards {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .extra-grid {
        flex-direction: column;
    }

}

/* =========================
   REFUND POLICY CSS
========================= */
.refund {
  background: #000;
  color: #fff;
  padding: 120px 20px;
}

.refund-intro {
  text-align: center;
  margin-bottom: 100px;
}

.refund-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.refund-intro h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.refund-intro span {
  color: #aaa;
  font-size: 14px;
}

.refund-container {
  max-width: 720px;
  margin: 0 auto;
}

.refund-block {
  margin-bottom: 50px;
}

.refund-block h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.refund-block p {
  color: #ccc;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width:768px) {

  .refund {
    padding: 80px 16px;
  }

  .refund-intro h1 {
    font-size: 28px;
  }

  .refund-container {
    max-width: 100%;
  }
}


/* =========================
   COOKIE POLICY CSS
========================= */
/* SECTION */
.cookie {
  background: #000;
  color: #fff;
  padding: 120px 20px;
}

/* INTRO */
.cookie-intro {
  text-align: center;
  margin-bottom: 100px;
}

.cookie-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cookie-intro h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.cookie-intro span {
  color: #aaa;
  font-size: 14px;
}

/* CONTAINER (KEY FOR CLEAN LOOK) */
.cookie-container {
  max-width: 720px;
  margin: 0 auto;
}

/* BLOCK */
.cookie-block {
  margin-bottom: 50px;
}

/* HEADINGS */
.cookie-block h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* TEXT */
.cookie-block p {
  color: #ccc;
  line-height: 1.7;
  font-size: 15px;
}

/* LIST */
.cookie-block ul {
  padding-left: 18px;
  margin-top: 10px;
}

.cookie-block li {
  color: #ccc;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width:768px) {

  .cookie {
    padding: 80px 16px;
  }

  .cookie-intro h1 {
    font-size: 28px;
  }

  .cookie-container {
    max-width: 100%;
  }
}


/* =========================
   T&C PAGE CSS
========================= */
.terms {
  background: #000;
  color: #fff;
  padding: 120px 20px;
}

/* INTRO */
.terms-intro {
  text-align: center;
  margin-bottom: 100px;
}

.terms-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.terms-intro h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.terms-intro span {
  color: #aaa;
  font-size: 14px;
}

/* CONTAINER */
.terms-container {
  max-width: 720px;
  margin: 0 auto;
}

/* BLOCK */
.terms-block {
  margin-bottom: 50px;
}

.terms-block h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.terms-block p {
  color: #ccc;
  line-height: 1.7;
  font-size: 15px;
}

/* MOBILE */
@media (max-width:768px) {

  .terms {
    padding: 80px 16px;
  }

  .terms-intro h1 {
    font-size: 28px;
  }

  .terms-container {
    max-width: 100%;
  }
}

/* =========================
   PRIVACY POLICY CSS
========================= */
.privacy {
  background: #000;
  color: #fff;
  padding: 120px 20px;
}

/* INTRO (TOP CENTER) */
.privacy-intro {
  text-align: center;
  margin-bottom: 100px;
}

.privacy-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.privacy-intro h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.privacy-intro span {
  color: #aaa;
  font-size: 14px;
}

/* CONTENT CONTAINER (IMPORTANT FIX) */
.privacy-container {
  max-width: 720px;   /* 🔥 THIS FIXES MESS */
  margin: 0 auto;
}

/* BLOCK */
.privacy-block {
  margin-bottom: 50px;
}

/* HEADINGS */
.privacy-block h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* TEXT */
.privacy-block p {
  color: #ccc;
  line-height: 1.7;
  font-size: 15px;
}

/* LIST */
.privacy-block ul {
  padding-left: 18px;
  margin-top: 10px;
}

.privacy-block li {
  color: #ccc;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width:768px) {

  .privacy {
    padding: 80px 16px;
  }

  .privacy-intro h1 {
    font-size: 28px;
  }

  .privacy-container {
    max-width: 100%;
  }
}