﻿:root {
    --primary: #0a84ff;
    --secondary: #5e5ce6;
    --accent: #00d4ff;
    --dark: #0d0d0d;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Syne', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at top left, rgba(10, 132, 255, 0.15) 0%, transparent 50%), radial-gradient(ellipse at bottom right, rgba(94, 92, 230, 0.15) 0%, transparent 50%), radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

    .shape:nth-child(1) {
        width: 500px;
        height: 500px;
        background: linear-gradient(45deg, var(--primary), var(--secondary));
        top: -250px;
        left: -250px;
        animation-delay: 0s;
    }

    .shape:nth-child(2) {
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, var(--accent), var(--primary));
        bottom: -200px;
        right: -200px;
        animation-delay: -5s;
    }

    .shape:nth-child(3) {
        width: 300px;
        height: 300px;
        background: linear-gradient(90deg, var(--secondary), var(--accent));
        top: 50%;
        right: 10%;
        animation-delay: -10s;
    }

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100px, -100px) rotate(90deg);
    }

    50% {
        transform: translate(200px, 0) rotate(180deg);
    }

    75% {
        transform: translate(100px, 100px) rotate(270deg);
    }
}

/* Glass Navbar */
.navbar {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        background: rgba(13, 13, 13, 0.8);
        backdrop-filter: blur(30px);
        box-shadow: 0 10px 40px rgba(10, 132, 255, 0.1);
    }

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.navbar-brand:hover .logo-icon {
    transform: rotate(360deg);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    margin: 0 1.2rem;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        transition: transform 0.3s ease;
    }

    .nav-link:hover {
        color: var(--accent) !important;
    }

        .nav-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

/* Hero Banner/Jumbotron */
.hero {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-banner {
    background: linear-gradient(135deg, #001a4d 0%, #003d82 50%, #0066cc 100%);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    border: none;
}

    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(94, 92, 230, 0.15) 0%, transparent 50%);
    }

    .hero-banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px), linear-gradient(0deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
        background-size: 50px 50px;
        opacity: 0.5;
    }

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-content {
    text-align: left;
    padding: 2rem;
}

.hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

    .hero-title .highlight {
        background: linear-gradient(135deg, var(--accent) 0%, #fff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
    }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    opacity: 0;
    animation: fadeInRight 1s ease 0.5s forwards;
}

.visual-icon {
    width: 100%;
    height: auto;
    position: relative;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

.floating-card-3 {
    top: 50%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

    .card-icon i {
        color: white;
        font-size: 1.2rem;
    }

.card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.card-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
}

/* Large central illustration */
.main-illustration {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.2), rgba(94, 92, 230, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 4s ease-in-out infinite;
}

    .main-illustration::before {
        content: '';
        position: absolute;
        width: 430px;
        height: 430px;
        border: 2px solid rgba(0, 212, 255, 0.3);
        border-radius: 50%;
        animation: rotate 20s linear infinite;
    }

    .main-illustration::after {
        content: '';
        position: absolute;
        width: 480px;
        height: 480px;
        border: 1px solid rgba(0, 212, 255, 0.2);
        border-radius: 50%;
        animation: rotate 30s linear infinite reverse;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.illustration-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.illustration-icon {
    font-size: 7rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 30px rgba(10, 132, 255, 0.5));
}

.btn-primary-custom {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-primary-custom::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(10, 132, 255, 0.4);
        color: #fff;
    }

        .btn-primary-custom:hover::before {
            left: 100%;
        }

.btn-secondary-custom {
    padding: 1rem 2rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-secondary-custom:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--accent);
        transform: translateY(-3px);
        color: #fff;
    }

/* Trust Stats */
.trust-stats {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2rem 1.8rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: -1;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent);
        box-shadow: 0 20px 40px rgba(10, 132, 255, 0.3);
    }

        .service-card:hover::before {
            opacity: 0.1;
        }

.service-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.08;
    line-height: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.service-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.3;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .service-btn:hover {
        background: var(--accent);
        color: var(--dark);
        border-color: var(--accent);
        transform: translateX(5px);
    }

    .service-btn i {
        transition: transform 0.3s ease;
    }

    .service-btn:hover i {
        transform: translateX(3px);
    }

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    .scroll-reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 992px) {
    .hero-banner {
        padding: 3rem 0;
    }

    .main-illustration {
        width: 320px;
        height: 320px;
    }

        .main-illustration::before {
            width: 370px;
            height: 370px;
        }

        .main-illustration::after {
            width: 420px;
            height: 420px;
        }

    .illustration-icon {
        font-size: 5.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.3rem;
    }

    .hero {
        margin-top: 70px;
    }

    .hero-banner {
        padding: 2.5rem 0;
    }

    .hero-text-content {
        padding: 1.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 0;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-visual {
        padding: 2rem 1rem;
    }

    .main-illustration {
        width: 260px;
        height: 260px;
    }

        .main-illustration::before {
            width: 300px;
            height: 300px;
        }

        .main-illustration::after {
            width: 340px;
            height: 340px;
        }

    .illustration-icon {
        font-size: 4rem;
    }

    .floating-card {
        padding: 0.8rem;
    }

    .card-icon {
        width: 30px;
        height: 30px;
    }

        .card-icon i {
            font-size: 0.9rem;
        }

    .card-title {
        font-size: 0.75rem;
    }

    .card-value {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 1.8rem 1.5rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

        .service-icon i {
            font-size: 1.5rem;
        }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .floating-card {
        display: none;
    }

    .main-illustration {
        width: 200px;
        height: 200px;
    }

        .main-illustration::before {
            width: 240px;
            height: 240px;
        }

        .main-illustration::after {
            width: 280px;
            height: 280px;
        }

    .illustration-icon {
        font-size: 3rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}
