/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600&display=swap");

body {
  font-family: "Oxanium", sans-serif;
  background-color: #0d0d0d;
  color: white;
  padding-top: 60px;
  overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: cyan;
  box-shadow: 0 0 10px cyan;
  z-index: 9999;
  transition: width 0.2s ease-out;
}

.magnetic {
  display: inline-block;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid cyan;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: cyan;
  transition: all 0.3s ease-in-out;
}

.navbar-brand:hover {
  text-shadow: 0px 0px 10px cyan;
}

.navbar-nav {
  position: relative;
}

.navbar-nav .nav-link {
  font-size: 1.2rem;
  color: white;
  margin-right: 20px;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: cyan;
  text-shadow: 0px 0px 10px cyan;
}

.navbar-nav .nav-link.active {
  color: cyan;
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: cyan;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  left: 0;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: cyan;
  transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

.logo {
  height: 50px;
  margin-right: 10px;
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120vh; /* Slightly larger for better parallax effect */
  background: url("../images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  transform: translateY(0);
  z-index: -1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.hero-title span {
  color: cyan;
  text-shadow: 0px 0px 15px cyan;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

.btn-glow {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(90deg, cyan, #00ffcc);
  border-radius: 50px;
  box-shadow: 0px 0px 15px cyan;
  transition: all 0.3s ease-in-out;
}

.btn-glow:hover {
  box-shadow: 0px 0px 25px cyan;
  transform: scale(1.1);
}

.background-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.circle {
  position: absolute;
  width: 80px; /* Increased size */
  height: 80px;
  background: rgba(0, 255, 255, 0.7); /* Brighter cyan */
  border-radius: 50%;
  opacity: 1; /* Increased visibility */
  box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.8); /* Added glow */
  animation: floatAnimation 6s infinite ease-in-out alternate;
}

.circle:nth-child(1) {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.circle:nth-child(2) {
  top: 50%;
  left: 75%;
  width: 100px; /* Slightly larger */
  height: 100px;
  animation-delay: 2s;
}

.circle:nth-child(3) {
  top: 80%;
  left: 30%;
  width: 60px;
  height: 60px;
  animation-delay: 4s;
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url("../images/futuristic-bg.jpeg") center/cover no-repeat;
  padding: 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-attachment: scroll; /* Better for mobile performance */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Adjust opacity (0.5 = 50% darkness) */
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 90%;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  animation: fadeIn 1.5s ease-in-out;
  color: white;
  margin: 0 auto;
}

h2.glow-text {
  font-size: 3rem;
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff, 0 0 30px #00eaff;
  animation: glow 1.5s infinite alternate;
}

p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.highlight {
  color: #00eaff;
  font-weight: bold;
}

.glow {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}

.welcome-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00ff99;
  text-shadow: 0 0 10px #00ff99, 0 0 20px #00ff99;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
  }
  to {
    text-shadow: 0 0 20px #00eaff, 0 0 30px #00eaff;
  }
}

/* ===== MISSION & VISION ===== */
.mission-vision-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  padding: 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.8) 40%,
    rgba(0, 0, 0, 0.95) 80%
  );
}

.futuristic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/futuristic-grid.jpg") center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
}

.card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 90%;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  animation: fadeIn 1.5s ease-in-out;
  color: white;
  margin: 15px auto;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.holo-border {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: inherit;
  border: 2px solid transparent;
  animation: holo-glow 2s infinite alternate;
  pointer-events: none;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.6);
}

.neon-divider {
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #00eaff, #ff00ff);
  border-radius: 2px;
  margin: 30px auto;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 0 0 10px rgba(255, 0, 255, 0.6);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.glow-text-blue {
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff, 0 0 30px #00eaff;
}

.glow-text-purple {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}

p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.highlight {
  color: #00eaff;
  font-weight: bold;
}

.glow {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

@keyframes holo-glow {
  0% {
    border-image: linear-gradient(45deg, #00eaff, #ff00ff);
    border-image-slice: 1;
    filter: drop-shadow(0 0 10px #00eaff);
  }
  100% {
    border-image: linear-gradient(45deg, #ff00ff, #00eaff);
    border-image-slice: 1;
    filter: drop-shadow(0 0 15px #ff00ff);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ######## SERVICES ########## */
.services-section {
  text-align: center;
  padding: 80px 50px;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 40px;
}

.glow-text-blue {
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(350px, 1fr));
  gap: 30px;
  justify-content: center;
}

.service-card {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.service-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  margin-bottom: 15px;
}

h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 15px;
}

p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
  }
}

/* ######## PROJECTS ########## */
.projects-section {
  text-align: center;
  padding: 80px 50px;
  position: relative;
  overflow: hidden;
}

.projects-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 40px;
}

.glow-text-purple {
  color: #b200ff;
  text-shadow: 0 0 10px #b200ff, 0 0 20px #b200ff;
}

.projects-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
  scrollbar-width: none;
  width: 100%;
}

.projects-grid::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 450px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 0, 255, 0.3);
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10;
}

