:root {
    --primary: #1a0533;
    --primary-mid: #2d0a5e;
    --accent: #a855f7;
    --accent2: #c084fc;
    --accent-glow: rgba(168, 85, 247, 0.3);
    --white: #ffffff;
    --light: #faf5ff;
    --text: #1a0533;
    --text-muted: #6b5b7b;
    --border: rgba(168, 85, 247, 0.12);
    --card-bg: #ffffff;
    --section-alt: #faf5ff;
    --gradient: linear-gradient(135deg, #1a0533 0%, #2d0a5e 60%, #6b21a8 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(26, 5, 51, 0.1);
    --shadow-lg: 0 20px 60px rgba(26, 5, 51, 0.16);
    --gold: #f59e0b;
    --muted: #6b5b7b;
    --card: #ffffff;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    background: #fff;
    color: var(--text);
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.65;
}

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 9999;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.pre-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pre-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.5);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(168, 85, 247, 0);
    }
}

.pre-text {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
}

.pre-text span {
    color: var(--accent2);
}

.pre-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.pre-bar {
    width: 220px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.pre-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    animation: load-bar 2s ease forwards;
}

@keyframes load-bar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    transition: box-shadow 0.3s, background 0.3s;
}

#navbar.scrolled {
    box-shadow: 0 4px 30px rgba(26, 5, 51, 0.1);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 200px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-logo-text {
    line-height: 1.1;
}

.nav-logo-name {
    font-family: "Roboto", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.nav-logo-name span {
    color: var(--accent);
}

.nav-logo-sub {
    font-size: 0.58rem;
    color: var(--text-muted);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    font-family: "Roboto", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(168, 85, 247, 0.07);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle i {
    font-size: 0.6rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: 14px;
    min-width: 230px;
    box-shadow: 0 16px 50px rgba(26, 5, 51, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden;
    padding: 6px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 9px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.845rem;
    font-weight: 500;
    transition: all 0.18s;
}

.dropdown-item i {
    color: var(--accent);
    width: 16px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
}

.btn-primary {
    font-family: "Roboto", sans-serif;
    background: var(--accent);
    color: #fff;
    padding: 9px 22px;
    border-radius: 9px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--accent);
    transition: all 0.25s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.btn-secondary {
    font-family: "Roboto", sans-serif;
    background: var(--accent);
    color: #fff;
    padding: 9px 22px;
    border-radius: 9px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--accent);
    transition: all 0.25s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-1px);
}

.btn-outline {
    font-family: "Roboto", sans-serif;
    background: transparent;
    color: var(--primary);
    padding: 9px 22px;
    border-radius: 9px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--primary);
    transition: all 0.25s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-accent {
    font-family: "Roboto", sans-serif;
    background: transparent;
    color: var(--accent);
    padding: 9px 22px;
    border-radius: 9px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--accent);
    transition: all 0.25s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

#mobile-drawer {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--border);
}

#mobile-drawer.open {
    transform: translateX(0);
}

.mob-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(168, 85, 247, 0.06);
    transition: all 0.2s;
}

.mob-link:hover {
    color: var(--accent);
    background: rgba(168, 85, 247, 0.04);
}

.mob-sub {
    padding-left: 0;
    background: var(--section-alt);
    display: none;
}

.mob-sub.open {
    display: block;
}

.mob-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 36px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.04);
    transition: color 0.2s;
}

.mob-sub a i {
    color: var(--accent);
}

.mob-sub a:hover {
    color: var(--accent);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 90px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.08);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    font-family: "Roboto", sans-serif;
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.section-title {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--accent);
}

.section-desc {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.75;
}

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 3px;
    margin: 14px 0 28px;
}

.divider.center {
    margin: 14px auto 28px;
}

.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 48px;
}

.w-full {
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media (min-width: 640px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== HERO ===== */
/* ── HERO WRAPPER ── */
#hero-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

/* ── SLIDES ── */
.hslide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}

.hslide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* ── REAL BACKGROUND IMAGES ── */
.hslide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slide 1 — AI network image */
#s1 .hslide-bg {
    background-image: url('https://plus.unsplash.com/premium_photo-1661638363201-01d6d365d2ae?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDR8fHxlbnwwfHx8fHw%3D');
}

/* Slide 2 — Cybersecurity / circuit image */
#s2 .hslide-bg {
    background-image: url('https://plus.unsplash.com/premium_photo-1661644956311-1905740c94da?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDd8fHxlbnwwfHx8fHw%3D');
}

