:root {
    --primary: #6c4bd8;
    --primary-light: #8b65f0;
    --dark-bg: #0d0d1a;
    --dark-section: #1a1a2e;
    --light-bg: #f4f4f0;
    --light-alt: #e8e8e2;
    --text-muted: #9e9fb8;
    --text-dark: #1a1a2e;
    --text-body: #5a5a72;
    --font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d0d1a; }
::-webkit-scrollbar-thumb { background: rgba(108,75,216,0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(108,75,216,0.6); }
* { scrollbar-width: thin; scrollbar-color: rgba(108,75,216,0.35) #0d0d1a; }

body {
    font-family: var(--font-family);
    overflow-x: hidden;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99998;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== RIPPLE EFFECT ===== */
.ripple-btn {
    position: relative;
    overflow: hidden;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out forwards;
    pointer-events: none;
}
@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar-main {
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}
.navbar-main.scrolled {
    background: rgba(13, 13, 26, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.navbar-main .navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    letter-spacing: -0.5px;
}
.navbar-main .navbar-brand img {
    transition: all 0.35s ease;
    height: 40px;
}
.navbar-main:not(.scrolled) .navbar-brand img {
    height: 54px;
}
@media (max-width: 576px) {
    .navbar-main .navbar-brand img { height: 36px; }
    .navbar-main:not(.scrolled) .navbar-brand img { height: 44px; }
}
.navbar-main .navbar-brand span {
    color: var(--primary-light);
}
.navbar-main .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    border-radius: 20px;
}
.navbar-main .nav-link:hover {
    color: #fff !important;
}
.navbar-main .nav-link.active {
    background: var(--primary);
    color: #fff !important;
}
.btn-outline-purple {
    border: 2px solid var(--primary);
    color: #fff;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 13px;
    background: transparent;
    transition: all 0.3s ease;
}
.btn-outline-purple:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    background:
        radial-gradient(circle at 1px 1px, rgba(108, 75, 216, 0.06) 1px, transparent 0),
        var(--dark-bg);
    background-size: 40px 40px, auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(108, 75, 216, 0.35),
        rgba(13, 13, 26, 0.92)
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 75, 216, 0.15);
    border: 1px solid rgba(108, 75, 216, 0.3);
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 25px;
}
.hero-section h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-section h1 .highlight {
    color: var(--primary-light);
    font-size: 0.7em;
    display: inline-block;
}
.hero-section .hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 35px;
}

