* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0f172a;
    color: #fff;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    color: #38bdf8;
}

.navbar a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    position: relative;
}

.navbar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #38bdf8;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.7);
    z-index: -1;
}

.hero-content {
    height: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 0 80px;
    gap: 40px;
}

.hero-text {
    max-width: 600px;
    animation: slideIn 1.5s ease;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-text p {
    opacity: 0.85;
    margin-bottom: 25px;
}

.hero-text button {
    padding: 12px 30px;
    border: none;
    background: #38bdf8;
    color: #000;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-text button:hover {
    transform: scale(1.1);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 110%;
    max-width: 700px;
    transform: translateX(40px);
    opacity: 0.95;
    filter: drop-shadow(0 40px 80px rgba(56, 189, 248, 0.45));
    animation: float 4s ease-in-out infinite;
    border-radius: 20px;
}

.services {
    padding: 100px 60px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    width: 280px;
    padding: 30px;
    background: #020617;
    border-radius: 15px;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.3);
}

.about {
    padding: 100px 60px;
    text-align: center;
    background: #020617;
}

.about h2 {
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #020617;
    font-size: 14px;
}

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

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}