@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500&display=swap');

/* ══════════════════════════════════════════════
   HIDE SCROLLBAR — ALL BROWSERS
══════════════════════════════════════════════ */
html,
body,
* {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE / Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none !important;
    /* Chrome / Safari / Edge (Webkit) */
    width: 0 !important;
    height: 0 !important;
}


/* ══════════════════════════════════════════════
   SITE LOADER
══════════════════════════════════════════════ */
#site-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #05070a;
    overflow: hidden;
}

.loader-panel {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #05070a;
    z-index: 2;
    will-change: transform;
}

.loader-panel-left {
    left: 0;
    transform-origin: left center;
}

.loader-panel-right {
    right: 0;
    transform-origin: right center;
}

.loader-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
}

.loader-logo-wrap img {
    height: 72px;
    filter: drop-shadow(0 0 24px rgba(246, 134, 22, 0.5));
    animation: loaderGlow 1.8s ease-in-out infinite alternate;
}

@keyframes loaderGlow {
    from {
        filter: drop-shadow(0 0 12px rgba(246, 134, 22, 0.3));
    }

    to {
        filter: drop-shadow(0 0 40px rgba(246, 134, 22, 0.9));
    }
}

.loader-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.loader-bar-wrap {
    width: 240px;
    height: 2px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f68616, #fbb040);
    box-shadow: 0 0 14px #f68616;
    border-radius: 4px;
    transition: none;
}

.loader-percent {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.25);
}

/* Grid lines behind loader content */
.loader-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(246, 134, 22, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246, 134, 22, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    animation: loaderGridFade 2s ease forwards;
}

@keyframes loaderGridFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Corner accents */
.loader-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 4;
}

.loader-corner-tl {
    top: 2rem;
    left: 2rem;
    border-top: 2px solid #f68616;
    border-left: 2px solid #f68616;
}

.loader-corner-tr {
    top: 2rem;
    right: 2rem;
    border-top: 2px solid #f68616;
    border-right: 2px solid #f68616;
}

.loader-corner-bl {
    bottom: 2rem;
    left: 2rem;
    border-bottom: 2px solid #f68616;
    border-left: 2px solid #f68616;
}

.loader-corner-br {
    bottom: 2rem;
    right: 2rem;
    border-bottom: 2px solid #f68616;
    border-right: 2px solid #f68616;
}

:root {
    --bg-color: #05070a;
    --surface-color: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --primary-color: #f68616;
    --secondary-color: #fbb040;
    --text-primary: #f8f9fa;
    --text-secondary: #a0aec0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.1;
    font-weight: 800;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 1.125rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Gradients */
.bg-gradient-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(246, 134, 22, 0.14) 0%, rgba(251, 176, 64, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

header.header-scrolled {
    background: rgba(5, 5, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(246, 134, 22, 0.15), 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 1rem 0;
}


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(246, 134, 22, 0.4);
}

/* Hero Section Updates */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(246, 134, 22, 0.1);
    border: 1px solid rgba(246, 134, 22, 0.25);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.hero h1 {
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-align: left;
}

.text-glow {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(246, 134, 22, 0.35));
}

.hero p {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    margin-bottom: 3rem;
    text-align: left;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* Glass Composition */
.glass-composition {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(246, 134, 22, 0.35);
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite alternate;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(251, 176, 64, 0.3);
    bottom: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite alternate-reverse;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-main {
    width: 80%;
    height: 70%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.glass-composition:hover .card-main {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.card-header .dot:nth-child(1) {
    background: #ff5f56;
}

.card-header .dot:nth-child(2) {
    background: #ffbd2e;
}

.card-header .dot:nth-child(3) {
    background: #27c93f;
}

.mock-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
    margin-top: auto;
    padding-top: 2rem;
}

.mock-chart .bar {
    flex: 1;
    background: linear-gradient(to top, var(--secondary-color), var(--primary-color));
    border-radius: 5px 5px 0 0;
    opacity: 0.8;
}

.card-floating-1,
.card-floating-2 {
    position: absolute;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    animation: float 5s ease-in-out infinite alternate;
}

.card-floating-1 {
    top: 20%;
    right: 5%;
    transform: perspective(1000px) translateZ(50px);
}

.card-floating-2 {
    bottom: 20%;
    left: 0;
    animation-delay: -2s;
    transform: perspective(1000px) translateZ(80px);
}

.card-floating-1 i,
.card-floating-2 i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Responsive fixes for hero */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        text-align: center;
    }

    .hero p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

/* General Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

/* Services Split Layout */
.services-wrapper {
    overflow: hidden;
}

.services-split-layout {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 4rem 0;
}

.services-left {
    width: 40%;
    padding-left: max(2rem, calc((100vw - 1300px) / 2));
    padding-right: 4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.services-right {
    width: 60%;
    position: relative;
    height: 520px;
    overflow: visible;
    flex-shrink: 0;
}

.services-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
}

.scroll-line {
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.service-card {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 4rem 3rem;
    height: 520px;
    flex-shrink: 0;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(246, 134, 22, 0.12);
}

.service-num {
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 14rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease, transform 0.4s ease;
}

.service-card:hover .service-num {
    color: rgba(246, 134, 22, 0.06);
    transform: scale(1.05);
}

.service-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: auto;
    filter: drop-shadow(0 0 20px rgba(246, 134, 22, 0.4));
}

.service-card h3 {
    font-size: 2.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    z-index: 2;
}

.service-card p {
    z-index: 2;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    font-size: 0.875rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(10px);
}

/* Stacked Pinned Cards (Case Studies) */
.stacked-cards-container {
    position: relative;
    width: 100%;
    margin-top: 5rem;
}

.stacked-card {
    position: relative;
    width: 100%;
    height: 70vh;
    border-radius: 30px;
    padding: 4rem;
    background: rgba(15, 20, 30, 0.95);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    overflow: hidden;
    margin-bottom: 60vh;
    /* Distance to scroll before next card appears */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.4);
    transform-origin: top center;
}

.stacked-card:last-child {
    margin-bottom: 0;
}

.stacked-card-content {
    width: 45%;
    z-index: 2;
}

.stacked-card-content span {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stacked-card-content h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 1rem 0 1.5rem;
}

.stacked-card-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-left: 1px solid var(--border-color);
    mask-image: linear-gradient(to right, transparent, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%);
}

/* Scroll Text Reveal (Why Us) */
.text-reveal-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-reveal-text {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.1);
    /* Dim base color */
    text-align: center;
    max-width: 1100px;
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    padding: 2rem 0;
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-content {
    display: flex;
    gap: 6rem;
    align-items: center;
    width: max-content;
}

.marquee-content img {
    height: 60px;
    opacity: 0.5;
    transition: opacity 0.4s ease, filter 0.4s ease;
    filter: grayscale(100%);
}

.marquee-content img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Features Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

/* Team */
.team-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--surface-color);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, background 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.team-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(246, 134, 22, 0.25);
}

