* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    background: #0f172a;
}

/* HEADER */
header {
    position: absolute;
    width: 100%;
    top: 0;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

header h1 {
    color: white;
    font-weight: 600;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 300;
    transition: 0.3s;
}

nav a:hover {
    color: #38bdf8;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2,6,23,0.9), rgba(2,6,23,0.6));
}

.hero-content {
    position: relative;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

button {
    padding: 12px 30px;
    border: none;
    background: #38bdf8;
    color: black;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0ea5e9;
}

/* FEATURES */
.features {
    padding: 80px 20px;
    text-align: center;
    background: #0f172a;
    color: white;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* CTA */
.cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to right, #0ea5e9, #38bdf8);
    color: black;
}

.cta h2 {
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #020617;
    color: white;
}
body {
    background: linear-gradient(-45deg, #020617, #0f172a, #0ea5e9, #020617);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.footer {
    background: #020617;
    color: white;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-container div {
    margin: 15px;
}

.copy {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}
.page-hero {
    text-align: center;
    padding: 100px 20px 50px;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: white;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.about-content {
    max-width: 800px;
    margin: auto;
    padding: 40px;
    color: white;
    line-height: 1.6;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px;
    flex-wrap: wrap;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 300px;
}

.contact-form input,
.contact-form textarea {
    margin: 10px 0;
    padding: 12px;
    border-radius: 5px;
    border: none;
}

.contact-info {
    color: white;
}