.scroll-btn:hover {
  background: rgba(255, 0, 255, 0.6);
}

.left-btn {
  left: 0;
}

.right-btn {
  right: 0;
}

.project-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-image img {
  width: 100%;
  max-width: 200px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid rgba(255, 0, 255, 0.5);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin-bottom: 10px;
}

.project-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
}

h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 15px;
}

p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .projects-wrapper {
    width: 95%;
  }

  .projects-grid {
    padding: 10px;
  }

  .project-card {
    flex: 0 0 90%; /* Take up more space on smaller screens */
  }

  .scroll-btn {
    font-size: 24px; /* Reduce button size for better mobile experience */
    padding: 8px 12px;
  }

  .left-btn {
    left: 5px; /* Adjust for smaller screens */
  }

  .right-btn {
    right: 5px;
  }
}

/* ######## TESTIMONIAL ########## */
.testimonials-section {
  text-align: center;
  padding: 100px 50px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 40px;
}

.glow-text-blue {
  color: #00ccff;
  text-shadow: 0 0 10px #00ccff, 0 0 20px #00ccff;
}

.testimonials-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 350px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  position: absolute;
  width: 100%;
  max-width: 600px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.testimonial-card.active {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.client-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #00ccff;
  box-shadow: 0 0 10px #00ccff;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-style: italic;
}

h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.client-position {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.rating {
  font-size: 1.5rem;
  color: #ffd700;
  margin-top: 10px;
}

/* ######## CLIENTS ########## */
.clients-section {
  text-align: center;
  padding: 80px 50px;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 40px;
}

.glow-text-blue {
  color: #00ccff;
  text-shadow: 0 0 10px #00ccff, 0 0 20px #00ccff;
}

.clients-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.clients-grid {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  animation: slideClients 15s linear infinite;
}

.client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 20px;
  width: 180px; /* Fixed width */
  height: 120px; /* Fixed height */
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  border: 2px solid rgba(0, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.client-logo::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, #00ccff, transparent, #00ccff);
  top: -50%;
  left: -50%;
  animation: rotateGlow 4s linear infinite;
  opacity: 0.6;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  transition: transform 0.3s ease-in-out;
}

.client-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.client-logo:hover img {
  transform: rotateY(360deg);
}

@keyframes slideClients {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ######## TEAM ########## */
.team-section {
  padding: 100px 0;
  text-align: center;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.4) 0%,
    transparent 70%
  );
  filter: blur(50px);
  z-index: 0;
}

.team-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 255, 0.4) 0%,
    transparent 70%
  );
  filter: blur(60px);
  z-index: 0;
}

.section-title {
  font-size: 36px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.team-card {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.9),
    rgba(40, 40, 40, 0.9)
  );
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0px 5px 15px rgba(0, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 310px;
  max-width: 90%;
  height: 420px;
  border: 2px solid rgba(0, 255, 255, 0.3);
}

.team-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.4),
    rgba(255, 0, 255, 0.4)
  );
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: -1;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 255, 255, 0.4);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card img {
  width: 120px;
  height: 140px;
  border-radius: 20%;
  margin-bottom: 15px;
  border: 4px solid rgba(0, 255, 255, 0.5);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
}

.team-card img::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
  z-index: -1;
}

.team-card:hover img {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.team-card:hover img {
  animation: glitch 0.2s linear infinite;
}

.team-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 5px;
}

.team-card p {
  color: #0ff;
  font-size: 15px;
  margin-bottom: 15px;
}

.social-links a {
  color: #ffffff;
  font-size: 20px;
  margin: 0 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #0ff;
  transform: scale(1.2);
}

