/* Reset & Layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0b0c10;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Typography & Neon */
.neon {
  color: #00f0ff;
  text-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff;
}

.text-light-alt {
  color: #b0c9d9;
}

/* Sections */
.section {
  padding: 60px 0;
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.section:nth-of-type(even):not(.hero) {
  background-color: #101218;
}

.section:nth-of-type(odd):not(.hero) {
  background-color: #0b0c10;
}

.section h1::after,
.section h2::after {
  content: none;
}

/* Buttons */
.btn-outline-neon {
  border-color: #00f0ff;
  color: #00f0ff;
  transition: all 0.3s ease;
}

.btn-outline-neon:hover,
.cta-button:hover {
  background-color: #00f0ff;
  color: #000;
  box-shadow: 0 0 15px #00f0ff, 0 0 30px #00f0ff;
  transform: scale(1.05);
}

.btn-outline-neon:focus,
.cta-button:focus {
  box-shadow: 0 0 12px #00f0ff;
}

/* CTA Rows */
.cta-row {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #0c111a, #101b2d);
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Service Cards */
.service-box {
  transition: 0.3s ease;
  background-color: #1a1c22;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.1);
  animation: fadeInUp 0.8s ease-in-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.service-box:hover {
  box-shadow: 0 0 20px #00f0ff;
  transform: translateY(-6px);
}

.service-box i {
  font-size: 2rem;
  color: #00f0ff;
  margin-bottom: 15px;
  display: block;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar Links */
.navbar .nav-link {
  transition: color 0.2s ease;
}

.navbar .nav-link:hover {
  color: #00f0ff;
}

/* Form Fields */
input,
textarea {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
}

input:focus,
textarea:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 8px #00f0ff;
  outline: none;
}

/* Hero Background Split Section */
.section.hero {
  background: linear-gradient(135deg, #001f3f, #004466);
  color: #00f0ff;
  padding: 100px 0;
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1 1 350px;
  max-width: 500px;
  animation: fadeIn 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-image {
  flex: 1 1 350px;
  max-width: 500px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section Enhancements */
.section.about-preview {
  background: radial-gradient(circle, #0e1116, #0b0c10);
  border-top: 1px solid rgba(0,240,255,0.1);
  border-bottom: 1px solid rgba(0,240,255,0.1);
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
}
.section.services-preview {
  background: linear-gradient(145deg, #0e1218, #0b0c10);
  border-top: 1px solid rgba(0, 240, 255, 0.05);
  border-bottom: 1px solid rgba(0, 240, 255, 0.05);
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.section.contact-preview {
  background: radial-gradient(circle, #0d1116, #0a0c0f);
  border-top: 1px solid rgba(0, 240, 255, 0.05);
  border-bottom: 1px solid rgba(0, 240, 255, 0.05);
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: none;
}

.footer-link:hover {
  color: #ccc;
  text-decoration: none;
}

.footer-link.active {
  color: #0ff; /* Neon color for active */
  font-weight: bold;
}
.footer-link {
  text-decoration: none;
  color: #0ff !important; /* Neon cyan */
  font-weight: bold;
}

.footer-link:hover {
  text-decoration: none;
  color: #0ff !important;
}

.highlight-link {
  color: #0ff !important;
  font-weight: 600;
}
