* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0c10;
  color: white;
  overflow-x: hidden;
}

/* NAVBAR (cinematic transparency) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  backdrop-filter: blur(0px);
  background: rgba(0, 0, 0, 0);
}
.navbar.scrolled {
  padding: 14px 5%;
  background: rgba(5, 8, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #eef5ff;
  font-weight: 500;
  transition: 0.2s;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2c9aff;
  transition: 0.3s;
}
.nav-links a:hover:after {
  width: 100%;
}
.nav-links a:hover {
  color: #8cd4ff;
}

.menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;

  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.circle-logo {
  display: inline-block;
}

.logo i {
  color: #2c9aff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  margin-right: 6px;
}

img {
  width: 100%;
  display: block;
}

.services-page {
  width: 100%;
}

/* HERO */

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
    url(/images/servicesBackground.png) center/cover;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 25px;
}

.gradient {
  background: linear-gradient(90deg, #e43bfc, #e43bfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #d5dfec;
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 750px;
  margin: auto;
}

/* SERVICE SECTION */

.service-section {
  padding: 110px 8%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-section:nth-child(even) .service-container {
  direction: rtl;
}

.service-section:nth-child(even) .service-text {
  direction: ltr;
}

.service-image {
  position: relative;
}

.service-image img {
  border-radius: 28px;
  height: 500px;
  object-fit: cover;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;

  background: linear-gradient(
    180deg,
    rgba(228, 59, 252, 0.1),
    rgba(0, 0, 0, 0.1)
  );
}

.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #e43bfc, #6b66ff);

  margin-bottom: 30px;

  box-shadow: 0 0 30px rgba(228, 59, 252, 0.3);
}

.service-icon i {
  font-size: 2.2rem;
  color: white;
}

.service-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 22px;
  line-height: 1.1;
  font-weight: 800;
}

.service-text p {
  color: #b7c4d6;
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 35px;
}

.service-features div {
  display: flex;
  align-items: center;
  gap: 15px;

  color: #d8e1ec;
}

.service-features i {
  color: #e43bfc;
  font-size: 1rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: white;

  padding: 14px 28px;
  border-radius: 50px;

  background: linear-gradient(90deg, #e43bfc, #b72bd4);

  transition: 0.3s;
  font-weight: 600;
}

.service-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 25px rgba(228, 59, 252, 0.4);
}
/* FOOTER */

.footer {
  background: #03060c;
  padding: 40px 5% 20px;
  border-top: 1px solid rgba(228, 59, 252, 0.15);
  text-align: center;
}

.footer-credit {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-credit a {
  color: #b8c7ff;
  text-decoration: none;
  font-size: 0.85rem;

  transition:
    color 0.3s ease,
    text-shadow 0.3s ease,
    transform 0.3s ease;

  display: inline-block;
}

.footer-credit a:hover {
  color: #e43bfc;

  text-shadow:
    0 0 8px rgba(228, 59, 252, 0.8),
    0 0 18px rgba(228, 59, 252, 0.5);

  transform: translateY(-2px);
}
/* RESPONSIVE */

@media (max-width: 950px) {
  .service-container {
    grid-template-columns: 1fr;
  }

  .service-section:nth-child(even) .service-container {
    direction: ltr;
  }

  .service-image img {
    height: 380px;
  }

  @media (max-width: 900px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 75%;
      height: 100vh;
      background: rgba(5, 8, 15, 0.97);
      backdrop-filter: blur(18px);

      flex-direction: column;
      justify-content: center;
      align-items: center;

      transition: 0.4s ease;
      z-index: 999;
    }

    .nav-links.active {
      right: 0;
    }

    .menu-btn {
      display: block;
      z-index: 1001;
    }
  }
}
