/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #eee;
  line-height: 1.6;
}

h1, h2 {
  color: #00ff99;
  text-shadow: 0 0 10px #00ff99;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #eee;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #00ff99;
  text-shadow: 0 0 8px #00ff99;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #00ff99;
  text-shadow: 0 0 10px #00ff99;
}

.logo-img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  filter: drop-shadow(0 0 6px #00ff99);
}

/* Hero Section */
/* Hero background */
.hero {
  background: url("images/drone-bg.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* Dark overlay for text visibility */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* Gallery */
.gallery {
  padding: 60px 20px;
  background: #0d0d0d;
  text-align: center;
}

.gallery h2 {
  color: #00ff99;
  margin-bottom: 30px;
  font-size: 28px;
  text-shadow: 0 0 8px #00ff99;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.5);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #00ff99;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #00cc77;
}

/* Features */
.features {
  padding: 50px 20px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ff99;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 60px 20px;
  background: #111;
}

/* Content Section */
.content {
  padding: 30px 20px;
  max-width: 800px;
  margin: auto;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

form input, form textarea, form button {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

form input, form textarea {
  background: #111;
  color: #eee;
}

form button {
  background: #00ff99;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #00cc77;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  margin-top: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff99;
  font-size: 18px;
  margin-bottom: 10px;
}

.socials a {
  margin: 0 8px;
  font-size: 20px;
  text-decoration: none;
  color: #00ff99;
}