/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

:root {
    --bg: #03080F;
    --bg2: #060E1A;
    --bg3: #0A1628;
    --blue: #00C8FF;
    --purple: #7B2FFF;
    --cyan: #00FFD1;
    --pink: #FF2D78;
    --white: #F0F6FF;
    --gray: #8899AA;
    --border: rgba(0, 200, 255, 0.12);
    --eblue: #0a3d6b;
    /* deep brand blue */
    --eblue2: #1565c0;
    /* mid blue */
    --eblue3: #1976d2;
    /* bright */
    --eacc: #0288d1;
    /* accent */
    --ecyan: #00bcd4;
    /* swirl cyan */
    --gold: #f5a623;
    --ink: #16202e;
    --muted: #647489;
    --line: #e6ecf3;
    --pale: #f3f8fd;
    --paleblue: #e9f3fc;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--blue);
}

/* ── GRID BG ── */
.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123, 47, 255, 0.12) 0%, transparent 70%);
}

/* ── WRAPPER ── */
.site-wrapper {
    position: relative;
    z-index: 2;
}

/* ── GRAD TEXT ── */
.grad-text {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════════
       NAVBAR
    ══════════════════════════════════ */
.navbar-custom {
    background: rgba(3, 8, 15, 0.75) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 0;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span {
    color: var(--blue);
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.navbar-nav .nav-link {
    color: var(--gray) !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.navbar-toggler {
    border-color: rgba(0, 200, 255, 0.3);
}

.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(0,200,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-nav-cta {
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff !important;
    border: none;
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(0, 200, 255, 0.5);
    color: #fff;
}

/* ══════════════════════════════════
       SECTION UTILITIES
    ══════════════════════════════════ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--blue);
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ══════════════════════════════════
       HERO
    ══════════════════════════════════ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 47, 255, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(0, 200, 255, 0.3);
    background: rgba(0, 200, 255, 0.05);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 2s infinite;
    display: block;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 36px rgba(0, 200, 255, 0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 200, 255, 0.5);
    color: #fff;
}

.btn-ghost-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-ghost-custom:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(0, 200, 255, 0.05);
}

/* Hero Visual */
.hero-visual-wrap {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: spin linear infinite;
}

.ring1 {
    width: 380px;
    height: 380px;
    border-color: rgba(0, 200, 255, 0.15);
    animation-duration: 30s;
}

.ring2 {
    width: 280px;
    height: 280px;
    border-color: rgba(123, 47, 255, 0.2);
    animation-duration: 20s;
    animation-direction: reverse;
}

.ring3 {
    width: 180px;
    height: 180px;
    border-color: rgba(0, 255, 209, 0.2);
    animation-duration: 15s;
}

.ring::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    box-shadow: 0 0 16px var(--blue);
}

.ring2::after {
    background: var(--purple);
    box-shadow: 0 0 16px var(--purple);
}

.ring3::after {
    background: var(--cyan);
    box-shadow: 0 0 16px var(--cyan);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-core {
    width: 110px;
    height: 110px;
    border-radius: 22px;
    z-index: 2;
    position: relative;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 0 60px rgba(0, 200, 255, 0.4);
    animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(0, 200, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 100px rgba(0, 200, 255, 0.7), 0 0 40px rgba(123, 47, 255, 0.5);
    }
}

.float-tag {
    position: absolute;
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
    animation: floatTag 4s ease-in-out infinite;
}

.ft1 {
    top: 8%;
    left: 0;
    animation-delay: 0s;
}

.ft2 {
    top: 35%;
    right: 0;
    animation-delay: 1s;
}

.ft3 {
    bottom: 22%;
    left: 4%;
    animation-delay: 2s;
}

.ft4 {
    bottom: 8%;
    right: 4%;
    animation-delay: 0.5s;
}

@keyframes floatTag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ══════════════════════════════════
       STATS
    ══════════════════════════════════ */
#stats {
    background: var(--bg);
    /* border-top: 1px solid var(--border); */
    /* border-bottom: 1px solid var(--border); */
    padding: 0;
}

.stats-row {
    margin: auto;
    border-right: 1px solid var(--border);
    border-radius: 20px;
    width: 80%;

}

.stat-col {
    padding: 42px 24px;
    text-align: center;
    transition: background 0.3s;
}

.stat-col:last-child {
    border-right: none;
}

.stat-col:hover {
    background: rgba(0, 200, 255, 0.03);
}

.stat-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--white), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

/* about */

.eyebrow-blue {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--eacc);
    margin-bottom: 10px;
}

.about {
    padding: 78px 0;
}

.about-card {
    background: var(--pale);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 22px;
    height: 100%;
}

.about-card .num {
    font-size: 30px;
    font-weight: 800;
    color: var(--eblue2);
    line-height: 1;
}

.about-card .t {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 6px;
}

.about .sec-sub {
    color: var(--gray);
}

.sig {
    font-style: italic;
    color: #46566b;
    border-left: 3px solid var(--ecyan);
    padding-left: 16px;
    margin-top: 24px;
    font-size: 15px;
}

/* ══════════════════════════════════
       SERVICES
    ══════════════════════════════════ */
#services {
    background: var(--bg2);
    padding: 90px 0;
}

.service-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 30px;
    height: 100%;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.05), rgba(123, 47, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 16px;
}