/* ── DARK OVERLAY ON IMAGE ── */
.hslide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
            rgba(5, 0, 18, 0.35) 0%,
            rgba(15, 3, 45, 0.25) 50%,
            rgba(5, 0, 18, 0.35) 100%);
}

.hslide-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 60% at 8% 55%, rgba(150, 60, 240, 0.30) 0%, transparent 60%),
        radial-gradient(ellipse 50% 55% at 88% 18%, rgba(190, 120, 255, 0.14) 0%, transparent 55%);
}

/* ── CONTENT ── */
.hslide-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 110px 0 70px;
}

/* EYEBROW */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 6px 16px 6px 7px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.eyebrow-icon {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.eyebrow-pulse {
    width: 7px;
    height: 7px;
    background: #c084fc;
    border-radius: 50%;
    animation: blinkAnim 1.6s infinite;
}

/* TITLE */
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-title .brand {
    color: #c084fc;
}

.typed-line {
    display: block;
    color: #c084fc;
    min-height: 1.2em;
}

/* typed cursor blink */
.t-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #c084fc;
    margin-left: 2px;
    vertical-align: middle;
    animation: blinkAnim 0.85s step-end infinite;
}

/* DESC */
.hero-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 34px;
    max-width: 510px;
}



.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.stat-num sup {
    font-size: 0.9rem;
    margin-top: 5px;
}

.stat-lbl {
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.40);
    margin-top: 5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* ARROWS */
.harrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    backdrop-filter: blur(8px);
}

.harrow:hover {
    background: rgba(168, 85, 247, 0.45);
    border-color: #a855f7;
}

#h-prev {
    left: 20px;
}

#h-next {
    right: 20px;
}

/* DOTS */
#hdots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    border: none;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
    padding: 0;
}

.hdot.on {
    background: #c084fc;
    transform: scale(1.35);
}

/* COUNTER */
#hcounter {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 30;
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.36);
    letter-spacing: 1px;
}

#hcounter em {
    color: #c084fc;
    font-style: normal;
    font-weight: 700;
}

/* ANIMATIONS */
@keyframes blinkAnim {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* RESPONSIVE */
@media(max-width:991px) {
    .dash-col {
        display: none !important;
    }

    .hero-title {
        font-size: clamp(1.85rem, 7vw, 2.8rem);
    }

    .hero-desc {
        max-width: 100%;
    }
}

@media(max-width:575px) {

    .btn-hero-main,
    .btn-hero-out {
        padding: 11px 20px;
        font-size: 0.86rem;
    }

    .harrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    #h-prev {
        left: 10px;
    }

    #h-next {
        right: 10px;
    }

    .stat-num {
        font-size: 1.6rem;
    }
}

/*  */
@media (max-width: 767px) {

    #hero-wrap {
        height: 100svh !important;
        min-height: unset !important;
        max-height: 620px;
    }

    .hslide {
        align-items: center;
    }

    .hslide-inner {
        padding: 70px 0 50px !important;
    }

    .hslide-bg {
        background-position: center center;
        background-size: cover;
    }

    .hslide-overlay {
        background: linear-gradient(160deg,
                rgba(5, 0, 18, 0.78) 0%,
                rgba(15, 3, 45, 0.68) 50%,
                rgba(5, 0, 18, 0.78) 100%) !important;
    }

    .hero-title {
        font-size: 1.55rem !important;
        line-height: 1.18 !important;
        margin-bottom: 10px;
        word-break: break-word;
    }

    .typed-line {
        font-size: 1.4rem !important;
        min-height: 1.2em;
    }

    .hero-desc {
        font-size: 0.85rem !important;
        line-height: 1.65;
        margin-bottom: 20px;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.75);
    }

    .eyebrow {
        font-size: 0.68rem;
        padding: 4px 11px 4px 5px;
        margin-bottom: 12px;
    }

    .harrow {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    #h-prev {
        left: 10px;
    }

    #h-next {
        right: 10px;
    }

    #hdots {
        bottom: 18px;
    }

    #hcounter {
        bottom: 18px;
        right: 14px;
        font-size: 0.68rem;
    }
}

@media (max-width: 400px) {
    #hero-wrap {
        max-height: 580px;
    }

    .hero-title {
        font-size: 1.3rem !important;
    }

    .typed-line {
        font-size: 1.2rem !important;
    }
}

