/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: 'Inter', sans-serif;
  background: #0f172a;
  color: #e2e8f0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3 {
  color: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

/* NAVBAR */
.navbar {
  background: #020617;
  padding: 15px 0;
  border-bottom: 1px solid #1e293b;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #cbd5f5;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #6366f1;
}

/* HERO */
.hero {
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
  color: #94a3b8;
}

.hero-image img {
  width: 400px;
  border-radius: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s;
}

.primary {
  background: #6366f1;
  color: #fff;
}

.primary:hover {
  background: #4f46e5;
}

.secondary {
  border: 1px solid #6366f1;
  color: #6366f1;
}

.secondary:hover {
  background: #6366f1;
  color: #fff;
}

/* TRUST */
.trust {
  padding: 40px 0;
  text-align: center;
}

.trust-box {
  display: flex;
  justify-content: space-around;
}

.trust h2 {
  font-size: 28px;
}

/* FEATURES */
.features {
  padding: 80px 0;
}

.feature-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* DEVELOPERS */
.developers {
  padding: 80px 0;
}

.dev-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dev-card {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
}

.dev-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.dev-card a {
  display: inline-block;
  margin-top: 10px;
  color: #6366f1;
}

/* PROJECTS */
.projects {
  padding: 80px 0;
}

.project-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.project-card {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}

.project-card img {
  width: 100%;
}

.project-card h3 {
  padding: 10px;
}

.project-card p {
  padding: 0 10px 10px;
  color: #94a3b8;
}

/* HIRE */
.hire {
  padding: 80px 0;
  text-align: center;
}

.hire-box {
  background: #1e293b;
  padding: 40px;
  border-radius: 12px;
}

/* COMMUNITY */
.community {
  padding: 80px 0;
  text-align: center;
}

/* JOBS */
.jobs {
  padding: 80px 0;
}

.job-list {
  list-style: none;
  text-align: center;
}

.job-list li {
  margin: 10px 0;
}

/* CTA */
.cta {
  padding: 80px 0;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #020617;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #1e293b;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-links a,
.footer-social a {
  color: #94a3b8;
  text-decoration: none;
  margin: 5px 0;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #6366f1;
}
/* CENTER */
.center {
  text-align: center;
  margin-top: 20px;
}


.input {
  width: 50%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #1e293b;
  color: white;
}

select.input {
  appearance: none;
  cursor: pointer;
}
/* RESPONSIVE */
@media (max-width: 768px) {

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    margin-top: 20px;
  }

  .feature-grid,
  .dev-grid,
  .project-grid {
    flex-direction: column;
  }

  .trust-box {
    flex-direction: column;
    gap: 20px;
  }
    .footer-content {
    flex-direction: column;
    text-align: center;
  }
}