* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #050816;
    color: white;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(0,194,255,0.15), transparent 40%),
        radial-gradient(circle at bottom right, rgba(0,255,163,0.10), transparent 40%);
    z-index: -1;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    backdrop-filter: blur(6px);
}

.glass {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 75px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: white;
}

.btn-primary,
.btn-secondary {
    height: 52px;
    padding: 0 28px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.4s;
}

.btn-primary {
    background: linear-gradient(135deg,#00C2FF,#0066FF);
    color: white;
    box-shadow: 0 0 30px rgba(0,194,255,0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.badge {
    width: fit-content;
    padding: 12px 20px;
    border-radius: 999px;
    margin-bottom: 30px;
    font-size: 13px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.floating-panel {
    width: 320px;
    padding: 30px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.panel-header {
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 700;
}

.metric {
    margin-bottom: 25px;
}

.metric span {
    display: block;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.metric strong {
    font-size: 2rem;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    padding: 120px 8%;
}

.stat-card {
    border-radius: 30px;
    padding: 40px;
}

.stat-card h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: #00C2FF;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title h2 {
    font-size: 3rem;
    margin-top: 20px;
}

.services-section {
    padding: 120px 8%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
}

.service-card {
    min-height: 320px;
    border-radius: 35px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0,194,255,0.5);
}

.service-number {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 4rem;
    opacity: 0.08;
    font-weight: 800;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.tech-section {
    padding: 120px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-left h2 {
    font-size: 4rem;
    margin: 20px 0;
}

.tech-left p {
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    margin-bottom: 40px;
}

.tech-right {
    border-radius: 40px;
    padding: 50px;
    position: relative;
}

.dashboard-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,#00C2FF,transparent);
    margin-bottom: 40px;
}

.dashboard-card {
    padding: 25px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 20px;
}


.dashboard-card strong {
    display: block;
    font-size: 2rem;
    margin-top: 10px;
}

.before-after {
    padding: 120px 8%;
}

.comparison-container {
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.before,
.after {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.before {
    background-image: url('assets/images/before.jpg');
}

.after {
    background-image: url('assets/images/after.jpg');
    clip-path: inset(0 0 0 50%);
}

.contact-section {
    padding: 120px 8%;
}

.contact-box {
    border-radius: 40px;
    padding: 80px;
    text-align: center;
}

.contact-box h2 {
    font-size: 4rem;
    margin: 20px 0;
}

.contact-box p {
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

form {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

input {
    height: 58px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    padding: 0 20px;
    color: white;
}

footer {
    padding: 60px 8%;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

@media(max-width: 1024px) {

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 50px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .stats-section,
    .services-grid,
    .tech-section,
    form {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

}

.service-showcase{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:120px 6%;
}

.service-showcase video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.25) 100%
    );
    z-index:2;
}

.service-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:3;
}

.service-info{
    width:650px;
    padding:60px;
    border-radius:32px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
}

.service-info span{
    display:block;
    color:#00C2FF;
    letter-spacing:4px;
    font-size:13px;
    margin-bottom:25px;
}

.service-info h2{
    font-size:5rem;
    line-height:.95;
    font-weight:800;
    margin-bottom:30px;
    max-width:580px;
}

.service-info p{
    color:rgba(255,255,255,.75);
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:40px;
}

.service-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stat{
    min-width:140px;
    padding:24px;
    border-radius:20px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
}

.stat strong{
    display:block;
    font-size:2rem;
    margin-bottom:10px;
}

.stat small{
    color:rgba(255,255,255,.6);
}

@media(max-width:1024px){

    .service-info{
        width:100%;
        padding:40px;
    }

    .service-info h2{
        font-size:3rem;
    }

}

.ticker-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-top:40px;
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(10px);
}

.ticker{
    display:flex;
    align-items:center;
    gap:40px;
    width:max-content;
    animation:tickerMove 35s linear infinite;
}

.ticker span{
    font-size:14px;
    letter-spacing:4px;
    color:rgba(255,255,255,.75);
    white-space:nowrap;
    font-weight:600;
}

.ticker span:nth-child(even){
    color:#00C2FF;
    font-size:12px;
}

@keyframes tickerMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}