/* assets/css/style.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

header {
  background: #000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: cyan;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: cyan;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  min-height: 90vh;
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero-content h1 span {
  color: cyan;
}

.hero-content h2 {
  font-size: 24px;
  color: magenta;
}

.hero-content p {
  font-size: 18px;
  margin: 20px 0;
  color: #ddd;
}

.cta-buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  margin-right: 15px;
  border: none;
  border-radius: 30px;
  background: cyan;
  color: #000;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-buttons .btn:hover {
  background: #00ffffaa;
  box-shadow: 0 0 10px cyan;
}

.btn.outline {
  background: transparent;
  border: 2px solid cyan;
  color: cyan;
}

.hero-image img {
  width: 350px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 30px cyan;
}