/*  */
/* ===== SERVICES ===== */
#services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.service-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 18px 22px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.2);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--section-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--accent);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: scale(1.08);
}

.service-title {
    font-family: "Roboto", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.service-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    margin-top: 12px;
    text-decoration: none;
    transition: gap 0.25s;
}

.service-card:hover .service-more {
    gap: 9px;
}

/* ===== COUNTER ===== */
.counter-section {
    background: var(--gradient);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .counters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.counter-item {
    text-align: center;
}

.counter-num {
    font-family: "Roboto", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.counter-plus {
    color: var(--accent2);
    font-size: 2rem;
    margin-top: 4px;
}

.counter-lbl {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.counter-divider {
    width: 32px;
    height: 2px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
    opacity: 0.5;
}

/* ===== ABOUT ===== */
 /* ─── SECTION ─── */
    #about {
      background: var(--bg);
      padding: 100px 0 96px;
      position: relative;
      overflow: hidden;
    }
 
    #about::before {
      content: '';
      position: absolute;
      top: -120px; right: -80px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(168,85,247,0.09) 0%, transparent 68%);
      border-radius: 50%;
      pointer-events: none;
    }
 
    /* ─── HEADER ─── */
    .about-section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 72px;
      padding: 0 24px;
    }
 
    .about-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 18px;
    }
 
    .about-eyebrow::before,
    .about-eyebrow::after {
      content: '';
      width: 28px; height: 1.5px;
      background: var(--accent);
      border-radius: 2px;
    }
 
    .about-heading {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.1rem, 4.5vw, 3rem);
      font-weight: 800;
      line-height: 1.12;
      color: var(--primary);
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }
 
    .about-heading em {
      font-style: normal;
      color: var(--accent);
    }
 
    .about-subtitle {
      color: var(--text-muted);
      font-size: 0.96rem;
      line-height: 1.85;
      font-weight: 400;
    }
 
    /* ─── GRID ─── */
    .about-container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
 
    /* ─── LEFT ─── */
    .about-desc {
      color: var(--text-muted);
      font-size: 0.93rem;
      line-height: 1.95;
      margin-bottom: 14px;
      padding-left: 18px;
      border-left: 2.5px solid var(--accent);
      border-radius: 0;
    }
 
    .divider {
      width: 100%;
      height: 1px;
      background: var(--line);
      margin: 28px 0;
    }
 
    /* Stats */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 32px;
    }
 
    .stat-box {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 12px 16px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.22s, box-shadow 0.22s;
    }
 
    .stat-box::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2.5px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      border-radius: 16px 16px 0 0;
    }
 
    .stat-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(124, 58, 237, 0.1);
    }
 
    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 6px;
    }
 
    .stat-label {
      font-size: 0.68rem;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
 
    /* Button */
    .btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
 
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--accent);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 10px;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
      box-shadow: 0 6px 20px rgba(124, 58, 237, 0.22);
    }
 
    .btn-primary:hover {
      background: #6d28d9;
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(124, 58, 237, 0.3);
    }
 
    /* ─── RIGHT / IMAGE ─── */
    .about-right {
      position: relative;
    }
 
    .img-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      height: 440px;
      box-shadow: 0 28px 64px rgba(15, 10, 30, 0.14);
    }
 
    .img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 5.5s ease;
    }
 
    .img-card:hover img {
      transform: scale(1.05);
    }
 
    .img-overlay {
      position: absolute;
      background: linear-gradient(180deg, transparent 30%, rgba(15, 10, 30, 0.80) 100%);
    }
 
 
    .badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #a78bfa;
      box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.32);
      animation: pulse-dot 1.8s infinite;
    }
 
    @keyframes pulse-dot {
      0%, 100% { box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.32); }
      50%       { box-shadow: 0 0 0 7px rgba(167, 139, 250, 0.08); }
    }
 
    /* Caption */
    .img-caption {
      position: absolute;
      bottom: 24px; left: 24px; right: 24px;
    }
 
    .img-caption h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 5px;
    }
 
    .img-caption p {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.68);
      font-weight: 400;
    }
 
    /* Float pill */
    .float-pill {
      position: absolute;
      right: -16px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px 20px;
      box-shadow: 0 16px 40px rgba(124, 58, 237, 0.12);
      text-align: center;
      min-width: 114px;
      z-index: 2;
    }
 
    .float-pill .pnum {
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 5px;
    }
 
    .float-pill .plbl {
      font-size: 0.65rem;
      color: var(--text-muted);
      font-weight: 500;
      line-height: 1.35;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
 
    /* ─── RESPONSIVE ─── */
    @media (max-width: 960px) {
      .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 28px;
      }
      .about-right { order: -1; }
      .float-pill { right: 14px; top: 20px; transform: none; }
      .img-card { height: 340px; }
    }
 
    @media (max-width: 600px) {
      #about { padding: 64px 0; }
      .about-section-header { margin-bottom: 48px; }
      .about-container { padding: 0 20px; }
      .stats-row { gap: 8px; }
      .stat-num { font-size: 1.45rem; }
      .img-card { height: 270px; }
      .float-pill { display: none; }
    }
