/* =====================================================
   DHRUVA PROFESSIONAL SERVICES
   STYLE.CSS - PART 1
   Core Theme + Navbar + Hero + CTA + Layout
===================================================== */

/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --bg-primary: #050505;
    --bg-secondary: #0c0c0c;
    --bg-card: rgba(255,255,255,0.05);

    --gold: #FFD700;
    --gold-dark: #B8860B;

    --blue: #00BFFF;
    --blue-dark: #0088cc;

    --white: #ffffff;
    --light-gray: #d5d5d5;
    --gray: #999999;

    --glass-border: rgba(255,255,255,0.08);

    --shadow-gold:
        0 0 10px rgba(255,215,0,.4),
        0 0 20px rgba(255,215,0,.2);

    --shadow-blue:
        0 0 10px rgba(0,191,255,.4),
        0 0 20px rgba(0,191,255,.2);

    --radius: 20px;

    --transition: all .35s ease;
}

/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    background:

    radial-gradient(
        circle at 20% 20%,
        rgba(255,215,0,.04),
        transparent 35%
    ),

    radial-gradient(
        circle at 80% 70%,
        rgba(0,191,255,.03),
        transparent 40%
    ),

    var(--bg-primary);

    color: var(--white);

    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    overflow-x: hidden;

    line-height: 1.7;
}

/* =====================================================
   CUSTOM SCROLLBAR
===================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {

    background: linear-gradient(
        180deg,
        var(--gold),
        var(--gold-dark)
    );

    border-radius: 50px;
}

/* =====================================================
   GLOBAL ELEMENTS
===================================================== */

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

img {
    max-width: 100%;
}

section {
    position: relative;
}

.container {

    width: 90%;
    max-width: 1400px;

    margin: auto;
}

/* =====================================================
   BACKGROUND EFFECTS
===================================================== */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,215,0,.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(0,191,255,.08),
            transparent 25%
        );

    pointer-events: none;

    z-index: -2;
}

/* =====================================================
   ANIMATED GRID
===================================================== */

.grid-background {

    position: fixed;

    inset: 0;

    z-index: -1;

    opacity: .08;

    background-image:

    linear-gradient(
        rgba(255,255,255,.08) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,.08) 1px,
        transparent 1px
    );

    background-size: 50px 50px;

    animation: gridMove 15s linear infinite;
}

/* =====================================================
   SCROLL PROGRESS BAR
===================================================== */

#scroll-progress {

    position: fixed;

    top: 0;
    left: 0;

    width: 0%;

    height: 4px;

    z-index: 99999;

    background: linear-gradient(
        90deg,
        var(--gold),
        var(--blue)
    );
}

/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 50px;

    background:
        rgba(5,5,5,.75);

    backdrop-filter: blur(14px);

    border-bottom:
        1px solid rgba(255,255,255,.05);
}

/* =====================================================
   LOGO AREA
===================================================== */

.logo-wrapper {

    display: flex;

    align-items: center;

    gap: 15px;
}

.logo-wrapper img {

    width: 55px;

    height: 55px;

    object-fit: contain;
}

.logo-text {

    display: flex;

    flex-direction: column;
}

.logo-title {

    font-size: 1.05rem;

    font-weight: 700;

    letter-spacing: 1px;

    color: var(--gold);
}

.logo-subtitle {

    font-size: .72rem;

    color: var(--light-gray);

    letter-spacing: 2px;
}

/* =====================================================
   NAV LINKS
===================================================== */

.nav-links {

    display: flex;

    gap: 35px;

    align-items: center;
}

.nav-links a {

    color: var(--white);

    transition: var(--transition);

    position: relative;
}

.nav-links a:hover {

    color: var(--gold);
}

.nav-links a::after {

    content: "";

    position: absolute;

    bottom: -5px;
    left: 0;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: .3s;
}

.nav-links a:hover::after {

    width: 100%;
}

/* =====================================================
   CTA BUTTON
===================================================== */

.cta-btn {

    padding: 14px 28px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #ffea72
        );

    color: #000;

    font-weight: 700;

    transition: var(--transition);

    box-shadow: var(--shadow-gold);
}

.cta-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 0 20px rgba(255,215,0,.7);
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero {

    min-height: auto;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 120px 8% 60px;

    position: relative;

}

