* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
      }

      body {
        background: #f8f9fa;
        color: #333;
      }
      html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

      /* Navbar */
      header {
        background:white;
        color: #003566;
        padding: 15px 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      header h1 {
        font-size: 24px;
        text-align: center;
      }

      nav a {
        font-weight: bold;
        color: #003566;
        margin-left: 20px;
        text-decoration: none;
        font-size: 18px;
      }

      nav a:hover {
        text-decoration: underline;
      }
        @media (max-width: 480px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 15px;
  }

  header h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  nav {
    width: 100%;
  }

  nav a {
    display: block;
    margin: 8px 0;
    font-size: 14px;
  }
        }

      /* Hero Section */
      .hero {
        background: #eda264;
        padding: 60px 20px;
        text-align: center;
      }

      .hero h2 {
        font-size: 36px;
        margin-bottom: 20px;
        color: #001d3d;
      }

      .search-box {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        background: #fff;
        border-radius: 30px;
        overflow: hidden;
        border: 2px solid #001d3d;
      }
       .search {
        flex: 1;
        border: none;
        padding: 15px;
        font-size: 16px;
        outline: none;
        background:#fff;
        color: black;
      }

      .search-box input {
        flex: 1;
        border: none;
        padding: 15px;
        font-size: 16px;
        outline: none;
      }

      .search-box button {
        background: #001d3d;
        color: #fff;
        border: none;
        padding: 15px 30px;
        cursor: pointer;
      }

  
       /* Job Categories */
      .categories {
  text-align: center;
  margin: 40px auto;
}

.categories h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #003566;
}

.category-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  justify-items: center;
 
}

.category {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 200px;
 
}
.categoryHome {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 200px;}

.category img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.category span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #111;
}

.category:hover {
  transform:scale(1.01);
  /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); */
box-shadow: 0 10px 24px rgba(0, 255, 17, 0.3);
}

.categoryHome:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #001d3d;
  color: #e9ecef;
}
a{
  text-decoration: none;
  color: #111;
}
/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 15px;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr; /* 1 column */
    gap: 10px;
  }

  .categories h3 {
    font-size: 20px;
  }

  .categoryHome {
    padding: 15px;
    font-size: 16px;
  }
}

      /* Featured Jobs */
      .jobs {
        padding: 40px 50px;
        background: #e9ecef;
        text-align: center;
        display: flex;          /* make children (cards) horizontal */
        gap: 20px;              /* space between cards */
        justify-content: center; /* center them */
        flex-wrap: wrap;        /* allow wrapping on smaller screens */
        padding: 20px;
        margin-top: 50px;
      }
 a{
        text-decoration: none;
        color: #000;
      }
      .featured {
        font-size: 24px;
        margin-bottom: 20px;
        color: #003566;
        text-align: center;
      }
       .featured h2{
        margin-top: 35px;
      }
      .job-card {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        width: 400px;          /* fixed width */
        text-align: center;
      }

      .job-card h4 {
        color: #001d3d;
      }

      .job-card p {
        margin: 5px 0;
      }
      .apply{
        color: #e9ecf0;
        background-color: #003566;
        border-radius:5px;
        z-index: 1;
        height: 30px;
        width: 150px;
      }
      button a{
        text-decoration: none;
        color: white;
      }
      .input{
        border-radius: 5px;
        border: 1px solid;
        padding: 10px;     
       }
       .contact{
        margin-left: 100px;
       }



 /* About Page CSS */
      .about-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;

}

.about-intro {
  text-align: center;
  margin-bottom: 40px;
}

.about-intro h3 {
  font-size: 28px;
  color: #003566;
  margin-bottom: 15px;
}

.about-intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}


/* Success Stories */
.success-stories h3 {
  text-align: center;
  font-size: 24px;
  color: #003566;
  margin-bottom: 20px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.story-card h4 {
  font-size: 20px;
  margin: 10px 0;
}

.story-card p {
  margin: 5px 0;
  font-size: 16px;
  color: #444;
}

.feedback {
  font-style: italic;
  color: #555;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}
  
 
/* Contact page css */
.contact-page {
  font-family: Arial, Helvetica, sans-serif;
  margin: 20px;
  display: flex;
  align-content: center;
  justify-content: space-evenly;
}
.map-container {
  margin-top: 20px;
}

#map {
  height: 400px;
  width:500px;
  border-radius: 8px;
  border: 3px solid #ccc;

}

/* 📱 Mobile Devices */
@media (max-width: 600px) {
  .contact-page {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  input,
  .textarea,
  .submit {
    width: 90%;
  }

  #map {
    width: 90%;
    height: 300px;
  }
}


/* 📱 Tablets (600px - 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .combiner {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  input,
  .textarea,
  .submit {
    width: 80%;
  }

  #map {
    width: 80%;
    height: 350px;
  }
}

/* 💻 Large Screens (above 900px) */

@media (min-width: 901px) {
  .combiner {
    flex-direction: row;
    justify-content: space-around;
  }

  input,
  .textarea,
  .submit {
    width: 100%;
    max-width: 500px;
  }

  #map {
    width: 400px;
    max-width: 500px;
  }
}

      /* Footer */
      footer {
        background: #003566;
        color: #fff;
        text-align: center;
        padding: 20px;
        margin-top: 30px;
      }
      #submit{
        background-color: #001d3d;
        color: #e9ecef;
        padding: 10px 30px;
        border-radius: 5px;
        border: none;
      }
      #submit:hover{
        background-color: #003566;
        transition: 3;
      }