/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    font-size: 1rem; /* Base font size */
  }
  
  .container {
    width: 90%;
    max-width: 75rem; /* 1200px in rem */
    margin: 0 auto;
  }
  
  /* Navigation Bar */
  .navbar {
    background-color: #08541a;
    padding: 1.25rem 0; /* 20px in rem */
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo img {
    height: 3.125rem; /* 50px in rem */
  }
  
  .nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu li {
    margin-left: 1.25rem; /* 20px in rem */
  }
  
  .nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-menu a:hover {
    color: #ff9800;
  }
  
  /* Burger Menu */
  .burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
  }
  
  .burger-menu .bar {
    width: 1.5625rem; /* 25px in rem */
    height: 0.1875rem; /* 3px in rem */
    background-color: white;
    margin: 0.25rem 0; /* 4px in rem */
    transition: 0.4s;
  }
  
  /* Responsive Styles for Navigation */
  @media (max-width: 48rem) { /* 768px in rem */
    .burger-menu {
      display: flex;
    }
  
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 4.375rem; /* 70px in rem */
      right: 0;
      background-color: #28a745;
      width: 100%;
      text-align: center;
      padding: 0.625rem 0; /* 10px in rem */
      z-index: 999;
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .nav-menu li {
      margin: 0.625rem 0; /* 10px in rem */
    }
  }
  
  /* Burger Menu Animation */
  .burger-menu.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-0.3125rem, 0.375rem); /* 5px, 6px in rem */
  }
  
  .burger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-0.3125rem, -0.375rem); /* 5px, 6px in rem */
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.25rem; /* 20px in rem */
    border-radius: 0.625rem; /* 10px in rem */
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin: 0;
  }
  
  /* Employment Section */
  .career {
    margin: 3rem 0;
  
  }
  
  .employment {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}
.employment-item {
    background-color: #f1f1f1;
    border: 2px solid #4CAF50;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
    margin: 0 1rem; /* Added left and right margin for spacing */
}
.employment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.employment-item h5 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}
.employment-description {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}
.employment-item:hover .employment-description {
    display: block;
    opacity: 1;
    max-height: 500px;
}
.employment-description h3 {
    font-size: 1.25rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}
.employment-description ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: left;
}
.apply {
    text-align: center;
    margin-top: 1rem;
}
.apply .button {
    display: inline-block;
    background-color: #4CAF50;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.apply .button:hover {
    background-color: #45a049;
}
@media (max-width: 768px) {
    .employment {
        grid-template-columns: 1fr;
    }
    .employment-item {
        margin: 0 0.5rem; /* Reduced margin for smaller screens */
    }
}
  
  /* Footer */
  .footer {
    background-color: #057720;
    color: white;
    padding: 1.25rem 0; /* 20px in rem */
    text-align: center;
  }
  
  .social-icons {
    margin-top: 0.625rem; /* 10px in rem */
  }
  
  .social-icons a {
    color: white;
    margin: 0 0.625rem; /* 10px in rem */
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #28a745;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 48rem) { /* 768px in rem */
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1.2rem;
    }
  }