.hero::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 150px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,.015)
        );

    pointer-events: none;
}

/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    flex: 1;

    max-width: 700px;
}

.hero-tag {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    background:
        rgba(255,215,0,.1);

    border:
        1px solid rgba(255,215,0,.2);

    color: var(--gold);

    margin-bottom: 15px;
}

.hero-content h1 {

    font-size: 3.8rem;

    line-height: 1.05;

    margin-bottom: 15px;

    font-weight: 800;
}

.hero-content h1 span {

    color: var(--gold);

    text-shadow:
        0 0 15px rgba(255,215,0,.5);
}

.hero-content p {

    font-size: 1.15rem;

    color: var(--light-gray);

    margin-bottom: 25px;

    max-width: 650px;
}

/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 10px;
}

.hero-btn-primary {

    padding: 16px 34px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #ffea72
        );

    color: #000;

    font-weight: 700;

    transition: var(--transition);
}

.hero-btn-primary:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 0 30px rgba(255,215,0,.5);
}

.hero-btn-secondary {

    padding: 16px 34px;

    border-radius: 50px;

    border:
        1px solid rgba(255,255,255,.1);

    background:
        rgba(255,255,255,.03);

    backdrop-filter: blur(10px);

    transition: var(--transition);
}

.hero-btn-secondary:hover {

    border-color: var(--gold);

    color: var(--gold);
}



.hero-ai-core {

    position: relative;

    width: 500px;
    height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.robot-left {

    position: absolute;

    top: 18%;
    left: 10%;

    animation:
        robotDeliverLeft 5s ease-in-out infinite;
}

.robot-right {

    position: absolute;

    bottom: 18%;
    right: 10%;

    animation:
        robotDeliverRight 5s ease-in-out infinite;
}



.ai-worker {

    width: 160px;

    position: absolute;

    z-index: 5;

    filter:
        drop-shadow(0 0 25px rgba(255,215,0,.15));

    transition: .4s ease;
}

.ai-worker:hover {

    transform: scale(1.08);
}


.ai-core-text {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    color: var(--gold);

    font-weight: 700;

    letter-spacing: 2px;

    z-index: 6;
}

/* =====================================================
   ROBOT SIDE
===================================================== */

.robot-container {

    flex: 1;

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    min-height: 500px;
}

/* =====================================================
   HOLOGRAM RINGS
===================================================== */

.hologram-ring {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px solid rgba(255,215,0,.25);
}


.hologram-ring.ring-1 {

    width: 260px;
    height: 260px;

    animation:
        rotateClockwise 20s linear infinite;
}

.hologram-ring.ring-2 {

    width: 340px;
    height: 340px;

    animation:
        rotateCounterClockwise 28s linear infinite;
}

.hologram-ring.ring-3 {

    width: 420px;
    height: 420px;

    animation:
        rotateClockwise 35s linear infinite;
}

/* =====================================================
   GLASS CARD BASE
===================================================== */

.glass-card {

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.06);

    backdrop-filter: blur(15px);

    border-radius: var(--radius);

    box-shadow:
        0 8px 25px rgba(0,0,0,.25);
}

/* =====================================================
   SECTION TITLES
===================================================== */

.section-title {

    font-size: clamp(2.8rem, 5vw, 4rem);

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;
}

.section-title span {

    color: var(--gold);

    text-shadow:
        0 0 12px rgba(255,215,0,.18);
}

.section-subtitle {

    text-align: center;

    color: var(--light-gray);

    max-width: 850px;

    margin: auto;

    font-size: 1.15rem;

    line-height: 1.8;
}

/* =====================================================
   DHRUVA PROFESSIONAL SERVICES
   STYLE.CSS - PART 2
   Services + Statistics + Consultation + Contact + Footer
===================================================== */


/* =====================================================
   SERVICES SECTION
===================================================== */

#services {

    padding: 140px 8%;

    position: relative;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.01)
    );

backdrop-filter:
    blur(2px);

}

.services-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(320px, 1fr)
        );

    gap: 30px;
}

/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {

    position: relative;

    overflow: hidden;

    padding: 35px;

    border-radius: 25px;

    background:
        rgba(255,255,255,.04);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255,255,255,.06);

    transition: .4s ease;

    min-height: 420px;
}