/* end */
/* ===== TECH MARQUEE ===== */
#technologies {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.tech-marquee-wrap {
    overflow: hidden;
    padding: 6px 0;
}

.tech-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: marquee-left 30s linear infinite;
}

.tech-track-rev {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: marquee-right 36s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.tech-marquee-wrap:hover .tech-track,
.tech-marquee-wrap:hover .tech-track-rev {
    animation-play-state: paused;
}

.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--section-alt);
    border: 1.5px solid var(--border);
    padding: 9px 18px;
    border-radius: 50px;
    font-family: "Roboto", sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    transition: all 0.3s;
    cursor: default;
}

.tech-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(168, 85, 247, 0.06);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.12);
}

.tech-chip i {
    color: var(--accent);
}

/* ===== AI SECTION ===== */
#ai-section {
    background: var(--section-alt);
}

.ai-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: all 0.35s;
}

.ai-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.25);
}

.ai-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.ai-card h3 {
    font-family: "Roboto", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.ai-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.code-block {
    background: var(--primary);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.code-prompt {
    color: var(--accent2);
}

.code-text {
    color: rgba(255, 255, 255, 0.8);
}

.code-meta {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    margin-top: 6px;
}

/* ===== PORTFOLIO ===== */
#portfolio {
    background: #fff;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
}

.ftab {
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    font-size: 0.83rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    font-family: "Roboto", sans-serif;
}

.ftab.active,
.ftab:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.port-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s;
}

.port-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.2);
}

.port-img {
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.port-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 5, 51, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}

.port-card:hover .port-img-overlay {
    opacity: 1;
}

.port-overlay-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.port-overlay-btn:hover {
    background: var(--accent);
    color: #fff;
}

.port-body {
    padding: 22px;
}

.port-tag {
    font-size: 0.67rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.port-title {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 9px;
}

.port-desc {
    font-size: 0.81rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.port-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.port-tags span {
    font-size: 0.68rem;
    font-weight: 600;
    background: rgba(168, 85, 247, 0.08);
    color: var(--accent);
    border: 1px solid rgba(168, 85, 247, 0.18);
    padding: 3px 10px;
    border-radius: 20px;
}

/* ===== WHY US ===== */
#why-us {
    background: var(--section-alt);
}

.why-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: all 0.35s;
}

.why-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.25);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 18px;
}

.why-title {
    font-family: "Roboto", sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 9px;
}

.why-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ===== PRICING ===== */
#pricing {
    background: #fff;
}

.pricing-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 38px 30px;
    text-align: center;
    transition: all 0.35s;
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.08), var(--shadow);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 0.67rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 30px;
    letter-spacing: 1px;
    white-space: nowrap;
    font-family: "Roboto", sans-serif;
}

.p-plan {
    font-family: "Roboto", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.p-price {
    font-family: "Roboto", sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.p-price.featured-price {
    color: var(--accent);
}

.p-price sup {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 12px;
    display: inline-block;
}

.p-price sub {
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.p-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}

.p-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 0;
    font-size: 0.85rem;
    text-align: left;
}

.p-feature i.yes {
    color: var(--accent);
}

.p-feature i.no {
    color: #d1d5db;
}

.p-feature.no-feat {
    color: #9ca3af;
}


/* ===== TEAM ===== */
#team {
    background: var(--section-alt);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.team-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 16px;
    text-align: center;
    transition: all 0.35s;
}

.team-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.25);
}

.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 13px;
    border: 3px solid #fff;
    box-shadow: 0 4px 20px rgba(26, 5, 51, 0.18);
    transition: all 0.35s;
}

.team-card:hover .team-avatar {
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
    transform: scale(1.05);
}

.team-name {
    font-family: "Roboto", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.team-role {
    font-size: 0.73rem;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 7px;
}

.tsoc {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--section-alt);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-decoration: none;
    transition: all 0.25s;
}