/* ===== HERO HEADING WORD REVEAL ===== */
.hero-heading .hw {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
    letter-spacing: -0.04em;
    animation: hwReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--i) * 0.12s + 0.3s);
}
@keyframes hwReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
        letter-spacing: -0.04em;
    }
    60% {
        opacity: 1;
        transform: translateY(-2px);
        filter: blur(0);
        letter-spacing: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
        letter-spacing: 0;
    }
}
.hero-heading .highlight {
    font-size: 0.7em;
    background: linear-gradient(135deg, #8B65F0, #00D4FF, #7B63FF, #8B65F0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hwReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               gradientShift 5s ease-in-out infinite;
    animation-delay: calc(5 * 0.12s + 0.3s), calc(5 * 0.12s + 1.5s);
    filter: none !important;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== HERO BLOBS — True 3D Glass Orbs ===== */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}
.hero-blob::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

/* Blob 1 — Top Left: Deep Indigo Orb */
.hero-blob-1 {
    width: 620px;
    height: 620px;
    top: -160px;
    left: -160px;
    background: radial-gradient(
        ellipse at 60% 60%,
        rgba(25, 28, 85, 0.92) 0%,
        rgba(18, 20, 65, 0.7) 45%,
        rgba(10, 12, 40, 0) 75%
    );
    animation: floatBlob1 13s ease-in-out infinite;
}
.hero-blob-1::before {
    background: radial-gradient(
        ellipse at 72% 75%,
        rgba(190, 210, 255, 0.3) 0%,
        rgba(140, 160, 255, 0.12) 30%,
        transparent 60%
    );
}

/* Blob 2 — Top Right: Vivid Purple Orb */
.hero-blob-2 {
    width: 380px;
    height: 380px;
    top: -90px;
    right: 80px;
    background: radial-gradient(
        ellipse at 40% 45%,
        rgba(88, 52, 218, 0.95) 0%,
        rgba(65, 38, 175, 0.75) 40%,
        rgba(30, 15, 90, 0) 72%
    );
    animation: floatBlob2 9s ease-in-out infinite 2s;
}
.hero-blob-2::before {
    background: radial-gradient(
        ellipse at 82% 25%,
        rgba(230, 220, 255, 0.55) 0%,
        rgba(180, 160, 255, 0.25) 25%,
        transparent 55%
    );
}

/* Blob 3 — Bottom Right: Dark Navy Orb */
.hero-blob-3 {
    width: 680px;
    height: 680px;
    bottom: -220px;
    right: -120px;
    background: radial-gradient(
        ellipse at 38% 35%,
        rgba(18, 22, 72, 0.9) 0%,
        rgba(14, 17, 55, 0.65) 42%,
        rgba(8, 10, 35, 0) 72%
    );
    animation: floatBlob3 15s ease-in-out infinite 1s;
}
.hero-blob-3::before {
    background: radial-gradient(
        ellipse at 22% 18%,
        rgba(185, 200, 255, 0.28) 0%,
        rgba(130, 150, 230, 0.12) 30%,
        transparent 58%
    );
}

/* Blob 4 — Bottom Left: Purple-Indigo */
.hero-blob-4 {
    width: 300px;
    height: 300px;
    bottom: 20px;
    left: 40px;
    background: radial-gradient(
        ellipse at 45% 42%,
        rgba(65, 42, 168, 0.72) 0%,
        rgba(45, 28, 125, 0.45) 45%,
        transparent 72%
    );
    animation: floatBlob4 11s ease-in-out infinite 3.5s;
}
.hero-blob-4::before {
    background: radial-gradient(
        ellipse at 70% 28%,
        rgba(170, 155, 255, 0.22) 0%,
        transparent 50%
    );
}

/* Blob mouse parallax transition */
.hero-blob {
    transition: margin-left 0.4s ease-out, margin-top 0.4s ease-out;
}
@media (hover: none) and (pointer: coarse) {
    .hero-blob { transition: none !important; }
}

/* Blob Animations — Organic, Non-Synchronized */
@keyframes floatBlob1 {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    25% {
        transform: translate(14px, -8px) scale(1.02);
    }
    50% {
        transform: translate(18px, 12px) scale(1.01);
    }
    75% {
        transform: translate(-6px, 16px) scale(0.98);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}
@keyframes floatBlob2 {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    30% {
        transform: translate(-16px, 10px) scale(1.03);
    }
    60% {
        transform: translate(10px, -14px) scale(0.97);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}
@keyframes floatBlob3 {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    20% {
        transform: translate(-12px, -16px) scale(1.01);
    }
    55% {
        transform: translate(16px, -8px) scale(0.99);
    }
    80% {
        transform: translate(-8px, 14px) scale(1.02);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}
@keyframes floatBlob4 {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    20% {
        transform: translate(10px, -12px) scale(1.03);
    }
    50% {
        transform: translate(-14px, 8px) scale(0.97);
    }
    75% {
        transform: translate(12px, 14px) scale(1.02);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

/* ===== HERO VISUAL — Code Dashboard ===== */
.hero-visual-col {
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
}
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 440px;
}
.code-window {
    background: rgba(15, 15, 35, 0.85);
    border: 1px solid rgba(108, 75, 216, 0.2);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: visualFloat 6s ease-in-out infinite;
}
.code-header {
    display: flex;
    gap: 7px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot--red { background: #ff5f56; }
.dot--yellow { background: #ffbd2e; }
.dot--green { background: #27c93f; }
.code-body {
    padding: 16px 20px;
    font-family: "Courier New", monospace;
    font-size: 13px;
    line-height: 2;
    min-height: 140px;
}
.code-line {
    opacity: 0;
    transform: translateY(8px);
    animation: codeLineIn 0.5s ease forwards;
    animation-delay: calc(var(--i) * 0.25s + 0.5s);
    color: rgba(255, 255, 255, 0.55);
}
.code-line.success {
    color: rgba(39, 201, 63, 0.7);
}
.code-prompt {
    color: rgba(108, 75, 216, 0.6);
    margin-right: 8px;
}
.code-cmd {
    color: rgba(150, 200, 255, 0.7);
}
.code-check {
    margin-right: 8px;
}
.code-cursor::after {
    content: "|";
    animation: cursorBlink 0.8s step-end infinite;
    color: rgba(150, 200, 255, 0.5);
}
@keyframes codeLineIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes cursorBlink {
    50% { opacity: 0; }
}
@keyframes visualFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== ROTATING CARD (3 Slides) ===== */
.rotating-card {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: rgba(20, 20, 50, 0.92);
    border: 1px solid rgba(108, 75, 216, 0.18);
    border-radius: 14px;
    padding: 18px 22px;
    min-width: 175px;
    backdrop-filter: blur(12px);
    animation: visualFloat 6s ease-in-out infinite 2s;
    text-align: center;
    pointer-events: none;
}
.rc-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.rc-slide--active { display: flex; }
.rc-icon {
    font-size: 22px;
    color: var(--primary-light);
    margin-bottom: 4px;
}
.rc-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
}
.rc-value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.rc-suffix {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}
.rc-swatches {
    display: flex;
    gap: 6px;
    margin: 4px 0;
}
.rc-swatches span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.rc-desc {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.25);
}
.rc-dots {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 8px;
}
.rc-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}
.rc-dot--active {
    background: var(--primary-light);
    width: 18px;
    border-radius: 3px;
}

/* ===== HERO TECH TAGS ===== */
.hero-tech-tags {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.tech-tag {
    position: absolute;
    left: calc(var(--x) * 1%);
    top: calc(var(--y) * 1%);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    animation: tagFloat calc(var(--d) * 1s) ease-in-out infinite;
    animation-delay: calc(var(--d) * -0.3s);
}
@keyframes tagFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-18px) translateX(6px); }
    66% { transform: translateY(12px) translateX(-8px); }
}

/* ===== HERO SCROLL INDICATOR ===== */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-scroll-indicator.fade-out {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    pointer-events: none;
}
.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-wheel {
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}
.scroll-text {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 576px) {
    .hero-scroll-indicator { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-blob,
    .hero-blob::before,
    .hero-mesh,
    .tech-geo,
    .shooting-star,
    .hero-star,
    .code-window,
    .rotating-card,
    .tech-tag,
    .scroll-wheel {
        animation: none !important;
    }
    .hero-heading .hw {
        opacity: 1;
        transform: none;
        filter: none;
        letter-spacing: 0;
        animation: none;
    }
    .hero-heading .highlight {
        -webkit-text-fill-color: var(--primary-light);
        background: none;
        animation: none;
    }
    .hero-blob {
        transition: none !important;
    }
    .service-card {
        opacity: 1;
        transform: none;
    }
    .row.section-reveal.visible .why-card {
        opacity: 1;
        transform: none;
    }
    .row.section-reveal.visible .why-card-icon {
        transform: scale(1) rotate(0) !important;
    }
    .testimonial-card {
        transition: none !important;
    }
    .testimonial-card:hover {
        transform: none !important;
    }
    .footer-col a::after {
        display: none;
    }
    .btn-magnetic:hover {
        transform: none !important;
    }
    .code-line {
        opacity: 1;
        transform: none;
    }
}

/* Star decoration */
.hero-stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-star {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: twinkle var(--twinkle-dur, 3s) ease-in-out infinite;
    animation-delay: var(--twinkle-delay, 0s);
}
@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.6); }
}

/* Shooting Stars */
.shooting-stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.7), rgba(255,255,255,0));
    transform: rotate(-30deg);
    border-radius: 1px;
    opacity: 0;
    animation: shoot 7s linear infinite;
}
.shooting-star:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}
.shooting-star:nth-child(2) {
    top: 35%;
    left: 60%;
    animation-delay: 3.5s;
    animation-duration: 9s;
}
.shooting-star:nth-child(3) {
    top: 55%;
    left: 25%;
    animation-delay: 6s;
    animation-duration: 6s;
}
@keyframes shoot {
    0% { transform: rotate(-30deg) translateX(0); opacity: 0; }
    5% { opacity: 1; }
    30% { transform: rotate(-30deg) translateX(250px); opacity: 1; }
    35% { opacity: 0; }
    100% { transform: rotate(-30deg) translateX(350px); opacity: 0; }
}

