/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navbar */
.navbar {
  background-color: #121212;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background-color: #0f0f0f;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
}

.logo img {
  height: 50px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #00ffff;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* CTA Button */
.btn {
  background-color: #00ffff;
  color: #121212;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ffffff;
  color: #00ffff;
}

/* Mobile Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #00ffff;
  border-radius: 2px;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #121212;
    position: absolute;
    top: 70px;
    right: 40px;
    padding: 20px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #121212, #0f0f0f);
}

.profile-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00ffff;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero h1 span {
  color: #00ffff;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Services Section */
.services {
  padding: 60px 20px;
  background-color: #121212;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  color: #00ffff;
  margin-bottom: 10px;
}

.services p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #cccccc;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #00ffff;
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  color: #dddddd;
  font-size: 16px;

}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Navbar Lighting Effect */
.navbar {
  background: linear-gradient(90deg, #ff00cc, #3333ff, #00ffcc, #ff9900);
  background-size: 400% 400%;
  animation: glowing 8s infinite linear;
}

@keyframes glowing {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
.share-buttons {
  text-align: center;
  margin-top: 30px;
}
.share-buttons {
  text-align: center;
  margin-top: 30px;
}

.share-buttons a, 
.share-buttons .copy-btn {
  display: inline-block;
  margin: 8px;
  font-size: 22px;
  color: white;
  background: #444;
  padding: 12px;
  border-radius: 50%;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.share-buttons a:hover,
.share-buttons .copy-btn:hover {
  background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc);
  transform: scale(1.2);
}

/* Fiverr Button */
.fiverr-order {
  text-align: center;
  margin-top: 20px;
}

.fiverr-order .btn-order {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #1dbf73, #17a55b);
  color: white;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.fiverr-order .btn-order:hover {
  background: linear-gradient(90deg, #17a55b, #1dbf73);
  transform: scale(1.1);
}
