/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #141e30, #243b55);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

header h1 {
  text-align: center;
  font-size: 2.5rem;
}

.highlight {
  background: linear-gradient(to right, #00f260, #0575e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 0.6rem 1rem;
  margin: 0.5rem;
  transition: 0.3s;
  border-radius: 30px;
  font-weight: 500;
}

nav a:hover {
  background: #00f260;
  color: #000;
  transform: scale(1.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.rainbow-text {
  background: linear-gradient(90deg, #00f260, #0575e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #00f260;
  color: black;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0, 242, 96, 0.3);
}

.btn-primary:hover {
  background: #0575e6;
  color: white;
  transform: translateY(-3px);
}

/* Services Preview */
.services-preview {
  background: #111;
  padding: 5rem 1rem;
  text-align: center;
}

.services-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #1e1e2f;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.card-content a {
  color: #00f260;
  text-decoration: none;
}

.card-content a:hover {
  text-decoration: underline;
}

.card-content p {
  color: #ccc;
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hamburger {
    display: flex;
    margin-top: 1rem;
  }

  nav ul {
    flex-direction: column;
    display: none;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
  }

  nav ul.active {
    display: flex;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}