/* Gradient Mesh Background */
.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}
.hero-mesh-1 {
    width: 650px;
    height: 650px;
    top: -15%;
    left: -10%;
    background: rgba(0, 180, 255, 0.08);
    animation: meshDrift 22s ease-in-out infinite;
}
.hero-mesh-2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    right: -5%;
    background: rgba(139, 101, 240, 0.07);
    animation: meshDrift 28s ease-in-out infinite 3s;
}
.hero-mesh-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    right: 25%;
    background: rgba(0, 200, 255, 0.05);
    animation: meshDrift 18s ease-in-out infinite 6s;
}
@keyframes meshDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.15); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.1); }
}

/* Floating Tech Geometry */
.hero-tech-geo {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.tech-geo {
    position: absolute;
    will-change: transform;
}
.tech-geo-1 {
    width: 50px;
    height: 56px;
    top: 18%;
    right: 14%;
    background: rgba(0, 212, 255, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    animation: geoFloat1 16s ease-in-out infinite;
}
.tech-geo-2 {
    width: 36px;
    height: 36px;
    top: 60%;
    right: 28%;
    background: rgba(139, 101, 240, 0.08);
    border: 1px solid rgba(139, 101, 240, 0.15);
    transform: rotate(45deg);
    animation: geoFloat2 20s ease-in-out infinite 2s;
}
.tech-geo-3 {
    width: 80px;
    height: 80px;
    top: 38%;
    right: 4%;
    border: 1.5px solid rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: geoFloat3 22s ease-in-out infinite 1s;
}
.tech-geo-3::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 212, 255, 0.08);
    border-radius: 50%;
}
.tech-geo-4 {
    width: 10px;
    height: 10px;
    top: 28%;
    right: 38%;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.15);
    animation: geoFloat4 12s ease-in-out infinite 4s;
}
.tech-geo-5 {
    font-size: 48px;
    color: rgba(0, 212, 255, 0.06);
    font-weight: 100;
    font-family: "Courier New", monospace;
    top: 58%;
    right: 6%;
    letter-spacing: -8px;
    animation: geoFloat5 24s ease-in-out infinite;
}
.tech-geo-6 {
    width: 24px;
    height: 24px;
    top: 12%;
    right: 30%;
    animation: geoFloat6 18s ease-in-out infinite 3s;
}
.tech-geo-6::before,
.tech-geo-6::after {
    content: '';
    position: absolute;
    background: rgba(139, 101, 240, 0.12);
}
.tech-geo-6::before {
    width: 100%;
    height: 1.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.tech-geo-6::after {
    width: 1.5px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

@keyframes geoFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(18px, -28px) rotate(18deg); }
    45% { transform: translate(-12px, 14px) rotate(40deg); }
    70% { transform: translate(24px, 18px) rotate(25deg); }
}
@keyframes geoFloat2 {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    30% { transform: rotate(45deg) translate(-18px, -22px); }
    60% { transform: rotate(90deg) translate(12px, 12px); }
}
@keyframes geoFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(22px, -16px) scale(1.08); }
    50% { transform: translate(-16px, 12px) scale(0.94); }
    75% { transform: translate(12px, -22px) scale(1.04); }
}
@keyframes geoFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(-24px, -34px) scale(1.8); opacity: 0.8; }
}
@keyframes geoFloat5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.06; }
    50% { transform: translate(-20px, 12px) rotate(8deg); opacity: 0.15; }
}
@keyframes geoFloat6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -14px) rotate(45deg); }
    66% { transform: translate(-10px, 22px) rotate(90deg); }
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 11px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 75, 216, 0.4);
    color: #fff;
}
.btn-gradient:hover i {
    animation: btnArrowMove 0.7s ease forwards;
}
@keyframes btnArrowMove {
    0% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(6px); opacity: 0; }
    51% { transform: translateX(-6px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
.btn-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 25px;
    padding: 11px 22px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.btn-arrow .arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: 0.3s;
    font-size: 13px;
}
.btn-arrow:hover {
    border-color: var(--primary);
    color: #fff;
}
.btn-arrow:hover .arrow-circle {
    background: var(--primary);
    transform: translateX(4px);
}

/* Magnetic Buttons */
.btn-magnetic {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
}

/* Hero Scroll Progress */
.hero-scroll-progress {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 50px;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.hero-scroll-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), #00D4FF);
    border-radius: 2px;
    transition: width 0.2s ease;
}