.tsoc:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: #fff;
    padding: 60px 0 50px;
    /* top-bottom control */
}


/* Main fix - swiper height control */
.t-swiper {
    padding-bottom: 44px !important;
    height: auto !important;
}

.swiper-wrapper {
    align-items: stretch;
    height: auto !important;
}

.swiper-slide {
    height: auto !important;
}

.testi-card {
    background: var(--section-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    height: 100%;
    box-sizing: border-box;
    /* important! */
    transition: all 0.3s;
}

.testi-card {
    background: var(--section-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    height: 100%;
    transition: all 0.3s;
}

.testi-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(0, 153, 204, 0.2);
}

.stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(0, 153, 204, 0.12);
    line-height: 1;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.quote {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 20px;
}

.c-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.c-name {
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.c-role {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

/* ===== FAQ ===== */
#faq {
    background: var(--section-alt);
}

.faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.open {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.1);
}

.faq-q {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Roboto", sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--primary);
    gap: 12px;
    transition: background 0.2s;
    user-select: none;
}

.faq-q:hover {
    background: rgba(168, 85, 247, 0.03);
}

.faq-icon {
    color: var(--accent);
    transition: transform 0.35s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.8;
    padding: 0 22px;
}

.faq-item.open .faq-a {
    max-height: 250px;
    padding: 0 22px 20px;
}

/* ===== BLOG ===== */
#blog {
    background: #fff;
}

.blog-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.2);
}

.blog-img-box {
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, rgba(26, 5, 51, 0.07), rgba(168, 85, 247, 0.1));
    position: relative;
    overflow: hidden;
}

.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 30px;
}

.blog-body {
    padding: 22px;
}

.blog-title {
    font-family: "Roboto", sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 9px;
    line-height: 1.45;
}

.blog-excerpt {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.blog-meta {
    display: flex;
    gap: 14px;
    font-size: 0.72rem;
    color: #9ca3af;
    align-items: center;
    flex-wrap: wrap;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
    transition: gap 0.25s;
}

.blog-card:hover .read-more {
    gap: 9px;
}

/* ===== CONTACT ===== */
#contact {
    background: var(--section-alt);
}

.contact-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 15px;
    font-size: 0.88rem;
    color: var(--text);
    font-family: "Roboto", sans-serif;
    background: #fff;
    transition: all 0.25s;
    outline: none;
    appearance: none;
}

.contact-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.contact-input::placeholder {
    color: #9ca3af;
}

label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
    font-family: "Roboto", sans-serif;
}

.info-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.08);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.info-lbl {
    font-size: 0.67rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.info-val {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--primary);
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 70px 0 48px;
}

.footer-brand-name {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.footer-brand-name span {
    color: var(--accent2);
}

.footer-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 280px;
    margin: 12px 0 20px;
}

.footer-head {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: all 0.25s;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    padding: 11px 14px;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 0.86rem;
    outline: none;
    margin-bottom: 10px;
    transition: border-color 0.25s;
}

.footer-input:focus {
    border-color: var(--accent);
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-soc {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.fsoc {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s;
}

.fsoc:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== BACK TO TOP ===== */
#btt {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 995;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(26, 5, 51, 0.35);
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.35s;
}

#btt.show {
    opacity: 1;
    transform: translateY(0);
}

#btt:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

/* ===== AOS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos-delay="80"] {
    transition-delay: 0.08s;
}

[data-aos-delay="160"] {
    transition-delay: 0.16s;
}

[data-aos-delay="240"] {
    transition-delay: 0.24s;
}

[data-aos-delay="60"] {
    transition-delay: 0.06s;
}

[data-aos-delay="120"] {
    transition-delay: 0.12s;
}

[data-aos-delay="180"] {
    transition-delay: 0.18s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .nav-links,
    .nav-cta {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 65px 0;
    }

    #hero {
        padding: 120px 0 65px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stat {
        padding-right: 18px;
        margin-right: 18px;
    }

    .hero-stat-num {
        font-size: 1.7rem;
    }

    .hero-right {
        display: none;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btn-main,
    .hero-btn-out {
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-stat {
        border-right: none !important;
        padding-right: 0;
        margin-right: 0;
        flex: 0 0 calc(50% - 8px);
    }
}

.grid-footer {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .grid-footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .grid-footer {
        grid-template-columns: 1fr;
    }
}