.service-card::before {

    content: "";

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background:
        linear-gradient(
            45deg,
            transparent,
            rgba(255,215,0,.05),
            transparent
        );

    transform: rotate(25deg);

    pointer-events: none;
}

.service-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,215,0,.25);

    box-shadow:
        0 10px 30px rgba(255,215,0,.12);
}

/* =====================================================
   SERVICE ICON
===================================================== */

.service-icon {

    width: 75px;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    border-radius: 20px;

    margin-bottom: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(255,215,0,.15),
            rgba(0,191,255,.15)
        );

    border:
        1px solid rgba(255,255,255,.08);
}

.service-card h3 {

    font-size: 1.6rem;

    margin-bottom: 12px;

    color: var(--gold);
}

.service-card h4 {

    font-size: .95rem;

    margin-bottom: 18px;

    color: var(--blue);

    font-weight: 500;
}

.service-card p {

    color: var(--light-gray);

    margin-bottom: 20px;
}

/* =====================================================
   BENEFITS LIST
===================================================== */

.service-benefits {

    list-style: none;

    margin-bottom: 25px;
}

.service-benefits li {

    padding: 8px 0;

    color: var(--light-gray);

    position: relative;

    padding-left: 25px;
}

.service-benefits li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--gold);

    font-weight: bold;
}

/* =====================================================
   SERVICE BUTTON
===================================================== */

.service-btn {

    display: inline-block;

    padding: 12px 22px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #ffea72
        );

    color: #000;

    font-weight: 700;

    transition: .3s;
}

.service-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 0 20px rgba(255,215,0,.4);
}

/* =====================================================
   STATISTICS SECTION
===================================================== */

#statistics {

    padding: 120px 8%;
}

.stats-grid {

    margin-top: 60px;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 30px;
}

.stat-card {

    text-align: center;

    padding: 40px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.05);

    transition: .3s;
}

.stat-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 0 30px rgba(255,215,0,.12);
}

.stat-number {

    font-size: 3rem;

    font-weight: 800;

    color: var(--gold);

    margin-bottom: 10px;
}

.stat-text {

    color: var(--light-gray);
}

/* =====================================================
   CONSULTATION SECTION
===================================================== */

#consultation {

    padding: 120px 8%;
}

.consultation-card {

    position: relative;

    overflow: hidden;

    padding: 70px;

    border-radius: 30px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(255,215,0,.08),
            rgba(0,191,255,.08)
        );

    border:
        1px solid rgba(255,255,255,.08);
}

.consultation-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle,
            rgba(255,215,0,.08),
            transparent
        );

    pointer-events: none;
}

.consultation-card h2 {

    font-size: 3rem;

    margin-bottom: 20px;
}

.consultation-card p {

    max-width: 800px;

    margin:
        0 auto 30px;

    color: var(--light-gray);
}

.consult-btn {

    display: inline-block;

    padding: 18px 40px;

    border-radius: 60px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #ffea72
        );

    color: #000;

    font-weight: 800;

    transition: .3s;
}

.consult-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 0 35px rgba(255,215,0,.45);
}

/* =====================================================
   CONTACT SECTION
===================================================== */

#contact {

    padding: 140px 8%;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.01)

    );

backdrop-filter:
    blur(2px);

}

.contact-container {

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

    margin-top: 60px;
}

.contact-card {

    flex: 1;

    min-width: 300px;

    max-width: 420px;

    padding: 40px;

    border-radius: 25px;

    text-align: center;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.06);

    transition: .3s;
}

.contact-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,215,0,.25);
}

.contact-card h3 {

    color: var(--gold);

    margin-bottom: 15px;
}

.contact-card p {

    color: var(--light-gray);

    margin-bottom: 10px;
}

/* =====================================================
   EMAIL CARD
===================================================== */

.email-box {

    margin-top: 30px;

    text-align: center;

    font-size: 1.1rem;

    color: var(--gold);
}

/* =====================================================
   LINKEDIN BUTTON
===================================================== */

.linkedin-btn {

    display: inline-block;

    margin-top: 25px;

    padding: 14px 30px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #0077b5,
            #00a0dc
        );

    color: white;

    font-weight: 700;

    transition: .3s;
}

.linkedin-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 0 25px rgba(0,119,181,.4);
}

/* =====================================================
   FOOTER
===================================================== */

