<style>
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* NAVBAR */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 35px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li {
  position: relative;
}

nav a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #4da6ff;
}

/* DROPDOWN */
.dropdown {
  display: none;
  position: absolute;
  top: 100%; /* attach directly to parent */
  left: 0;
  background: #111;
  border: 1px solid #222;
  padding: 10px;
  border-radius: 8px;
}

.dropdown li {
  padding: 8px 15px;
  white-space: nowrap;
}

nav ul li:hover .dropdown {
  display: block;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  padding: 80px 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 64px;
}

.hero-text p {
  color: #aaa;
  margin-top: 15px;
}

.buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  background: #111;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #222;
  cursor: pointer;
}

.hero-image img {
  width: 420px;
}

/* FEATURES */
.features {
  padding: 80px 60px;
}

.features h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: linear-gradient(145deg, #111, #1a1a1a);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #222;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(77,166,255,0.2);
}

.card h3 {
  margin-bottom: 10px;
  color: #4da6ff;
}

.card p {
  color: #aaa;
  font-size: 14px;
}

/* TESTIMONIALS */
.testimonials {
  overflow: hidden;
  white-space: nowrap;
  background: #111;
  padding: 20px 0;
}

.scroll {
  display: inline-block;
  animation: scroll 40s linear infinite;
}

.testimonial {
  display: inline-block;
  width: 300px;
  margin: 0 20px;
  padding: 15px;
  background: #1a1a1a;
  border-radius: 10px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
  color: #777;
}

@media(max-width:900px){
  .hero {
    flex-direction: column;
    text-align: center;
  }
}

.auth-buttons {
  display: flex;
  gap: 12px;
}

/* BOTH BUTTONS */
.auth-buttons button {
  padding: 12px 26px; /* wider */
  border-radius: 30px;
  border: none;
  font-weight: 700; /* bold */
  font-size: 15px;
  cursor: pointer;
  color: #fff;

  background: linear-gradient(45deg, #4da6ff, #7f5cff);
  box-shadow: 0 4px 15px rgba(77,166,255,0.3);

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.auth-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77,166,255,0.5);
  opacity: 0.95;
}




/* SIGN UP */
.signup {
  background: linear-gradient(45deg, #4da6ff, #7f5cff);
  color: #fff;
}

.signup:hover {
  opacity: 0.85;
}

/* HEADER LAYOUT FIX */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 900px) {
  header {
    flex-wrap: wrap;
  }

  nav {
    width: 100%;
    margin-top: 10px;
  }

  .auth-buttons {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}
.btn-link {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #fff;

  background: linear-gradient(45deg, #4da6ff, #7f5cff);
  box-shadow: 0 4px 15px rgba(77,166,255,0.3);

  transition: all 0.3s ease;
}

.btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77,166,255,0.5);
  opacity: 0.95;
}

</style>