* {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
  color: #0f172a;
}

.navbar {
  background: linear-gradient(90deg, #4f6df5, #6d8bff);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  box-shadow: 0 18px 40px rgba(79, 109, 245, 0.18);
  position: sticky;
  top: 16px;
  z-index: 10;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.logo a {
  text-decoration: none;
  font-size: 22px;
  padding: 12px 10px;
  color: #f1f5f9;
  font-weight: 700;
}

.hero {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.hero li a {
  text-decoration: none;
  color: #f8fafc;
  font-size: 16px;
  transition: color 0.25s ease;
}

.hero li a:hover {
  color: #e2e8f0;
}

button,
.hero-input button {
  font-size: 18px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #4f6df5;
  color: #fff;
  border: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 12px 25px rgba(79, 109, 245, 0.18);
}

button:hover,
.hero-input button:hover,
.nbt:hover {
  cursor: pointer;
  background: #3b54d7;
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(79, 109, 245, 0.22);
}

button:active,
.nbt:active {
  transform: translateY(0);
  background: #2f44ad;
}

.meta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  gap: 40px;
}

.text {
  max-width: 700px;
  animation: fadeInUp 0.9s ease both;
}

.text h1 {
  color: #0f172a;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 40px rgba(79, 109, 245, 0.12);
}

.text p {
  margin: 20px 0 30px;
  color: #475569;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  max-width: 680px;
}

.hero-input {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-input input {
  padding: 16px 22px;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  background: #fff;
  min-width: 240px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-input input:focus {
  outline: none;
  border-color: #4f6df5;
  box-shadow: 0 0 0 6px rgba(79, 109, 245, 0.12);
}

.hero-image {
  animation: fadeInUp 0.9s ease 0.15s both;
}

.hero-image img {
  width: 100%;
  max-width: 720px;
  border-radius: 24px;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
  filter: drop-shadow(0 25px 50px rgba(15, 23, 42, 0.1));
}

.hero-image img:hover {
  transform: translateY(-8px) scale(1.01);
  filter: drop-shadow(0 35px 60px rgba(15, 23, 42, 0.14));
}

.Web {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  background-color: #f8fafc;
  padding: 60px;
  gap: 24px;
}
.card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.9s ease both;
}
.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}

.card img {
  width: 70px;
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 1.35rem;
}

.card p {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.nyc {
  display: grid;
  background-color: #f8fafc;
  gap: 16px;
  padding: 60px;
}

.card1 {
  background: #fff;
  padding: 28px 36px;
  text-align: center;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.card1 input {
  width: 100%;
  max-width: 520px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  margin-top: 16px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card1 input:focus {
  outline: none;
  border-color: #4f6df5;
  box-shadow: 0 0 0 6px rgba(79, 109, 245, 0.12);
}

footer {
  background: linear-gradient(90deg, #4f6df5, #6d8bff);
  padding: 24px 30px;
  color: #fff;
}

.footer-left {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.footer-left a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.Au {
  text-align: center;
  padding: 15px 0 0;
  opacity: 0.95;
}

button:nth-child(even) {
  background: #16a34a;
}

.logo::before {
  content: "";
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