/* ===== SECTION DIVIDER ===== */
.section-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.section-title::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 15px 0 0;
    border-radius: 2px;
    transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.section-title.text-center::after {
    margin: 15px auto 0;
}
.section-title.title-visible::after {
    width: 55px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 700px;
}

/* ===== WHY CHOOSE ===== */
.why-section {
    position: relative;
    background:
        radial-gradient(circle at 1px 1px, rgba(108, 75, 216, 0.06) 1px, transparent 0),
        var(--dark-section);
    background-size: 40px 40px, auto;
    padding: 90px 0;
    overflow: hidden;
}
.why-section .section-title {
    color: #fff;
}
.why-section p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto;
}
.why-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -120px;
    right: -100px;
    background: radial-gradient(ellipse at 40% 50%, rgba(108, 75, 216, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.why-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(108, 75, 216, 0.08);
    border-radius: 16px;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 1;
}
.row.section-reveal.visible .why-card {
    opacity: 1;
    transform: translateY(0);
}
.row.section-reveal.visible .col-md-4:nth-child(1) .why-card { transition-delay: 0s; }
.row.section-reveal.visible .col-md-4:nth-child(2) .why-card { transition-delay: 0.12s; }
.row.section-reveal.visible .col-md-4:nth-child(3) .why-card { transition-delay: 0.24s; }
.why-card:hover {
    box-shadow: 0 12px 40px rgba(108, 75, 216, 0.1);
    border-color: rgba(108, 75, 216, 0.2);
    transform: translateY(-4px);
}
.why-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(108, 75, 216, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: scale(0) rotate(-20deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.row.section-reveal.visible .why-card-icon {
    transform: scale(1) rotate(0deg);
}
.row.section-reveal.visible .col-md-4:nth-child(1) .why-card-icon { transition-delay: 0.05s; }
.row.section-reveal.visible .col-md-4:nth-child(2) .why-card-icon { transition-delay: 0.17s; }
.row.section-reveal.visible .col-md-4:nth-child(3) .why-card-icon { transition-delay: 0.29s; }
.why-card:hover .why-card-icon {
    transform: scale(1.12) rotate(10deg);
    background: rgba(108, 75, 216, 0.15);
}
.why-icon-svg {
    width: 22px;
    height: 22px;
    display: block;
    color: var(--primary);
}
.why-card-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.svg-draw {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: svgDraw 0.5s ease-out var(--delay, 0s) forwards;
    animation-play-state: paused;
}
.row.section-reveal.visible .svg-draw {
    animation-play-state: running;
}
@keyframes svgDraw {
    to { stroke-dashoffset: 0; }
}

/* ===== SERVICES ===== */
.services-section {
    position: relative;
    background:
        radial-gradient(circle at 1px 1px, rgba(108, 75, 216, 0.06) 1px, transparent 0),
        var(--dark-section);
    background-size: 40px 40px, auto;
    padding: 90px 0;
}
.services-section .section-title {
    color: #fff;
}
.services-section .section-subtitle {
    color: var(--text-muted);
    margin: 0 auto 50px;
    text-align: center;
}

.services-section .row {
    perspective: 1000px;
}
.services-section::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(108,75,216,0.08);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 8%;
    right: -40px;
    pointer-events: none;
    z-index: 0;
    animation: floatShape1 12s ease-in-out infinite;
}
.services-section::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(108,75,216,0.06);
    border-radius: 50%;
    bottom: 5%;
    left: -20px;
    pointer-events: none;
    z-index: 0;
    animation: floatShape2 15s ease-in-out infinite;
}
@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-20px, 30px) rotate(120deg) scale(1.05); }
    66% { transform: translate(10px, -20px) rotate(240deg) scale(0.95); }
}
@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -25px) rotate(180deg); }
}
.why-section::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(108,75,216,0.06);
    border-radius: 50%;
    top: -40px;
    right: 10%;
    pointer-events: none;
    z-index: 0;
    animation: floatShape3 18s ease-in-out infinite;
}
@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(0.9); }
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(108, 75, 216, 0.12);
    border-radius: 16px;
    padding: 35px 28px 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) rotateX(5deg);
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}
.service-card .icon-circle i {
    transition: transform 0.3s ease;
}
.service-card.visible .icon-circle i {
    animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.service-card:hover {
    box-shadow:
        0 25px 50px rgba(108, 75, 216, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.3);
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        var(--primary-light),
        var(--primary),
        transparent
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: 0.35s;
    z-index: 1;
}
.service-card.visible::before,
.service-card:hover::before {
    opacity: 1;
    animation: borderSweep 2.5s ease-in-out infinite;
}
@keyframes borderSweep {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    transition: 0.4s;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(108, 75, 216, 0.08);
    pointer-events: none;
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover::after {
    opacity: 1;
}
.service-card:hover {
    background: #b6c0d1;
    transform: perspective(800px) rotateY(-4deg) rotateX(3deg) scale(1.06)
        translateZ(20px);
    box-shadow:
        0 25px 50px rgba(108, 75, 216, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: transparent;
}
.service-card:hover h4 {
    color: #1a1a2e;
}
.service-card:hover p {
    color: #3d3d5c;
}
.service-card:hover .icon-circle {
    background: #1a1a2e;
    color: #fff;
}
.service-card .icon-circle {
    width: 65px;
    height: 65px;
    background: rgba(108, 75, 216, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 26px;
    color: var(--primary);
    transition: all 0.35s ease;
}
.service-card:hover .icon-circle {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}
.service-card h4 {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}
.service-cta {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    letter-spacing: 0.5px;
}
.service-card:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}
.service-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(108, 75, 216, 0.25);
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}
.service-card:hover .service-number {
    color: var(--primary);
    transform: scale(1.15);
}

/* Service Modal */
.service-modal .modal-content {
    background: #1a1a2e;
    border: 1px solid rgba(108, 75, 216, 0.2);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(108,75,216,0.1);
}
.service-modal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 28px 28px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.service-modal .btn-close {
    margin-left: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s;
}
.service-modal .btn-close:hover { opacity: 1; }
.service-modal-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(108, 75, 216, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}
.service-modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.service-modal .modal-body {
    padding: 24px 28px 32px;
    color: #b8b8d0;
    font-size: 15px;
    line-height: 1.75;
}
.service-modal .modal-body p { margin: 0; }
.service-card { cursor: pointer; }
.btn-arrow-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 40px;
    padding: 14px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.btn-arrow-white .arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}
.btn-arrow-white:hover {
    border-color: var(--primary);
    color: #fff;
}
.btn-arrow-white:hover .arrow-circle {
    background: var(--primary);
    transform: translateX(4px);
}

/* ===== STATISTICS ===== */
.stats-section {
    padding: 80px 0;
    position: relative;
    background: url('../../media/images/stats-section.png') center/cover no-repeat;
}
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.6;
}
.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 25px 15px;
}
.stat-icon {
    position: relative;
    z-index: 1;
    font-size: 34px;
    color: rgba(108, 75, 216, 0.25);
    margin-bottom: 12px;
}
.stat-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    z-index: 0;
    opacity: 0.5;
}
.stat-ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.06);
    stroke-width: 3;
}
.stat-ring-fill {
    fill: none;
    stroke: url(#statGrad);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 326.7;
    stroke-dashoffset: 326.7;
    transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-item.counted .stat-ring-fill {
    stroke-dashoffset: 0;
}
.stat-number {
    font-size: 46px;
    font-weight: 500;
    color: white;
    line-height: 1.1;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}
.stat-progress {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    margin: 10px auto 0;
    overflow: hidden;
}
.stat-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-progress span { width: 0; }
.stat-label {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: white;
    font-weight: 700;
}
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    transition: width 2s ease;
}
.stat-item.counted::after {
    width: 60px;
}

/* ===== TESTIMONIALS CAROUSEL (Slick) ===== */
.testimonials-section {
    position: relative;
    background:
        radial-gradient(circle at 1px 1px, rgba(108, 75, 216, 0.06) 1px, transparent 0),
        var(--dark-section);
    background-size: 40px 40px, auto;
    padding: 90px 0;
    overflow: hidden;
}
.testimonials-section .section-title {
    color: #fff;
}

.testimonials-carousel {
    margin: 0 -10px;
}

.testimonial-slide {
    padding: 28px 10px 15px;
    overflow: hidden;
}
.stars .star {
    display: inline-block;
    opacity: 0;
    transform: scale(0) rotate(-30deg);
    transition: none;
    color: #f5b342;
    font-size: 15px;
}
.slick-current .stars .star {
    animation: starPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.slick-current .stars .star:nth-child(1) { animation-delay: 0.05s; }
.slick-current .stars .star:nth-child(2) { animation-delay: 0.12s; }
.slick-current .stars .star:nth-child(3) { animation-delay: 0.19s; }
.slick-current .stars .star:nth-child(4) { animation-delay: 0.26s; }
.slick-current .stars .star:nth-child(5) { animation-delay: 0.33s; }
@keyframes starPop {
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}
.client-avatar {
    position: relative;
}
.avatar-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    margin: -27px 0 0 -27px;
    border: 1.5px solid rgba(108, 75, 216, 0.2);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.slick-current .avatar-orbit {
    opacity: 1;
    animation: orbitSpin 6s linear infinite;
}
@keyframes orbitSpin {
    to { transform: rotate(360deg); }
}
.slick-current .avatar-orbit::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: var(--primary);
    border-radius: 50%;
}
.testimonial-slide .testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.testimonial-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}
.slick-slide.slick-current .testimonial-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
}

