/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0b0b;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header / Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.85);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav .logo {
  font-weight: 700;
  font-size: 1.6rem;
  color: #00aaff;
}

.nav nav a {
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav nav a:hover {
  color: #00aaff;
}

/* Hero / Main banner */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('images/banner.jpg') center/cover no-repeat;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.buttons .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin: 0.3rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.btn.primary {
  background: #00aaff;
  color: #fff;
}

.btn.primary:hover {
  background: #0088cc;
}

.btn.outline {
  border: 2px solid #00aaff;
  color: #00aaff;
}

.btn.outline:hover {
  background: #00aaff;
  color: #fff;
}

/* Pages / Sections */
.page {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page .subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

/* Jobs / Projects Grid */
.jobs-grid, .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.job-card, .project {
  background: rgba(20,20,20,0.9);
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover, .project:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,170,255,0.3);
}

.job-card h2, .project h2 {
  margin-bottom: 0.5rem;
}

.job-card p, .project p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 1rem;
}

.apply-btn {
  background: #00aaff;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

.apply-btn:hover {
  background: #0088cc;
}

/* Projects images */
.project img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Animations */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Responsive */
@media(max-width:768px){
  .hero-content h1 {
    font-size: 2.2rem;
  }
}
/* Apply Form Styling */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: auto;
}

.apply-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 0.95rem;
  color: #ccc;
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="file"] {
  padding: 0.8rem 1rem;
  margin-top: 0.4rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.apply-form input[type="text"]:read-only {
  background: #333;
  cursor: not-allowed;
  color: #00aaff;
}

.apply-form input::placeholder {
  color: #888;
}

.apply-btn {
  padding: 0.9rem 1.5rem;
  background: #00aaff;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.apply-btn:hover {
  background: #0088cc;
}