.service-card:hover {
    background: var(--bg3);
    border-color: rgba(0, 200, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 200, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.15), rgba(123, 47, 255, 0.15));
    border: 1px solid rgba(0, 200, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: transform 0.4s;
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.service-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.service-card:hover .service-link {
    gap: 9px;
}

/* ══════════════════════════════════
       AI SECTION
    ══════════════════════════════════ */
#ai-section {
    background: var(--bg);
    padding: 90px 0;
}

.ai-terminal {
    background: rgba(6, 14, 26, 0.95);
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 0 60px rgba(0, 200, 255, 0.1);
    overflow: hidden;
}

.terminal-bar {
    padding: 13px 18px;
    background: rgba(0, 200, 255, 0.04);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 7px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot-r {
    background: #FF5F57;
}

.dot-y {
    background: #FFBD2E;
}

.dot-g {
    background: #28C840;
}

.t-title {
    font-size: 0.72rem;
    color: var(--gray);
    margin: 0 auto;
    font-family: monospace;
}

.terminal-body {
    padding: 22px;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 2;
}

.t-prompt {
    color: var(--cyan);
}

.t-out {
    color: var(--gray);
}

.t-success {
    color: #28C840;
}

.t-warn {
    color: var(--blue);
}

.t-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--cyan);
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.ai-chips-wrap {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-chip {
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(0, 200, 255, 0.07);
    border: 1px solid rgba(0, 200, 255, 0.2);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--blue);
}

.ai-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    transition: all 0.3s;
    margin-bottom: 14px;
}

.ai-feature-item:hover {
    border-color: rgba(0, 200, 255, 0.3);
    background: rgba(0, 200, 255, 0.03);
}

.ai-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.2), rgba(123, 47, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ai-feat-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.ai-feat-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════
       TECH STACK
    ══════════════════════════════════ */
#tech {
    background: var(--bg2);
    padding: 90px 0;
    overflow: hidden;
}

.tech-scroll-outer {
    overflow: hidden;
    position: relative;
    margin-left: calc(-1 * (100vw - 100%) / 2 - 15px);
    margin-right: calc(-1 * (100vw - 100%) / 2 - 15px);
    padding: 0 0 8px;
}

.tech-scroll-outer::before,
.tech-scroll-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.tech-scroll-outer::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg2), transparent);
}

.tech-scroll-outer::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg2), transparent);
}

.tech-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
    padding: 8px 0;
}

.tech-track-rev {
    animation: scrollRight 25s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.tech-pill {
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s;
}

.tech-pill:hover {
    border-color: var(--blue);
    color: var(--white);
    background: rgba(0, 200, 255, 0.06);
}

.tech-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}

/* ══════════════════════════════════
       INDUSTRIES
    ══════════════════════════════════ */
#industries {
    background: var(--bg);
    padding: 90px 0;
}

.industry-card {
    padding: 22px 14px;
    border-radius: 13px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
}