footer {

    text-align: center;

    padding: 80px 20px;

    border-top:
    1px solid rgba(255,215,0,.12);

    box-shadow:
    0 -10px 40px rgba(255,215,0,.04);

}

.footer-logo {

    font-size: 1.5rem;

    font-weight: 800;

    color: var(--gold);

    margin-bottom: 15px;
}

.footer-links {

    margin: 30px 0;

    display: flex;

    justify-content: center;

    gap: 30px;
}

.footer-links a {

    color: var(--light-gray);
}

.footer-links a:hover {

    color: var(--gold);
}


/* =====================================================
   SECTION SPACING
===================================================== */

.section-spacing {

    margin-top: 100px;
}


/* =====================================================
   DHRUVA PROFESSIONAL SERVICES
   STYLE.CSS - PART 3
   FUTURISTIC AI EFFECTS
===================================================== */


/* =====================================================
   LOADING SCREEN
===================================================== */

#loading-screen {

    position: fixed;

    inset: 0;

    background: #050505;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    z-index: 999999;
}

.loader-logo img {

    width: 120px;

    height: auto;

    display: block;

    margin: 0 auto 10px;
}

.loader-title {

    color: var(--gold);

    font-size: 2rem;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.loader-bar {

    width: 300px;

    height: 6px;

    border-radius: 50px;

    background:
        rgba(255,255,255,.08);

    overflow: hidden;
}

.loader-progress {

    height: 100%;

    width: 0;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--blue)
        );

    animation:
        loadingBar 2s ease forwards;
}

/* =====================================================
   CUSTOM ROBOT
===================================================== */

.robot {

    position: relative;

    width: 320px;

    height: 520px;

    animation:
        floatSlow 5s ease-in-out infinite;
}

/* =====================================================
   ROBOT HEAD
===================================================== */

.robot-head {

    width: 180px;

    height: 140px;

    margin: auto;

    border-radius: 35px;

    background:
        linear-gradient(
            145deg,
            #1a1a1a,
            #111
        );

    border:
        2px solid rgba(255,215,0,.3);

    position: relative;

    animation:
        robotHeadMove 4s ease-in-out infinite;
}

.robot-face {

    position: absolute;

    inset: 15px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(0,191,255,.08),
            rgba(255,215,0,.05)
        );
}

/* =====================================================
   ROBOT EYES
===================================================== */

.eye {

    width: 30px;

    height: 30px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 20px var(--blue),
        0 0 40px var(--blue);

    animation:
        eyePulse 2s infinite;
}

.eyes {

    position: absolute;

    width: 100%;

    top: 45px;

    display: flex;

    justify-content: space-evenly;
}

/* =====================================================
   ROBOT MOUTH
===================================================== */

.robot-mouth {

    position: absolute;

    width: 90px;

    height: 8px;

    background: var(--gold);

    left: 50%;

    bottom: 30px;

    transform: translateX(-50%);

    border-radius: 20px;

    box-shadow:
        0 0 15px var(--gold);
}

/* =====================================================
   ROBOT BODY
===================================================== */

.robot-body {

    width: 220px;

    height: 250px;

    margin: 20px auto;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0d0d0d
        );

    border:
        2px solid rgba(255,215,0,.2);

    position: relative;
}

.robot-core {

    position: absolute;

    width: 90px;

    height: 90px;

    border-radius: 50%;

    top: 70px;

    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            var(--gold),
            transparent
        );

    animation:
        pulseButton 2s infinite;
}

/* =====================================================
   ROBOT ARMS
===================================================== */

.arm-left,
.arm-right {

    position: absolute;

    width: 35px;

    height: 160px;

    background: #111;

    border:
        2px solid rgba(255,215,0,.15);

    border-radius: 30px;
}

.arm-left {

    left: -45px;

    top: 20px;

    transform: rotate(15deg);
}

.arm-right {

    right: -45px;

    top: 20px;

    transform: rotate(-15deg);
}

/* =====================================================
   ROBOT LEGS
===================================================== */

.leg-left,
.leg-right {

    position: absolute;

    width: 40px;

    height: 150px;

    background: #111;

    border:
        2px solid rgba(255,215,0,.15);

    border-radius: 30px;

    bottom: -140px;
}

.leg-left {

    left: 50px;
}

