/* Nice müasir sayt dizayn&#305; - göy v&#601; q&#305;rm&#305;z&#305; r&#601;ng tonlar&#305; */
:root {
  --primary: #0047ab;     /* Göy r&#601;ng */
  --accent: #e60023;      /* Q&#305;rm&#305;z&#305; */
  --bg: #f5f7fa;
  --text: #222;
  --muted: #777;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

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

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  gap: 30px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: var(--primary);
}

.hero-text p {
  margin-top: 10px;
  color: var(--muted);
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.btn:hover {
  background: var(--primary);
}

.hero img {
  width: 420px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  background: var(--primary);
  color: white;
}

@media(max-width:900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero img {
    width: 100%;
  }
}