@media (min-width: 1024px) {
  .team-card {
    max-width: 400px;
    height: 440px;
  }

  .team-card h3 {
    font-size: 24px;
  }

  .team-card p {
    font-size: 16px;
  }
}


/* ######## CONTACT ########## */
.contact-section {
  padding: 100px 0;
  text-align: center;
  background: #020202;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at center,
      rgba(0, 255, 255, 0.3),
      transparent 70%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 255, 255, 0.12) 0px,
      transparent 8px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 255, 255, 0.12) 0px,
      transparent 8px
    );
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
  animation: glow-move 5s infinite linear alternate;
}

@keyframes glow-move {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-elements span {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  border-radius: 50%;
  animation: float 6s infinite linear alternate;
  opacity: 0.7;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  100% {
    transform: translateY(-30px) translateX(20px) scale(1.3);
  }
}

.floating-elements span:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-duration: 5s;
}

.floating-elements span:nth-child(2) {
  top: 50%;
  left: 10%;
  animation-duration: 7s;
}

.floating-elements span:nth-child(3) {
  top: 80%;
  left: 30%;
  animation-duration: 6s;
}

.floating-elements span:nth-child(4) {
  top: 20%;
  left: 70%;
  animation-duration: 8s;
}

.floating-elements span:nth-child(5) {
  top: 60%;
  left: 90%;
  animation-duration: 5.5s;
}

.floating-elements span:nth-child(6) {
  top: 90%;
  left: 50%;
  animation-duration: 7.5s;
}

.section-title {
  font-size: 36px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #0077ff;
  position: relative;
  z-index: 1;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  background: rgba(30, 30, 30, 0.7);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 5px 20px rgba(0, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(0, 255, 255, 0.5);
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid rgba(0, 255, 255, 0.5);
  outline: none;
  color: #ffffff;
  font-size: 18px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 5px;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #00ffff;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.6);
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease-in-out;
  pointer-events: none;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -14px;
  left: 10px;
  font-size: 14px;
  color: #00ffff;
  background: rgba(0, 0, 0, 0.8);
  padding: 0 5px;
  border-radius: 3px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #00ffff, #0077ff);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0077ff, #00ffff);
  box-shadow: 0px 5px 15px rgba(0, 255, 255, 0.6);
  transform: scale(1.05);
}

.submit-btn:active {
  transform: scale(0.95);
}

/* ######## FAQ ########## */
.faq-section {
  padding: 100px 0;
  text-align: center;
  background: #0a0a0a;
}

.section-title {
  font-size: 36px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: linear-gradient(135deg, #1e1e1e, #292929);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0, 255, 255, 0.3);
}

.faq-question {
  width: 100%;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 20px;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.faq-question:hover {
  background: rgba(0, 255, 255, 0.1);
}

.toggle-icon {
  font-size: 24px;
  transition: 0.3s;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  border-top: 1px solid rgba(0, 255, 255, 0.3);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ######## FOOTER ########## */
.footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 50px 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.05) 0%,
    transparent 80%
  );
  animation: moveGlow 6s linear infinite alternate;
  z-index: 0;
}

@keyframes moveGlow {
  from {
    transform: translateX(-10px) translateY(-10px);
  }
  to {
    transform: translateX(10px) translateY(10px);
  }
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-column h3 {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #00ffff;
  position: relative;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #00ffff;
  margin: 8px auto;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  transition: 0.3s ease-in-out;
  position: relative;
}

.footer-column ul li a:hover {
  color: #00ffff;
  text-shadow: 0 0 8px #00ffff;
  animation: glitch 0.5s linear infinite;
}

@keyframes glitch {
  0% {
    text-shadow: 2px 2px 0px #00ffff;
  }
  50% {
    text-shadow: -2px -2px 0px #00ffff;
  }
  100% {
    text-shadow: 2px 2px 0px #00ffff;
  }
}

.footer-column p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-column p a {
  text-decoration: none;
  color: #00ffff;
  transition: 0.3s ease-in-out;
}

.footer-column p a:hover {
  text-shadow: 0 0 8px #00ffff;
}

.social-icons {
  margin-top: 15px;
}

.social-icon {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.social-icon:hover {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
  margin-top: 20px;
  padding: 15px 0;
  background: linear-gradient(90deg, #000, #222, #000);
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