/* Slick center mode overrides */
.testimonials-carousel .slick-slide {
    opacity: 0.4;
    filter: blur(2px);
    transform: scale(0.82);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}
.testimonials-carousel .slick-slide.slick-current {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.12);
    pointer-events: auto;
    z-index: 2;
    position: relative;
}
.testimonials-carousel .slick-slide.slick-current .testimonial-card {
    box-shadow: 0 15px 40px rgba(108, 75, 216, 0.15);
    border: 2px solid var(--primary);
}
.testimonials-carousel .slick-slide:not(.slick-current) .featured-badge {
    display: none;
}

/* Slick arrows */
.testimonials-carousel .slick-prev,
.testimonials-carousel .slick-next {
    width: 44px;
    height: 44px;
    z-index: 10;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.testimonials-carousel .slick-prev:hover,
.testimonials-carousel .slick-next:hover {
    background: var(--primary);
}
.testimonials-carousel .slick-prev {
    left: -10px;
}
.testimonials-carousel .slick-next {
    right: -10px;
}
.testimonials-carousel .slick-prev::before,
.testimonials-carousel .slick-next::before {
    font-family: "slick";
    font-size: 18px;
    color: var(--primary);
    opacity: 1;
    transition: 0.3s;
}
.testimonials-carousel .slick-prev:hover::before,
.testimonials-carousel .slick-next:hover::before {
    color: #fff;
}

/* Slick dots */
.testimonials-carousel .slick-dots {
    bottom: -40px;
}
.testimonials-carousel .slick-dots li button::before {
    font-size: 10px;
    color: var(--primary);
    opacity: 0.3;
    transition: 0.3s;
}
.testimonials-carousel .slick-dots li.slick-active button::before {
    opacity: 1;
    color: var(--primary);
}

/* Testimonial card inner styles */
.featured-badge {
    display: inline-block;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    padding: 4px 18px;
    border-radius: 20px;
    font-weight: 500;
    white-space: nowrap;
}
.testimonial-card .stars {
    color: #ffb800;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.testimonial-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.testimonial-card .testimonial-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial-card .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.testimonial-card .client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-card .client-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}
.testimonial-card .client-role {
    font-size: 12px;
    color: var(--text-muted);
    text-align: left;
}

/* ===== CONTACT US ===== */
.contact-section {
    background: var(--dark-section);
    padding: 80px 0;
}
.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.contact-talk {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    flex-shrink: 0;
}
.contact-desc {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0;
    line-height: 1.7;
    text-align: right;
}
.contact-title {
    color: #fff !important;
}
.contact-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}
.contact-form-wrap label {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}
.contact-input {
    background: transparent !important;
    border: 1px solid #3A3A5A !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    color: #fff !important;
    font-family: var(--font-family);
    font-size: 14px;
    transition: border-color 0.3s ease;
}
.contact-input::placeholder {
    color: #6A6A8A;
    opacity: 1;
}
.contact-input:focus {
    border-color: var(--primary) !important;
    box-shadow: none !important;
    outline: none;
}
.contact-textarea {
    min-height: 200px;
    resize: vertical;
}
.contact-submit {
    display: block;
    width: 100%;
    height: 50px;
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: 28px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.contact-submit:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 75, 216, 0.3);
}
.contact-terms {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 300;
    color: #6A6A8A;
    text-align: center;
    margin: 24px 0 16px;
    line-height: 1.6;
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: #D6D6D4;
    padding: 0;
    position: relative;
    z-index: 1;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 140px;
    gap: 24px;
}
.cta-strip-text {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #8FA0B8;
    line-height: 1.1;
}
.cta-strip-text .cta-highlight {
    font-family: 'Oswald', sans-serif;
    color: #7B63FF;
    font-weight: 400;
    display: inline-block;
    min-width: 200px;
    text-align: left;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1D2A3E;
    color: #fff;
    text-decoration: none;
    width: 190px;
    height: 48px;
    border-radius: 28px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    box-shadow: 0 10px 18px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.cta-btn:hover {
    background: #2A3A52;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.4);
}
.cta-btn {
    animation: ctaGlow 2.5s ease-in-out infinite;
}
@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 10px 18px rgba(0,0,0,0.35), 0 0 0 rgba(108,75,216,0); }
    50% { box-shadow: 0 10px 24px rgba(0,0,0,0.35), 0 0 20px rgba(108,75,216,0.25); }
}
.cta-highlight::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #7B63FF;
    margin-left: 3px;
    vertical-align: -0.05em;
    animation: blinkCursor 0.75s step-end infinite;
    opacity: 0;
}
.cta-highlight.typing::after {
    opacity: 1;
}
@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== FOOTER ===== */
.footer {
    background-color: #122236;
    position: relative;
    z-index: 2;
    background-image:
        radial-gradient(ellipse at 15% 30%, rgba(255,255,255,0.025) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(255,255,255,0.015) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.006) 3px, rgba(255,255,255,0.006) 5px),
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
    background-size: auto, auto, auto, 40px 40px;
}
.footer-stage {
    display: flex;
    align-items: flex-start;
    min-height: 400px;
}
.footer-work-card {
    flex: 0 0 52vw;
    background: linear-gradient(135deg, #B8C5D6, #d0dae8, #a8b8cc, #B8C5D6);
    background-size: 300% 300%;
    animation: workCardGrad 8s ease-in-out infinite;
    border-top-right-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    margin-top: -52px;
    padding: 40px 30px 35px;
    min-height: 440px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}
@keyframes workCardGrad {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.work-card-content {
    text-align: center;
    max-width: 600px;
}
.work-ready-text {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #1D2A3E;
    margin-bottom: 14px;
    letter-spacing: 1px;
}
.work-title {
    font-family: 'Oswald', sans-serif;
    font-size: 58px;
    font-weight: 600;
    color: #1D2A3E;
    line-height: 1.08;
    margin-bottom: 34px;
}
.work-card-btn {
    display: inline-block;
    background: #1D2A3E;
    color: #fff;
    text-decoration: none;
    border-radius: 28px;
    padding: 11px 36px;
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.work-card-btn:hover {
    background: #2A3A52;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.footer-columns {
    flex: 1;
    display: flex;
    gap: 42px;
    padding: 90px 40px 35px 44px;
}
.footer-col {
    flex: 1;
    min-width: 0;
}
.footer-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: #BBC6D2;
    margin-bottom: 10px;
    line-height: 1.1;
}
.footer-col-underline {
    width: 120px;
    height: 2px;
    background: #D7DEE8;
    margin-bottom: 22px;
}
.footer-col a {
    position: relative;
    display: inline-block;
    background: none !important;
    padding: 0 !important;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #7B63FF;
    text-decoration: none;
    line-height: 1.65;
    transition: color 0.3s ease;
}
.footer-col a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #7B63FF;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-col a:hover {
    color: #9B83FF;
}
.footer-col a:hover {
    color: #9B83FF;
    letter-spacing: 0.5px;
}
.footer-col a:hover::after {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7B63FF, #9B83FF);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
}
.footer-contact-item i {
    font-size: 22px;
    color: #D8DEE8;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.2s ease;
}
.footer-contact-item i:hover {
    color: #9B83FF;
    transform: scale(1.15);
}
.footer-contact-item i:active {
    transform: scale(0.9);
}
.footer-contact-item span {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #7B63FF;
    line-height: 1.25;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    margin-top: 10px;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Poppins', sans-serif;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
    z-index: 1;
}
.section-divider svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0d0d1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-ring {
    animation: loaderSpin 1s linear infinite;
    transform-origin: center;
}
@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

/* ===== SECTION REVEAL ===== */
.section-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SPLIT TEXT REVEAL ===== */
.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(15deg);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}
.split-word.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* ===== 404 ERROR PAGE ===== */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    padding: 120px 0;
}
.error-code {
    font-size: 140px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}