.team-card h4 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.team-card span {
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Unique Modern Footer */
.footer {
    position: relative;
    background: #020305;
    padding: 4rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 6rem;
}

.footer-info-bento {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-box:hover {
    transform: translateX(10px);
    border-color: rgba(246, 134, 22, 0.35);
}

.bento-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(246, 134, 22, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bento-box h5 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.bento-box p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.social-bento {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(246, 134, 22, 0.35);
}

.footer-form-bento {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(20px);
}

.footer-form-bento h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modern-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.modern-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(246, 134, 22, 0.03);
    box-shadow: 0 0 20px rgba(246, 134, 22, 0.12);
}

textarea.modern-input {
    min-height: 150px;
    resize: vertical;
}

.w-100 {
    width: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-watermark {
    font-size: 15vw;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.75;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Utilities */
.split-line {
    overflow: hidden;
}

.split-word {
    display: inline-block;
}

/* ==============================================
   NEW FOOTER (.nf)
   ============================================== */
.nf {
    position: relative;
    background: #010208;
    overflow: hidden;
}

.nf::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(246, 134, 22, 0.8) 30%, rgba(251, 176, 64, 0.8) 70%, transparent 100%);
    z-index: 3;
}

/* CTA Band */
.nf-cta-band {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, rgba(246, 134, 22, 0.05) 0%, rgba(251, 176, 64, 0.04) 100%);
    position: relative;
    z-index: 2;
}

.nf-cta-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
}

.nf-eyebrow {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 1rem 0;
}

.nf-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.15;
    color: #fff;
}

.nf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.nf-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(246, 134, 22, 0.4);
}

.nf-cta-btn i {
    transition: transform 0.3s ease;
}

.nf-cta-btn:hover i {
    transform: translateX(6px);
}

/* Main Body — 4 columns */
.nf-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    padding: 3rem 4rem 2rem;
    position: relative;
    z-index: 2;
}

.nf-brand,
.nf-col,
.nf-contact-col {
    padding: 0 3.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.nf-brand {
    padding-left: 0.5rem;
}

.nf-contact-col {
    padding-right: 0.5rem;
    border-right: none;
}

/* Brand */
.nf-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.nf-logo span {
    color: var(--primary-color);
}

.nf-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgb(255, 255, 255);
    margin: 0 0 2.5rem;
    max-width: 270px;
}

.nf-socials {
    display: flex;
    gap: 0.75rem;
}

.nf-soc {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nf-soc:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(246, 134, 22, 0.35);
}

/* Column labels */
.nf-col-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 0 2rem;
    display: block;
}

