﻿/* =========================================================
   GLOBAL RESET & BASE
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 14px;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding-top: 95px; /* fixed navbar */
    background: #000;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        padding-top: 75px;
    }
}

.main-content {
    width: 100%;
    max-width: 100%;
}

/* =========================================================
   NAVBAR (FIXED & MOBILE SAFE)
========================================================= */

.it-navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: auto;
    z-index: 999999;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar {
    background: transparent !important;
}

.navbar-logo {
    height: 70px;
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }
}

.navbar .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500;
}

    .navbar .nav-link:hover {
        color: #4aa3ff !important;
    }

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

@media (max-width: 992px) {
    .navbar-collapse {
        background: #000;
        border-radius: 14px;
        padding: 14px 16px;
    }
}

/* =========================================================
   HERO (INDEX PAGE)
========================================================= */

.video-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
}

.video-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,0.85), rgba(0,0,0,0.45) );
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 720px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
}

    .hero-title span {
        color: #4aa3ff;
    }

.hero-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.hero-actions .btn {
    border-radius: 50px;
}

/* =========================================================
   SERVICES
========================================================= */

.service-card {
    background: linear-gradient(180deg, #111, #0a0a0a);
    padding: 42px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
}

    .service-card i {
        font-size: 3rem;
        color: #4aa3ff;
        margin-bottom: 18px;
    }

    .service-card:hover {
        transform: translateY(-8px);
    }

/* =========================================================
   CLIENT MARQUEE
========================================================= */

.client-marquee-wrapper {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.client-marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.client-item img {
    height: 70px;
    opacity: 0.95;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   PROCESS FLOW
========================================================= */

.process-flow {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    width: 220px;
    height: 170px;
    background: #111;
    border-radius: 18px;
    text-align: center;
    padding: 22px;
}

/* =========================================================
   FOOTER (BLUE LINK FIX INCLUDED)
========================================================= */

.site-footer {
    background: rgba(0,0,0,0.95);
    padding: 60px 0 30px;
}

    .site-footer a,
    .site-footer a:visited,
    .site-footer a:hover,
    .site-footer a:focus {
        color: #fff !important;
        text-decoration: none;
    }

        .site-footer a:hover {
            text-decoration: underline;
        }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
}

.footer-bottom {
    text-align: center;
    font-size: .9rem;
    color: #9ca3af;
}

/* =========================================================
   MOBILE SAFETY
========================================================= */

@media (max-width: 768px) {
    .container,
    .container-fluid {
        max-width: 100% !important;
        padding-left: 16px;
        padding-right: 16px;
    }
}