.error-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}
.error-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
@media (max-width: 576px) {
    .error-code { font-size: 100px; }
    .error-title { font-size: 22px; }
}

/* ===== CUSTOM LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: lbFadeIn 0.25s ease;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    cursor: default;
    animation: lbZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 2;
}
.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    opacity: 0.25;
    transition: all 0.3s ease;
    padding: 30px 20px;
    user-select: none;
    z-index: 2;
}
.lightbox-nav:hover {
    opacity: 1;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    letter-spacing: 1px;
    z-index: 2;
}
@keyframes lbFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes lbZoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@media (max-width: 576px) {
    .lightbox-nav { font-size: 32px; padding: 20px 10px; }
    .lightbox-close { top: 15px; right: 18px; font-size: 28px; }
}

/* ===== BACK TO TOP ===== */
.back-to-top-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    width: 60px;
    height: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.back-to-top-wrap.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.btt-ring {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.btt-ring-track {
    stroke: rgba(255,255,255,0.08);
}
.btt-ring-fill {
    transition: stroke-dashoffset 0.3s ease;
}
.back-to-top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(108,75,216,0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top:hover {
    background: var(--primary-light);
    transform: translate(-50%, -50%) translateY(-3px);
    box-shadow: 0 8px 24px rgba(108,75,216,0.5);
}
.back-to-top:active {
    transform: translate(-50%, -50%) scale(0.92);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 44px;
    }
}
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 36px;
    }
    .hero-section .hero-subtitle {
        font-size: 15px;
    }
    .section-title {
        font-size: 28px;
    }
    .stat-number {
        font-size: 38px;
    }
    .cta-strip-inner {
        min-height: 125px;
    }
    .cta-strip-text {
        font-size: 26px;
    }
    .cta-btn {
        width: 165px;
        height: 44px;
        font-size: 14px;
    }
    .footer-stage {
        flex-wrap: wrap;
    }
    .footer-work-card {
        flex: 0 0 100%;
        margin-top: -38px;
        min-height: 370px;
    }
    .work-title {
        font-size: 46px;
    }
    .footer-columns {
        padding: 38px 25px 35px;
        gap: 30px;
    }
    .footer-col-title {
        font-size: 27px;
    }
    .footer-col-underline {
        width: 110px;
    }
    .footer-col a {
        font-size: 18px;
    }
    .footer-contact-item span {
        font-size: 15px;
    }
    .footer-contact-item i {
        font-size: 20px;
        width: 23px;
    }
}
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 85vh;
    }
    .hero-section h1 {
        font-size: 28px;
    }
    .hero-section .hero-subtitle {
        font-size: 14px;
    }
    .section-title {
        font-size: 24px;
    }
    .stat-number {
        font-size: 32px;
    }
    .service-card {
        padding: 25px 20px;
    }
    .navbar-main .navbar-brand {
        font-size: 20px;
    }
    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 35px 0;
    }
    .cta-strip-text {
        font-size: 26px;
    }
    .cta-btn {
        width: 170px;
        height: 46px;
        font-size: 15px;
    }
    .footer-work-card {
        min-height: 370px;
        margin-top: -42px;
        border-top-right-radius: 56px;
    }
    .work-ready-text {
        font-size: 24px;
    }
    .work-title {
        font-size: 48px;
    }
    .work-card-btn {
        padding: 11px 32px;
        font-size: 15px;
    }
    .footer-columns {
        flex-direction: column;
        padding: 40px 25px 35px;
        gap: 35px;
    }
    .footer-col-title {
        font-size: 30px;
    }
    .section-divider svg {
        height: 30px;
    }
}
@media (max-width: 575.98px) {
    .navbar-main .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .hero-section h1 {
        font-size: 24px;
    }
    .btn-gradient,
    .btn-arrow {
        font-size: 13px;
        padding: 12px 22px;
    }
    .cta-strip-inner {
        min-height: auto;
        padding: 28px 0 48px;
    }
    .cta-strip-text {
        font-size: 24px;
    }
    .cta-btn {
        width: 155px;
        height: 42px;
        font-size: 14px;
    }
    .footer-work-card {
        margin-top: -30px;
        min-height: 320px;
        border-top-right-radius: 38px;
    }
    .work-ready-text {
        font-size: 20px;
    }
    .work-title {
        font-size: 38px;
    }
    .footer-col-title {
        font-size: 27px;
    }
    .footer-col a {
        font-size: 18px;
    }
    .footer-contact-item span {
        font-size: 15px;
    }
    .navbar-main .nav-link {
        text-align: center;
    }
}

/* Mobile navbar fix */
@media (max-width: 991.98px) {
    .navbar-main .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.2);
        padding: 6px 10px;
        outline: none;
        box-shadow: none;
    }
    .navbar-main .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(108, 75, 216, 0.4);
    }
    .navbar-main .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-collapse {
        background: var(--dark-bg);
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1050;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    .navbar-main .nav-link.active {
        background: transparent;
        color: var(--primary-light) !important;
    }
    .navbar-main .nav-link {
        text-align: center;
        padding: 10px !important;
    }
    .navbar-main .navbar-nav {
        gap: 2px;
    }
}