/* Nav links */
.nf-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.nf-links li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(255, 255, 255);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.nf-links li a i {
    font-size: 0.55rem;
    color: var(--primary-color);
    transition: transform 0.25s ease;
}

.nf-links li a:hover {
    color: #fff;
    padding-left: 6px;
}

.nf-links li a:hover i {
    transform: translateX(4px);
}

/* Disabled service links (span instead of a) */
.nf-links li span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(255, 255, 255);
    font-size: 0.95rem;
    cursor: default;
    user-select: none;
}

.nf-links li span i {
    font-size: 0.55rem;
    color: var(--primary-color);
}

/* Contact info */
.nf-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nf-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9rem;
    color: rgb(255, 255, 255) !important;
    line-height: 1.5;
}

.nf-contact-info li i {
    color: var(--primary-color);
    font-size: 0.875rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.nf-contact-info li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.25s;
}

.nf-contact-info li a:hover {
    color: var(--primary-color);
}

/* Form */
.nf-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.nf-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.nf-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.nf-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(246, 134, 22, 0.03);
    box-shadow: 0 0 0 3px rgba(246, 134, 22, 0.1);
}

textarea.nf-input {
    min-height: 100px;
    resize: none;
}

.nf-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-body);
}

.nf-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(246, 134, 22, 0.35);
}

/* Bottom Bar */
.nf-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.nf-bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.75rem 4rem;
}

.nf-bottom-row p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.936);
    margin: 0;
}

.nf-bottom-links {
    display: flex;
    gap: 2rem;
}

.nf-bottom-links a {
    font-size: 0.85rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.25s;
}

.nf-bottom-links a:hover {
    color: var(--primary-color);
}

/* Watermark */
.nf-wm {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 12vw;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    line-height: 0.85;
    text-align: center;
    letter-spacing: -0.02em;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    position: relative;
    z-index: 1;
    padding: 2rem 0 0;
    margin-top: -1rem;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1200px) {
    .nf-body {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 3rem 2.5rem 2rem;
    }

    .nf-brand,
    .nf-col,
    .nf-contact-col {
        padding: 0 2rem 4rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nf-contact-col {
        border-bottom: none;
    }

    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .nf-body {
        grid-template-columns: 1fr;
        padding: 4rem 0 3rem;
    }

    .nf-cta-row {
        flex-direction: column;
        text-align: center;
    }

    .nf-form-row {
        grid-template-columns: 1fr;
    }

    .nf-bottom-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nf-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ── CONTACT SECTION (above footer) ── */
.contact-section {
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(246, 134, 22, 0.03) 50%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 8rem;
    align-items: start;
}

.contact-section-left .nf-contact-info {
    margin-top: 0;
}

.contact-section-right {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 3.5rem;
    backdrop-filter: blur(20px);
}

/* ══════════════════════════════════════
   PREMIUM ABOUT SECTION (Original Text)
══════════════════════════════════════ */
.about-premium-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: #020305;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-bg-elements {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.about-orb.orb-left {
    width: 600px;
    height: 600px;
    background: rgba(246, 134, 22, 0.15);
    top: -100px;
    left: -200px;
}

.about-orb.orb-right {
    width: 500px;
    height: 500px;
    background: rgba(251, 176, 64, 0.12);
    bottom: -100px;
    right: -100px;
}

.about-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}

.about-header {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}

.about-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.premium-reveal-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.premium-reveal-wrapper .quote-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    opacity: 0.6;
}

.text-reveal-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.15);
    /* Dim base color for GSAP reveal */
    font-weight: 600;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .premium-reveal-wrapper {
        padding: 2rem;
    }
}

/* ══════════════════════════════════════
   PROCESS STEPS GRID
══════════════════════════════════════ */
.ww-process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 1.5rem;
    margin-top: 6rem;
    position: relative;
    z-index: 2;
}

.ww-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ww-step-image-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 2.5rem;
    border: 2px dashed #f59e0b;
    /* Orange dashed border */
    padding: 8px;
    transition: transform 0.4s ease;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.ww-process-step:hover .ww-step-image-wrap {
    transform: translateY(-10px);
}

.ww-step-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #111;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ww-step-number {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 45px;
    height: 45px;
    background: #e67e22;
    /* Orange badge */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    z-index: 3;
}

.ww-step-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.ww-step-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.ww-process-arrow {
    padding-top: 70px;
    /* Align vertically with the center of the images */
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1200px) {
    .ww-process-grid {
        grid-template-columns: 1fr auto 1fr;
        row-gap: 4rem;
    }

    .ww-process-arrow:nth-child(4) {
        display: none;
        /* Hide arrow moving to next row */
    }
}

@media (max-width: 768px) {
    .ww-process-grid {
        grid-template-columns: 1fr;
        row-gap: 4rem;
    }

    .ww-process-arrow {
        display: none;
    }
}

/* ── Solutions Cards (About page) ── */
.sol-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}