.leg-right {

    right: 50px;
}

/* =====================================================
   AI WORKFORCE SECTION
===================================================== */

.ai-workforce {

    padding: 120px 8%;

    text-align: center;
}

.workforce-grid {

    margin-top: 80px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap: 40px;
}

.worker-card {

    padding: 35px;

    border-radius: 25px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.06);

    transition: .4s;

    animation:
        workerRobot 4s ease-in-out infinite;
}

.worker-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,215,0,.25);
}

.worker-icon {

    font-size: 3rem;

    margin-bottom: 20px;

    color: var(--gold);
}

/* =====================================================
   HOLOGRAPHIC PANELS
===================================================== */

.holographic-panel {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(18px);
}

.holographic-panel::before {

    content: "";

    position: absolute;

    inset: -100%;

    background:
        linear-gradient(
            45deg,
            transparent,
            rgba(255,215,0,.08),
            transparent
        );

    animation:
        rotateClockwise 12s linear infinite;
}

/* =====================================================
   GOLDEN BORDER EFFECT
===================================================== */

.neon-border {

    position: relative;
}

.neon-border::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    border: 1px solid rgba(255,215,0,0.4);

    box-shadow:
        0 0 10px rgba(255,215,0,0.3),
        0 0 20px rgba(0,191,255,0.2);

    pointer-events: none;
}

/* =====================================================
   AI COMMAND CENTER
===================================================== */

.command-center {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap: 30px;

    margin-top: 60px;
}

.command-card {

    padding: 30px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.05);

    transition: .4s;
}

.command-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 0 30px rgba(0,191,255,.15);
}

/* =====================================================
   PARTICLES
===================================================== */

.particle {

    position: absolute;

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: var(--gold);

    opacity: .6;

    animation:
        floatSlow infinite;
}

/* =====================================================
   CURSOR TRAIL
===================================================== */

.cursor-trail {

    position: absolute;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--gold);

    pointer-events: none;

    animation:
        fadeOutTrail .8s linear forwards;

    z-index: 99999;
}

@keyframes fadeOutTrail {

    from {

        opacity: 1;

        transform:
            scale(1);
    }

    to {

        opacity: 0;

        transform:
            scale(0);
    }
}

/* =====================================================
   GOLDEN GLOW ORBS
===================================================== */

.glow-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: .12;

    pointer-events: none;
}

.glow-orb.gold {

    width: 300px;
    height: 300px;

    background: var(--gold);

    top: 10%;
    right: -100px;
}

.glow-orb.blue {

    width: 350px;
    height: 350px;

    background: var(--blue);

    bottom: 10%;
    left: -120px;
}

/* =====================================================
   FUTURISTIC DIVIDER
===================================================== */

.section-divider {

    width: 250px;

    height: 2px;

    margin: 40px auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
}

/* =====================================================
   PREMIUM GLASS EFFECT
===================================================== */

.premium-glass {

    background:
        rgba(255,255,255,.04);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 8px 30px rgba(0,0,0,.25);
}



/* ==========================================
   V2 COMMAND CENTER
========================================== */

#command-center {

    padding: 140px 8%;

    position: relative;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.01)
    );

backdrop-filter:
    blur(2px);

}

.command-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap: 25px;
}

.command-panel {

    padding: 35px;

    border-radius: 25px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    text-align: center;

    transition: .4s ease;
}

.command-panel:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,215,0,.25);

    box-shadow:
        0 0 25px rgba(255,215,0,.12);
}

.panel-label {

    display: block;

    color: var(--light-gray);

    font-size: .85rem;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.panel-number {

    font-size: 3rem;

    font-weight: 800;

    color: var(--gold);
}

.ai-status-board {

    margin-top: 60px;

    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    padding: 40px;

    border-radius: 25px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);
}

.status-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 0;

    border-bottom:
        1px solid rgba(255,255,255,.05);
}

.status-row:last-child {

    border-bottom: none;
}

.status {

    padding: 8px 18px;

    border-radius: 30px;

    font-size: .85rem;

    font-weight: 700;
}

.status.online {

    background: rgba(0,255,128,.12);

    color: #00ff88;

    border: 1px solid rgba(0,255,128,.3);

    animation: pulseGreen 1.5s ease-in-out infinite;

    box-shadow:
        0 0 10px rgba(0,255,128,.4);

}


