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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #0b1020;
  color: #e5e7eb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(11, 16, 32, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: #cbd5e1;
  font-size: 0.95rem;
  transition: 0.3s;
}

nav a:hover {
  color: #ffffff;
}

.hero {
  padding: 110px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.18), transparent 30%);
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-text-side {
  flex: 1;
  min-width: 300px;
}

.hero-image {
  flex: 1;
  min-width: 260px;
  text-align: center;
}

.hero-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.35);
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
  color: #93c5fd;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 18px;
  color: #ffffff;
}

.hero-text,
.section-text {
  color: #cbd5e1;
  max-width: 760px;
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

.btn.primary {
  background: #2563eb;
  color: white;
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: #1d4ed8;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.03);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.section {
  padding: 80px 0;
}

.alt {
  background: rgba(255, 255, 255, 0.02);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.card h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.card p {
  color: #cbd5e1;
}

.card a {
  display: inline-block;
  margin-top: 14px;
  color: #93c5fd;
  font-weight: 600;
}

.single {
  margin-top: 28px;
}

.contact-links {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-links a {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 12px;
  }

  nav {
    justify-content: center;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-image img {
    width: 220px;
    height: 220px;
  }
}
