* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #07111f;
  color: #ffffff;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  padding: 30px 8%;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 35%),
    linear-gradient(135deg, #030712, #07111f, #0f172a);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  width: 170px;
  height: auto;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 28px;
  font-weight: bold;
}

.nav-links a:hover {
  color: #38bdf8;
}

.hero-grid {
  display: flex;
  align-items: center;
  min-height: 75vh;
}

.hero-content {
  max-width: 900px;
}

.badge,
.small-title {
  display: inline-block;
  color: #38bdf8;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 14px;
}

.hero-content h1 {
  font-size: 68px;
  line-height: 1.05;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 21px;
  color: #cbd5e1;
  margin-bottom: 35px;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: #38bdf8;
  color: #020617;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid #38bdf8;
}

.secondary-btn:hover {
  background: #38bdf8;
  color: #020617;
}



.section {
  padding: 95px 8%;
  text-align: center;
}

.section h2 {
  font-size: 42px;
  max-width: 850px;
  margin: 0 auto 40px;
  color: #ffffff;
}

.cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: linear-gradient(180deg, #111827, #0f172a);
  padding: 38px;
  border-radius: 22px;
  width: 340px;
  border: 1px solid #1e293b;
  text-align: left;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
}

.card h3 {
  margin-bottom: 15px;
  color: #38bdf8;
  font-size: 22px;
}

.card p {
  color: #cbd5e1;
  margin-bottom: 15px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  padding: 8px 0;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card li::before {
  content: "✓";
  color: #38bdf8;
  margin-right: 10px;
}

.technology-banner {
  height: 230px;
  background:
    linear-gradient(rgba(3, 7, 18, 0.25), rgba(3, 7, 18, 0.45)),
    url("BRIAN.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.why-grid div {
  background: #0f172a;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #1e293b;
  text-align: left;
}

.why-grid h3 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.why-grid p {
  color: #cbd5e1;
}

.testimonials {
  background: #020617;
}

.testimonial-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  width: 330px;
  background: #111827;
  padding: 32px;
  border-radius: 22px;
  border: 1px solid #1e293b;
  text-align: left;
}

.testimonial p {
  color: #cbd5e1;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial h4 {
  color: #38bdf8;
}

.consultation-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.16), transparent 35%),
    #020617;
}

.section-intro {
  color: #cbd5e1;
  max-width: 650px;
  margin-bottom: 35px;
  font-size: 18px;
}

.contact-options {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-options div {
  background: #111827;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid #1e293b;
  width: 300px;
}

.contact-options h3 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.contact-options a {
  color: #cbd5e1;
  text-decoration: none;
}

.contact-options a:hover {
  color: #38bdf8;
}

.consultation-form {
  width: 100%;
  max-width: 720px;
  background: #111827;
  padding: 42px;
  border-radius: 24px;
  border: 1px solid #1e293b;
  text-align: left;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.consultation-form label {
  display: block;
  margin-bottom: 8px;
  margin-top: 18px;
  color: #ffffff;
  font-weight: bold;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #334155;
  background: #020617;
  color: #ffffff;
  font-size: 16px;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: #38bdf8;
}

.form-btn {
  margin-top: 28px;
  width: 100%;
  font-size: 16px;
}

footer {
  padding: 40px 8%;
  text-align: center;
  background: #020617;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
}

footer h3 {
  color: #38bdf8;
  margin-bottom: 8px;
}

footer p {
  margin-bottom: 6px;
}

@media (max-width: 950px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    text-align: center;
  }

  .nav-links a {
    margin: 0 8px;
    font-size: 14px;
  }

  .logo-img {
    width: 145px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .section h2 {
    font-size: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .consultation-form {
    padding: 25px;
  }

  .technology-banner {
    height: 160px;
  }
}