* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #030303;
  color: white;
  font-family: Arial, sans-serif;
}

/* NAVBAR */

.navbar {
  width: 90%;
  margin: 25px auto;
  padding: 18px 30px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background: rgba(0,0,0,0.75);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo img {
  height: 42px;
}

.logo span {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: white;
}

.nav-btn {
  background: linear-gradient(135deg,#4f6bff,#6d5cff);
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 16px;
}

/* HERO */

.hero{
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 8% 80px;
    text-align: center;
    background:
      radial-gradient(circle at top,
      rgba(92,103,255,0.15),
      transparent 45%),
      #000;
}
.hero-content{
    max-width: 1100px;
    margin: auto;
}

.hero-tag {
  color: #6d5cff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero h1{
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: -2px;
}

.hero-text{
    max-width: 850px;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #a1a1aa;
}

/* JOBS */

.jobs-section {
  width: 90%;
  margin: auto;
  padding-bottom: 120px;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  margin-bottom: 16px;
}

.section-header p {
  color: #999;
}

.jobs-grid{
    display: grid;
    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap: 32px;
    margin-top: 60px;
}

.job-card{
    background: rgba(10,10,10,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 40px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.job-card:hover{
    transform: translateY(-10px);
    border-color: rgba(92,103,255,0.4);

    box-shadow:
    0 20px 60px rgba(92,103,255,0.18);
}

.job-top {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.job-type,
.job-location {
  background: rgba(109,92,255,0.15);
  color: #8ea2ff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.job-card h3{
    font-size: 2rem;
    line-height: 1.2;
    margin: 30px 0 20px;
    font-weight: 700;
}

.job-card p{
    color: #a1a1aa;
    line-height: 1.9;
    font-size: 1.05rem;
}

.apply-btn{
    margin-top: 35px;
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 16px;

    background:
    linear-gradient(135deg,#5c67ff,#7f5cff);

    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}
.apply-btn:hover{
    transform: translateY(-3px);

    box-shadow:
    0 10px 30px rgba(92,103,255,0.4);
}
/* MODAL */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 999;
}

.modal-content {
  width: 600px;
  background: #0d0d0d;
  border-radius: 24px;
  padding: 40px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
}

.apply-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 14px;
  color: white;
}

.submit-btn {
  width: 100%;
  border: none;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg,#4f6bff,#6d5cff);
  color: white;
  cursor: pointer;
}

/* MOBILE */

@media(max-width: 992px) {

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 52px;
  }

  nav {
    display: none;
  }

  .modal-content {
    width: 90%;
  }

}