/* ==== GLOBAL STYLES ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: radial-gradient(circle at top, #0a0a0f, #000);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ==== HEADER ==== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 30, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

header .logo-area {
  display: flex;
  align-items: center;
}

header .logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #00aaff;
}

header .home-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

header .home-link:hover {
  color: #00aaff;
  text-shadow: 0 0 8px #00aaff;
}

header h1 {
  font-size: 1.3rem;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #00aaff;
  text-shadow: 0 0 10px #00aaff;
}

/* ==== HERO ==== */
#hero {
  height: 100vh;
  background: url("images/bg.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

#hero .hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 50px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.3);
}

#hero h1 {
  font-size: 2rem;
  color: #00aaff;
  text-shadow: 0 0 15px #00aaff;
}

#hero p {
  margin: 15px 0 25px;
  color: #ddd;
}

.btn {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.btn:hover {
  background: #0088cc;
  box-shadow: 0 0 15px #00aaff;
}

/* ==== SECTIONS ==== */
section {
  padding: 100px 10%;
  text-align: center;
}

section h2 {
  color: #00aaff;
  text-shadow: 0 0 10px #00aaff;
  margin-bottom: 20px;
}

section p {
  max-width: 800px;
  margin: auto;
  color: #ccc;
}

/* ==== FEATURES ==== */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.1);
  transition: 0.3s;
}

.feature:hover {
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
}

/* ==== GALLERY ==== */
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.2);
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.5);
}

/* ==== VIDEOS ==== */
.videos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.videos video {
  width: 320px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

blockquote {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-left: 4px solid #00aaff;
  border-radius: 10px;
  font-style: italic;
}

/* ==== CONTACT ==== */
#contact .btn {
  margin-top: 20px;
}

/* ==== FOOTER ==== */
footer {
  background: rgba(15, 15, 30, 0.9);
  text-align: center;
  padding: 12px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

footer .footer-title {
  margin-bottom: 4px;
}

footer .footer-title h2 {
  color: #00aaff;
  text-shadow: 0 0 6px #00aaff;
  font-size: 1rem;
}

footer .footer-title p {
  color: #aaa;
  font-size: 0.8rem;
}

footer h3 {
  font-size: 0.85rem;
  color: #fff;
  margin-top: 4px;
}

.social-links {
  margin: 4px 0;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  transition: 0.3s;
  font-size: 0.8rem;
}

.social-links a:hover {
  color: #00aaff;
  text-shadow: 0 0 6px #00aaff;
}

footer p {
  color: #777;
  font-size: 0.7rem;
  margin-top: 4px;
}

/* ==== RESPONSIVE FIXES ==== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }

  #hero {
    height: auto;
    padding: 120px 20px 60px;
  }

  #hero .hero-content {
    padding: 25px;
  }

  #hero h1 {
    font-size: 1.5rem;
  }

  #hero p {
    font-size: 0.9rem;
  }

  section {
    padding: 70px 5%;
  }

  .features, .gallery, .videos {
    flex-direction: column;
    align-items: center;
  }

  .gallery img, .videos video, .feature {
    width: 90%;
    max-width: 350px;
  }

  footer {
    padding: 8px 0;
    font-size: 0.75rem;
  }

  footer h3 {
    font-size: 0.8rem;
  }

  .social-links a {
    font-size: 0.75rem;
    margin: 3px;
  }
}
