html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #0a0a1a;
  font-family: "Inter", sans-serif;
  color: #E0E0FF;
  overflow-x: hidden;
}
#particles, #contact-particles, #footer-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
header {
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,30,0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139,92,246,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}
.nav-menu {
  display: flex;
  align-items: center;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #E0E0FF;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}
.hamburger:hover, .hamburger:focus {
  color: #06FCEB;
  outline: none;
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  margin-left: 24px;
}
.nav-links a {
  text-decoration: none;
  color: #E0E0FF;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a:focus {
  color: #06FCEB;
}
.hero {
  text-align: center;
  padding: 120px 20px 160px;
  position: relative;
  overflow: hidden;
}
.hero h2 {
  font-size: 52px;
  background: linear-gradient(90deg, #8B5CF6, #06FCEB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}
.hero p {
  font-size: 18px;
  color: #ccc;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.orbit-ring {
  position: absolute;
  border: 2px dashed rgba(139,92,246,0.3);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  z-index: 1;
}
.orbit1 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orbit2 {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 35s;
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate Tylt(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.floating-shape {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #06FCEB;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite alternate;
  opacity: 0.6;
  z-index: 1;
}
.shape1 { top: 20%; left: 25%; animation-delay: 0s; }
.shape2 { top: 60%; left: 70%; animation-delay: 3s; }
.shape3 { top: 10%; left: 80%; width: 20px; height: 20px; border-color: #8B5CF6; }
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(360deg); }
}
.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  margin: 0 auto 15px;
  color: #fff;
  text-align: center;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin: 0 auto 50px;
  max-width: 700px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.card {
  background: rgba(20,20,40,0.7);
  border: 1px solid rgba(139,92,246,0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(139,92,246,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.card.visible {
  opacity: 1;
  transform: translateY(0);
}
.card i {
  color: #9f7aea;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #9f7aea;
  transition: transform 0.3s ease, color 0.3s ease;
}
.card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin: 10px 0;
}
.card p {
  font-size: 0.95rem;
  color: #ccc;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(139,92,246,0.8);
}
.card:hover i {
  transform: scale(1.2);
  color: #fff;
}
.about {
  padding: 80px 20px;
  background: rgba(10,10,30,0.9);
  backdrop-filter: blur(8px);
  color: #E0E0FF;
  position: relative;
}
.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.about-header h2 {
  font-size: 36px;
  color: #06FCEB;
  margin-bottom: 12px;
}
.about-header p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-text, .about-image {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.about-text.visible, .about-image.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-text {
  flex: 1 1 400px;
  max-width: 500px;
}
.about-text h3 {
  font-size: 22px;
  color: #8B5CF6;
  margin-bottom: 8px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}
.about-image {
  flex: 1 1 400px;
  max-width: 500px;
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(139,92,246,0.4);
  box-shadow: 0 0 12px rgba(139,92,246,0.3);
}
.contact {
  padding: 80px 20px;
  background: rgba(10,10,30,0.9);
  backdrop-filter: blur(10px);
  color: #E0E0FF;
  position: relative;
  overflow: hidden;
}
.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.contact-header h2 {
  font-size: 36px;
  color: #06FCEB;
  margin-bottom: 12px;
}
.contact-header p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-form {
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(139,92,246,0.4);
  background: rgba(20,20,40,0.6);
  color: #E0E0FF;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #06FCEB;
  box-shadow: 0 0 12px #06FCEB;
}
.btn-glow {
  background: linear-gradient(90deg, #8B5CF6, #06FCEB);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(139,92,246,0.8);
}
.btn-glow:hover, .btn-glow:focus {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(139,92,246,1);
}
.contact-info {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-item h3 {
  font-family: "Poppins", sans-serif;
  color: #8B5CF6;
  margin-bottom: 6px;
}
.info-item p {
  color: #ccc;
}
.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#services.section-bg {
  background-image: url('images/services.png');
}
#about.section-bg {
  background-image: url('images/about.jpg');
}
#contact.section-bg {
  background-image: url('images/contact.jpg');
}
header img {
  height: 80px;
  width: auto;
  display: block;
}
.hero-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 60px;
  z-index: 2;
  position: relative;
}
.hero-card {
  background: rgba(20,20,40,0.7);
  border: 1px solid rgba(139,92,246,0.5);
  border-radius: 16px;
  padding: 24px;
  width: 200px;
  text-align: center;
  box-shadow: 0 0 12px rgba(139,92,246,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-card:hover, .hero-card:focus {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(139,92,246,0.8);
}
.hero-card h3 {
  font-family: "Poppins", sans-serif;
  color: #06FCEB;
  margin-bottom: 8px;
  font-size: 18px;
}
.hero-card p {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.counter {
  color: #8B5CF6;
  font-size: 28px;
}
footer {
  padding: 60px;
  background: rgba(10,10,20,0.8);
  border-top: 1px solid rgba(139,92,246,0.3);
  backdrop-filter: blur(12px);
  color: #ccc;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer-col h2.footer-logo {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #8B5CF6;
  margin-bottom: 12px;
}
.footer-col h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-bottom: 16px;
  color: #06FCEB;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover, .footer-col ul li a:focus {
  color: #8B5CF6;
}
.footer-bottom {
  border-top: 1px solid rgba(139,92,246,0.3);
  padding-top: 16px;
  text-align: center;
  font-size: 14px;
  color: #888;
}
.social-icons {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}
.social {
  color: #ccc;
  transition: all 0.3s ease;
}
.social:hover, .social:focus {
  color: #8B5CF6;
  filter: drop-shadow(0 0 8px #06FCEB);
}
@media (max-width: 768px) {
  header {
    padding: 20px 30px;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,30,0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 1000;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 10px 0;
  }
  .nav-links a {
    font-size: 18px;
    display: block;
    padding: 10px;
  }
  .hero h2 {
    font-size: 40px;
  }
  .orbit1 {
    width: 300px;
    height: 300px;
  }
  .orbit2 {
    width: 450px;
    height: 450px;
  }
  .about-content, .contact-content {
    flex-direction: column;
    gap: 30px;
  }
}