/* ==========================================
   AI WORKFORCE ECOSYSTEM
========================================== */

#workforce {

    padding: 120px 8%;

    position: relative;

    overflow: hidden;
}

.section-header {

    text-align: center;

    max-width: 900px;

    margin: 0 auto 80px;
}

.section-header h2 {

    font-size: 3rem;

    margin: 20px 0;

    color: white;
}

.section-header p {

    color: var(--light-gray);

    font-size: 1.1rem;
}

.section-tag {

    display: inline-block;

    padding: 10px 20px;

    border-radius: 50px;

    color: var(--gold);

    border: 1px solid rgba(255,215,0,.25);

    background: rgba(255,215,0,.05);
}

.workforce-container {

    position: relative;

    width: 100%;

    max-width: 1100px;

    height: 700px;

    margin: auto;
}

/* AI CORE */

.ai-core {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.core-center {

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255,215,0,.25),
        rgba(255,215,0,.05)
    );

    border: 2px solid rgba(255,215,0,.4);

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    color: var(--gold);

    box-shadow:
        0 0 40px rgba(255,215,0,.25);
}

/* AI CORE RINGS */

.core-ring {

    position: absolute;

    top: 50%;
    left: 50%;

    transform-origin: center center;

    border-radius: 50%;

    border: 1px solid rgba(255,215,0,.15);

    box-shadow:
        0 0 15px rgba(255,215,0,.4),
        0 0 30px rgba(255,215,0,.2);

}

.ring-a {

    width: 220px;
    height: 220px;

    border-radius: 50%;

    border-top: 4px solid #FFD700;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;

    animation: rotateClockwise 4s linear infinite;
}

.ring-b {

    width: 300px;
    height: 300px;

    border-radius: 50%;

    border-right: 4px solid #00BFFF;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;

    animation: rotateCounterClockwise 6s linear infinite;
}

/* AGENTS */

.agent {

    position: absolute;

    width: 220px;

    padding: 25px;

    border-radius: 20px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: .4s ease;
}

.agent:hover {

    transform: translateY(-8px);

    border-color: rgba(255,215,0,.3);

    box-shadow:
        0 0 25px rgba(255,215,0,.15);
}

.agent h3 {

    color: var(--gold);

    margin-bottom: 10px;
}

.agent p {

    color: var(--light-gray);
}

/* POSITIONS */

.agent-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.agent-2 {
    top: 150px;
    right: 0;
}

.agent-3 {
    bottom: 150px;
    right: 0;
}

.agent-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.agent-5 {
    bottom: 150px;
    left: 0;
}

.agent-6 {
    top: 150px;
    left: 0;
}


.live-dot {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #00ff88;

    display: inline-block;

    margin-right: 8px;

    animation: pulseDot 1.5s infinite;
}


/* ==========================================
   AI NETWORK BACKGROUND
========================================== */

#ai-network {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: -2;

    pointer-events: none;

    opacity: .35;
}

/* ==========================================
   APPLE STYLE REVEAL
========================================== */

.reveal-section {

    opacity: 0;

    transform: translateY(80px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.reveal-section.active {

    opacity: 1;

    transform: translateY(0);
}


/* ==========================================
   PREMIUM CONSULTATION
========================================== */

.consultation-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.consultation-benefits {

    margin-top: 30px;

    display: grid;

    gap: 15px;

    color: var(--light-gray);
}

.glass-consultation-card {

    padding: 50px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    text-align: center;

    box-shadow:
        0 0 40px rgba(255,215,0,.08);
}

.consultation-btn {

    display: inline-block;

    margin-top: 25px;

    padding: 18px 40px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #FFD700,
            #FFE45E
        );

    color: #000;

    font-weight: 700;
}

/* ==========================================
   CONTACT CARDS
========================================== */

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap: 30px;
}

.contact-card {

    padding: 40px;

    border-radius: 25px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: .4s ease;
}

.contact-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,215,0,.3);

    box-shadow:
        0 0 25px rgba(255,215,0,.15);
}

/* ==========================================
   FLOATING GLASS ELEMENTS
========================================== */

.floating-glass {

    position: fixed;

    border-radius: 50%;

    backdrop-filter: blur(20px);

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.05);

    z-index: -1;
}