.industry-card:hover {
    border-color: rgba(0, 200, 255, 0.4);
    background: rgba(0, 200, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 200, 255, 0.1);
}

.industry-icon {
    font-size: 1.9rem;
    display: block;
    margin-bottom: 9px;
}

.industry-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray);
    margin: 0;
}

.industry-card:hover .industry-name {
    color: var(--white);
}

/* ══════════════════════════════════
       HIRE
    ══════════════════════════════════ */
#hire {
    background: var(--bg2);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.hire-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 47, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.perk-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    margin-bottom: 12px;
}

.perk-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.perk-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 2px;
}

.perk-sub {
    font-size: 0.79rem;
    color: var(--gray);
    margin: 0;
}

.role-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    margin-bottom: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.role-card:hover {
    border-color: rgba(0, 200, 255, 0.3);
    background: rgba(0, 200, 255, 0.04);
}

.role-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    flex-shrink: 0;
}

.role-name {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0 12px;
}

.role-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
    background: rgba(0, 255, 209, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 255, 209, 0.2);
    white-space: nowrap;
}

/* ══════════════════════════════════
       RATINGS & AWARDS
    ══════════════════════════════════ */
#ratings {
    background: var(--bg);
    padding: 90px 0;
}

.rating-card {
    padding: 30px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.rating-card:hover {
    border-color: rgba(0, 200, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0, 200, 255, 0.1);
}

.rating-platform {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 10px;
}

.rating-score {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.rating-stars {
    color: #FFB800;
    font-size: 0.95rem;
    margin-top: 6px;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    margin: 6px;
    border: 1px solid rgba(255, 189, 0, 0.3);
    background: rgba(255, 189, 0, 0.05);
    font-size: 0.82rem;
    font-weight: 600;
    color: #FFB800;
}

/* ══════════════════════════════════
       CTA BANNER
    ══════════════════════════════════ */
#cta {
    background: var(--bg2);
    padding: 80px 0;
}

.cta-box {
    border-radius: 24px;
    padding: 72px 48px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.07) 0%, rgba(123, 47, 255, 0.09) 100%);
    border: 1px solid rgba(0, 200, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 200, 255, 0.05) 0%, transparent 70%);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    margin-bottom: 12px;
}

.cta-sub {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 36px;
    position: relative;
}

/* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 72px 0 36px;
}

.footer-brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-brand-name span {
    color: var(--blue);
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 280px;
}

.contact-line {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 18px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 9px;
}

.footer-list a {
    font-size: 0.82rem;
    color: var(--gray);
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 8px;
    color: var(--gray);
}

.social-btn:hover {
    border-color: var(--blue);
    background: rgba(0, 200, 255, 0.08);
    color: var(--blue);
}

/* ══════════════════════════════════
       FADE-UP ANIMATION
    ══════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ══════════════════════════════════
       RESPONSIVE TWEAKS
    ══════════════════════════════════ */
@media (max-width: 991px) {
    .hero-visual-wrap {
        height: 320px;
        margin-top: 40px;
    }

    .ring1 {
        width: 300px;
        height: 300px;
    }

    .ring2 {
        width: 220px;
        height: 220px;
    }

    .ring3 {
        width: 150px;
        height: 150px;
    }

    .hero-core {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }

    .stat-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .cta-box {
        padding: 40px 22px;
    }
}

/*new outstack section*/

.our-techstacks-section .tech-table {
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 1;
    margin: 0 auto 50px;
    width: 100%
}

.our-techstacks-section .tech-table .tech-card-box {
    background: transparent;
    flex: 0 0 16.66%;
    border: 1px solid rgba(0, 0, 0, .2);
    text-align: center;
    border-bottom: 0;
    border-top: 0;
    border-bottom: 0
}

.our-techstacks-section .tech-table .tech-card-box:not(:last-child) {
    border-right: none;
}

.our-techstacks-section .tech-table .tech-card-box:first-child {
    border-left: none;
}

.our-techstacks-section .tech-table .tech-card-box:last-child {
    border-right: navajowhite;
}

