/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  background-color: #0a0a0a;
  overflow-x: hidden;
  position: relative;
}

/* Background */
.background-wrapper {
  position: relative;
}

#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.7), #000);
  z-index: 1;
}

/* Content */
.content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

header h1 {
  color: #00ffcc;
  font-size: 1.8rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00ffee;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 1rem 4rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.icon {
  width: 40px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.btn-glow {
  padding: 0.8rem 2rem;
  background: linear-gradient(90deg, #00ffcc, #0077ff);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 15px #00ffee;
  transition: transform 0.3s ease;
}

.btn-glow:hover {
  transform: scale(1.05);
}

/* Services */
.services {
  padding: 4rem 1rem;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #00ffee33;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  background: rgba(0, 255, 255, 0.05);
  box-shadow: 0 0 15px #00ffee55;
}

.card h3 {
  color: #00ffee;
  margin-bottom: 1rem;
}

/* Forms */
.form-section {
  padding: 3rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select, textarea {
  padding: 0.75rem;
  background: #111;
  border: 1px solid #00ffee22;
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #777;
}
.background-image {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: url('your-background.gif') no-repeat center center/cover;
  z-index: -3;
  opacity: 0.3;
}

#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('image/shot.gif') no-repeat center center/cover;
  z-index: -4;
  opacity: 0.25; /* Adjust for visibility */
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
  z-index: -2;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
}
.social-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.2);
}

