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

body {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  background: radial-gradient(circle at 50% 50%, #0d0d0d, #000);
  overflow-x: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  color: #ffffff;
}


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

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #c4c4c4;
}

.cta-button {
  background:#ffffff ;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: scale(1.1);
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  padding: 0 10%;
}

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

.hero h2 {
  font-size: 3rem;
  color: #ffffff;
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
  color: #bbbbbb;
}

.hero-button {
  background: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  transition: transform 0.3s;
}

.hero-button:hover {
  transform: scale(1.1);
}

.features, .cards {
  padding: 50px 10%;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, background 0.3s;
}

.feature-item:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.cards .card-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card-item {
  text-align: center;
}

.card-item img {
  max-width: 100%;
  border-radius: 10px;
}

.footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
}


.hero-logo{
  width: 500px;
}