body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 2px solid #2e7d32;
}
.container {
    max-width: 1300px;
    margin: auto;
    padding: 12px 20px;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-group img {
    height: 40px;
}
.badge-dev {
    background: #2e7d32;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
}
.main-nav a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    color: #2e7d32;
}

/* HERO */
.hero-slider {
    height: 520px;
    position: relative;
}
.slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(235,240,255,0.9);
}
.hero-content {
    position: absolute;
    top: 35%;
    left: 8%;
}
.hero-content h1 {
    background: rgba(120,120,120,0.85);
    color: #fff;
    padding: 15px 20px;
    font-size: 44px;
}
.hero-search {
    margin-top: 20px;
    display: flex;
}
.hero-search input {
    padding: 14px;
    width: 280px;
    border: none;
}
.hero-search button {
    padding: 14px 26px;
    background: #2e7d32;
    color: #fff;
    border: none;
}

/* ================= CATEGORIES ================= */

.categories-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    border: 2px solid #2e7d32;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.category-card img {
    height: 48px;
    margin-bottom: 18px;
}

.category-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b3d1f;
    margin-bottom: 6px;
}

.category-card span {
    color: #2e7d32;
    font-weight: 600;
}

/* Hover Effect */
.category-card:hover {
    background: #2e7d32;
    transform: translateY(-6px);
}

.category-card:hover h4,
.category-card:hover span {
    color: #ffffff;
}

.category-card:hover img {
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= HOW IT WORKS ================= */

.how-it-works {
    background: #1f4f1f;
    padding: 90px 0;
}

.how-title {
    text-align: center;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
}

.how-card i {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.how-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 14px;
}

.how-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media(max-width: 992px){
    .how-grid {
        grid-template-columns: 1fr;
    }
}

.how-icon {
  width: 80px;
  height: 80px;
  background: #2f6b32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.how-icon i {
  font-size: 30px;
  color: #fff;
}

/* Hovered card */
.how-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.how-card:hover .how-icon {
  transform: translateY(-10px) scale(1.15);
  background: #3fa652;
}

/* Opposite animation */
.how-grid:hover .how-card:not(:hover) {
  transform: scale(0.92);
  opacity: 0.55;
}

.featured-jobs {
  padding: 90px 0;
  background: #fff;
}

.subtitle {
  text-align: center;
  color: #2f6b32;
  font-size: 14px;
  text-transform: uppercase;
}

.featured-jobs h2 {
  text-align: center;
  color: #2f6b32;
  font-size: 40px;
  margin-bottom: 60px;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.job-left {
  display: flex;
  gap: 20px;
}

.company-logo {
  width: 55px;
}

.job-left h4 {
  margin: 0;
  color: #1f4f22;
}

.meta {
  font-size: 14px;
  color: #777;
}

.meta span {
  margin-left: 15px;
  font-weight: 600;
}

.btn-view {
  border: 1px solid #2f6b32;
  padding: 8px 22px;
  border-radius: 30px;
  color: #2f6b32;
  text-decoration: none;
  transition: 0.3s;
}

.btn-view:hover {
  background: #2f6b32;
  color: #fff;
}

.job-detail {
  padding: 80px 0;
}

.job-header {
  display: flex;
  gap: 20px;
  align-items: center;
}

.job-header img {
  width: 80px;
}

.job-meta {
  margin: 25px 0;
  display: flex;
  gap: 25px;
  font-weight: 600;
}

.apply-btn {
  display: inline-block;
  margin-top: 40px;
  background: #2f6b32;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
}