.glass-1 {

    width: 300px;
    height: 300px;

    top: 20%;
    left: -100px;
}

.glass-2 {

    width: 250px;
    height: 250px;

    bottom: 10%;
    right: -80px;
}

.glass-3 {

    width: 180px;
    height: 180px;

    top: 60%;
    left: 80%;
}


/* ==========================================
   TRUST SECTION
========================================== */

#trust {

    padding: 140px 8%;
}

.trust-grid {

    margin-top: 60px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap: 30px;
}

.trust-card {

    padding: 40px;

    border-radius: 25px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: .4s ease;

    text-align: center;
}

.trust-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,215,0,.3);

    box-shadow:
        0 0 25px rgba(255,215,0,.15);
}

.trust-icon {

    font-size: 3rem;

    margin-bottom: 20px;
}

.trust-card h3 {

    color: var(--gold);

    margin-bottom: 15px;
}

.trust-card p {

    color: var(--light-gray);
}


/* ==========================================
   INDUSTRY SOLUTIONS
========================================== */

#industries {

    padding: 140px 8%;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.02)
    );

backdrop-filter:
    blur(2px);

}

.industry-grid {

    margin-top: 60px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap: 30px;
}

.industry-card {

    padding: 40px;

    border-radius: 25px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: .4s ease;

    text-align: center;
}

.industry-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,215,0,.3);

    box-shadow:
        0 0 25px rgba(255,215,0,.15);
}

.industry-icon {

    font-size: 3rem;

    margin-bottom: 20px;
}

.industry-card h3 {

    color: var(--gold);

    margin-bottom: 15px;
}

.industry-card p {

    color: var(--light-gray);
}

/* ==========================================
   BEFORE / AFTER TRANSFORMATION
========================================== */

#transformation {

    padding: 140px 8%;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.02)
    );

backdrop-filter:
    blur(2px);

}

.transformation-grid {

    max-width: 1400px;

    margin: 70px auto 0;

    display: flex;

    align-items: stretch;

    justify-content: center;

    gap: 30px;

    flex-wrap: nowrap;
}

.before-card,
.after-card {

    flex: 1;

    min-width: 0;

    padding: 45px;

    border-radius: 30px;

    backdrop-filter: blur(20px);

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);
}

.before-card {

    border-left:
        5px solid #ff5b5b;
}

.after-card {

    border-left:
        5px solid #00ff88;
}

.transform-label {

    font-size: 1.1rem;

    font-weight: 700;

    margin-bottom: 25px;
}

.before-label {

    color: #ff5b5b;
}

.after-label {

    color: #00ff88;
}

.before-card ul,
.after-card ul {

    display: grid;

    gap: 18px;

    color: var(--light-gray);
}

.transform-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 5rem;

    color: var(--gold);

    min-width: 120px;

    flex-shrink: 0;

    animation: pulseArrow 2s infinite;
}


/* ==========================================
   FLOATING CONSULTATION CTA
========================================== */

.floating-consultation {

    position: fixed;

    bottom: 35px;

    right: 35px;

    z-index: 9999;

    padding: 18px 28px;

    border-radius: 60px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #ffe866
        );

    color: #000;

    font-weight: 700;

    box-shadow:
        0 0 25px rgba(255,215,0,.45);

    transition: .4s ease;

    animation:
        consultationPulse 2.5s infinite;
}

.floating-consultation:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 0 35px rgba(255,215,0,.75);
}


/* ==========================================
   SUCCESS STORIES
========================================== */

#success-stories {

    padding: 140px 8%;
}

.stories-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap: 30px;
}

.story-card {

    padding: 40px;

    border-radius: 25px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(15px);

    transition: .4s ease;
}

.story-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,215,0,.25);

    box-shadow:
        0 0 25px rgba(255,215,0,.15);
}

.story-card h3 {

    color: var(--gold);

    margin-bottom: 20px;
}

.story-card p {

    margin-bottom: 15px;

    color: var(--light-gray);
}



/* ==========================================
   LIVE AI ACTIVITY FEED
========================================== */

.ai-feed {

    margin-top: 60px;

    padding: 35px;

    border-radius: 25px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);
}

.feed-header {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold);

    font-weight: 700;

    margin-bottom: 25px;
}

