@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

:root {
  --font-main: 'Poppins', sans-serif;
  --light: #f0f0f0;
  --accent: #00ffe7;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==== BACKGROUND ==== */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: url('servicebg.png') center/cover no-repeat fixed;
  color: var(--light);
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.5);
  z-index: -1;
  backdrop-filter: blur(5px);
}

/* ==== NAVIGATION ==== */
.main-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent; /* ← fully transparent */
  border-bottom: none;
  z-index: 1000;
}


.logo {
  width: 60px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent);
}


/* ==== HERO SECTION ==== */
.hero-section {
  padding-top: 120px;
}
.hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  flex-wrap: wrap;
  gap: 40px;
}
.hero-text {
  flex: 1;
  text-align: left;
}
.hero-text h1 {
  font-size: 36px;
  color: var(--accent);
  text-shadow: 0 0 6px var(--accent);
}
.hero-text span {
  color: white;
  text-shadow: 0 0 4px var(--accent);
}
.hero-tagline {
  font-size: 18px;
  margin: 20px 0 30px;
  color: #ccc;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  text-align: right;
}
.hero-image img {
  max-width: 360px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
}

/* ==== EXPLORE BUTTON ==== */
.explore-btn {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border: 2px solid var(--accent);
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  background: transparent;
}
.explore-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--accent);
}

/* ==== MAIN CONTENT BOX ==== */
.main-content-box {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 30px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid #2a2a2a;
  box-shadow: 
    -5px 0 15px rgba(0,255,255,0.08),
    5px 0 15px rgba(0,255,255,0.08);
}
.main-content-box h2 {
  font-size: 28px;
  color: var(--accent);
  text-shadow: 0 0 4px var(--accent);
  margin-top: 30px;
}
.main-content-box p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 15px;
  color: #e6e6e6;
}

/* ==== FOOTER ==== */
.footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* ==== RESPONSIVE ==== */
@media screen and (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .navbar {
    flex-wrap: wrap;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .hero-image {
    text-align: center;
  }
  .hero-image img {
    margin-top: 30px;
    max-width: 300px;
  }
  .main-content-box {
    padding: 25px 20px;
  }
}
