/* styles.css */
body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Futara', sans-serif; /* Assuming a futuristic font; replace if needed */
    margin: 0;
    padding: 0;
}

.navbar {
    background: linear-gradient(to right, #001f3f, #007bff);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.nav-link {
    color: #ffffff !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00ffcc !important;
}

.hero {
    background: url('image.png') center center/cover; /* Futuristic background placeholder */
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    text-shadow: 0 0 10px #00ffcc;
}

.hero p {
    font-size: 1.5rem;
    text-shadow: 0 0 5px #00ffcc;
}

.section {
    padding: 100px 0;
}

.card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

footer {
    background: linear-gradient(to right, #001f3f, #007bff);
    padding: 20px 0;
}

/* Parallax effect on scroll for drones */
