/* === Global Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0f0f1c, #1b1b32);
  color: #e0e0e0;
  scroll-behavior: smooth;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === Logo === */
.logo {
  height: 100px;
  filter: drop-shadow(0 0 4px #00ffe1)
          drop-shadow(0 0 10px #00ffe1);
  transition: transform 0.5s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(1deg);
}

/* === Navbar === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 10%;
  background: rgba(15, 15, 28, 0.95);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #00ffe1;
  text-decoration: none;
  font-weight: 700;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: #00ffe1;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* === Hero Section === */
.hero {
  background: linear-gradient(145deg, #111120, #1a1a2f);
  color: #fff;
  text-align: center;
  padding: 8rem 2rem;
  animation: fadeIn 2s ease-in;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 225, 0.05), transparent 60%);
  z-index: 0;
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-size: 3.5rem;
  letter-spacing: 2px;
}

.hero h1 span {
  color: #ffcc00;
  text-shadow: none;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: #00ffe1;
  color: #0f0f1c;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #00ffe1;
  position: relative;
  z-index: 1;
}

.btn:hover {
  background: #0f0f1c;
  color: #00ffe1;
  box-shadow: 0 0 15px #00ffe1, 0 0 30px #00ffe1;
  transform: scale(1.1);
}

/* === Section === */
.section {
  padding: 6rem 2rem;
  text-align: center;
  background: #141428;
  position: relative;
}

/* === Futuristic Separator === */
.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ffe1, transparent);
  opacity: 0.5;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #00ffe1;
  text-shadow: none;
}

.service-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.card {
  background: #1f1f2e;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 25px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 225, 0.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 255, 225, 0.15);
}

.card img {
  border-radius: 12px;
  width: 100%;
  margin-bottom: 1rem;
}

.contact .quote {
  font-size: 1.5rem;
  margin: 1rem 0 2rem;
  color: #bbb;
  font-style: italic;
}

footer {
  background: #0f0f1c;
  color: #00ffe1;
  text-align: center;
  padding: 2rem;
  font-size: 0.95rem;
  border-top: 1px solid #333;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