.our-techstacks-section .techcard li {
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    max-width: 100%;
    margin: 0;
    font-size: var(--fs-14);
    color: #fff;
}

.our-techstacks-section .techcard li a {
    color: #007db2;
    text-decoration: underline;
}

.our-techstacks-section .techcard li img {
    display: block;
    transition: all .3s;
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    margin: 0 auto 5px auto;
    max-width: 100%;
}

.our-techstacks-section .techcard li:before {
    display: none;
}

.our-techstacks-section .tech-card-box:last-child .techcard {
    margin-bottom: 0;
}

.our-techstacks-section .techcard li:hover img {
    transform: scale(1.1);
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    transition: max-height .5s ease-in-out
}

.tech-category h3 {
    font-size: var(--fs-16);
    font-weight: 500;
    border-bottom: 1px solid #b6b7c9;
    min-height: 64px;
    padding: 0 12px;
    line-height: 1.2;
    margin-bottom: 0;
    color: #fff;
}

.tech-development .btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px
}

.our-techstacks-section button.btn.see-more-btn {
    background: #007db2;
    border-radius: 100px;
    color: #fff;
    font-size: var(--fs-18);
    line-height: 1;
    font-weight: 600;
    padding: 12px 34px;
}

.see-more-btn .right-arrow {
    border: solid #fff;
    transition: all .3s;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    vertical-align: middle;
    transform: rotate(45deg);
    position: relative;
    top: -3px;
}

section.our-techstacks-section .btn.see-more-btn:focus {
    box-shadow: none;
}

.see-more-btn {
    background-color: #000;
    color: #fff;
    padding: 12px 34px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    align-items: center
}

.see-more-btn:hover {
    color: #000;
    border-color: #000;
    background-color: transparent
}

section.our-techstacks-section .btn.see-more-btn:hover {
    background: #fff;
    color: #007db2;
}

section.our-techstacks-section .btn.see-more-btn:hover .right-arrow {
    border-color: #007db2;
    transform: rotate(-136deg);
    top: 0;
    margin-top: 4px;
}

section.adv-techks .sec-head {
    max-width: 1130px;
}

.adv-techks .sers-icon {
    border-radius: 80px;
    background: rgba(0, 125, 178, 1);
    height: 80px;
    width: 80px;
    position: absolute;
    top: -40px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .our-techstacks-section .tech-table {
        max-width: inherit;
        justify-content: flex-start;
        margin-bottom: 0;
    }
}

/* testimonials */
.ttm {
    background: #fff;
}

.tcard .col-lg-4 {
    height: 100%;
}

.tcard {
    background: var(--pale);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 24px;
    height: 100%;
    position: relative;
}

.tcard .q {
    font-family: Georgia, serif;
    font-size: 54px;
    color: #cfe1f4;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.tcard .stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 12px;
}

.tcard p {
    font-size: 14px;
    color: #3a4a5e;
    line-height: 1.7;
    margin-bottom: 18px;
}

.tcard .who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard .av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--eblue2);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tcard .nm {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--eblue);
    line-height: 1.2;
}

.tcard .rl {
    font-size: 12px;
    color: var(--muted);
}

/* footer badge */
.footer-badges ul {
    max-width: 100%;
    list-style: none;
    padding: 0;
}

footer .footer-bottom .footer-badges li {
    max-width: 20%;
    width: 100%;
    padding: 0 7px;
}

.footer-badges li .saperator-line {
    display: inline-block;
    width: 1px;
    background: #244F6B;
    margin: 5px;
    border-radius: 100px;
    height: 20px;
    vertical-align: middle;
}
.footer-badges li {
    padding: 0px 5px;
}
.footer-badges li a {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    padding: 20px 10px;
    width: 100%;
    text-decoration: none;
    text-align: center;
    opacity: 1;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media (min-width:768px) and (max-width:1199px) {
    .footer-badges li a {
        padding: 12px 0;
        height: 100%;
    }

    .rating-number {
        font-size: 12px;
    }

    .footer-badges li a img {
        max-width: 75px;
    }

    .footer-badges li a img.ratingstar {
        max-width: 15px;
    }

}