.live-dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #00ff88;

    animation: pulseLive 1.5s infinite;
}

.feed-item {

    padding: 14px 0;

    border-bottom:
        1px solid rgba(255,255,255,.05);

    color: var(--light-gray);
}

.feed-item:last-child {

    border-bottom: none;
}



/* ==========================================
   PREMIUM AI LOADER
========================================== */

#loader {

    position: fixed;

    inset: 0;

    background: #050505;

    z-index: 999999;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .8s ease;
}

#loader.hide {

    opacity: 0;

    visibility: hidden;
}

.loader-content {

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.loader-logo img {

    width: 140px;

    height: auto;

    display: block;

    margin: auto auto 20px;
}

.loader-company-name {

    color: white;

    font-size: 1.3rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.loader-text {

    color: var(--light-gray);

    margin-bottom: 25px;
}



.loader-bar {

    width: 300px;

    height: 8px;

    border-radius: 20px;

    background: rgba(255,255,255,.08);

    overflow: hidden;

    margin: 0 auto;
}

.loader-progress {

    height: 100%;

    width: 0;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            #ffe866
        );

    animation:
        loadBar 2s linear forwards;
}



/* ==========================================
   ENTERPRISE 3D HOVER
========================================== */

.tilt-card {

    transform-style: preserve-3d;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

    will-change: transform;
}

.tilt-card:hover {

    border-color:
        rgba(255,215,0,.25);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25),
        0 0 25px rgba(255,215,0,.12);
}


.service-card {

    overflow: hidden;

    position: relative;
}

.service-card::before {

    content: "";

    position: absolute;

    top: -100%;

    left: -100%;

    width: 200%;

    height: 200%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,215,0,.05),
            transparent
        );

    transform: rotate(25deg);

    transition: .7s;
}

.service-card:hover::before {

    top: 100%;

    left: 100%;
}

/* ==========================================
   SCROLL PROGRESS BAR
========================================== */

.scroll-progress {

    position: fixed;

    top: 0;
    left: 0;

    width: 0%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #FFD700,
            #00BFFF
        );

    z-index: 999999;

    transition: width .1s linear;
}


/* ==========================================
   NAVBAR SHRINK
========================================== */

.navbar {

    transition:
        padding .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.navbar.scrolled {

    padding: 12px 50px;

    background:
        rgba(5,5,5,.92);

    box-shadow:
        0 8px 25px rgba(0,0,0,.3);
}


.nav-links a.active {

    color: var(--gold);
}

.nav-links a.active::after {

    width: 100%;
}



/* ==========================================
   PREMIUM SECTION DIVIDER
========================================== */

section {

    position: relative;
}

section::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 85%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,215,0,.12),
            transparent
        );
}


.task-queue {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 260px;

    padding: 20px;

    border-radius: 18px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,215,0,.25);

    backdrop-filter: blur(20px);

    z-index: 20;
}

.queue-title {

    text-align: center;

    color: var(--gold);

    font-size: .9rem;

    font-weight: 700;

    margin-bottom: 12px;

    letter-spacing: 2px;
}

.queue-bar {

    height: 14px;

    border-radius: 50px;

    overflow: hidden;

    background: rgba(255,255,255,.08);
}

.queue-fill {

    width: 0%;

    height: 100%;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #FFD700,
            #00BFFF
        );

    animation:
        queueFill 6s ease-in-out infinite;
}



.data-packet {

    position: absolute;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: #FFD700;

    z-index: 30;

    box-shadow:
        0 0 10px #FFD700,
        0 0 25px rgba(255,215,0,.7);
}




.workflow-node {

    position: absolute;

    width: 110px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,215,0,.25);

    backdrop-filter: blur(20px);

    color: white;

    font-size: .8rem;

    font-weight: 600;

    z-index: 25;
}

.lead-node {

    top: 5%;
    left: 35%;
}

.crm-node {

    bottom: 5%;
    right: 35%;
}


.packet-lead {

    animation:
        leadFlow 6s linear infinite;
}

.packet-crm {

    animation:
        crmFlow 6s linear infinite;
}



.robot-left,
.robot-right {

    transition:
        transform .8s ease;
}

.packet-lead,
.packet-crm {

    transition:
        all .8s ease;
}

.queue-fill {

    transition:
        width .8s ease;
}