
/* Hero Section Styling */
.career-banner {
  background-image: url('images/career.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .career-banner {
    height: 30vh;
    background-position: center;
  }

}

.career-section {
      padding: 10px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .career-section h2 {
      font-size: 32px;
      color: blue;
      margin-bottom: 10px;
    }

    .career-section p {
      font-size: 18px;
      color: #555;
      margin-bottom: 1opx;
    }

    .career-section ul {
      margin-left: 20px;
      color: #001f3f;
      font-size: 10px;
    }

    @media (max-width: 768px) {
      .career-banner {
        padding: 60px 15px;
        background-position: center top;
      }

      .career-section h2 {
        font-size: 24px;
      }

      .career-section p, .career-section ul {
        font-size: 16px;
      }

      .ecom-section ul {
        margin-left: 0;
        list-style-position: inside;
      }
    }
   