/* General Styles */


/* Hero Section */
.hero-section {
  background: url(../images/nutritionist.png) no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
  /* margin-top: 80px; */
  align-items: center;
  display: flex;
  height: 43vh;
}

.career-hr{
  background: url(../images/career.png) no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
  /* margin-top: 80px; */
  align-items: center;
  display: flex;
  height: 43vh;
}

.about-service{
  display: flex;
  flex-direction: column;
  text-align: center;
}

.main-title {
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 2.2rem;
  margin-top: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Button */
.btn-primary {
  display: inline-block;
  background: #ff9800;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #e68900;
}

/* Features Section */
.features {
  background: white;
  padding: 50px 0;
}
.feature-box p{
  margin: 0;
}

.feature-box {
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
}


.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}


/* Job Listings Table */
.job-listings {
  padding: 50px 0;
  background: #fff;
}
.job-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.job-table th, .job-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.job-table th {
  background: #e68900;
  color: white;
  text-transform: uppercase;
}
.job-table tr:hover {
  background: #f1f1f1;
}


.job-table td .has-before,
.job-table td .has-after {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.job-table td .has-before::before,
.job-table td .has-after::after {
  content: "";
  position: absolute;
}
td a .btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before {
  transform: translateX(100%);
}

/* About Section */
.service {
  padding: 50px 0;
  background: #fff;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.about-grid img {
  width: 40%;
  border-radius: 8px;
}

.about-grid ul {
  text-align: left;
  list-style: none;
  padding: 0;
}

.about-grid ul li {
  font-size: 1.4rem;
  margin: 10px 0;
  font-weight: 400;
  background: #e0e0e0;
  padding: 10px;
  border-radius: 5px;
}

/* Appointment Section */
.appointment {
  background: url(../images/lounge.jpg) no-repeat center center/cover;
  color: white;
  padding: 50px 0;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 5px;
}

.appointment-form input {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.appointment-form .btn-primary {
  width: 100%;
  background: #ff9800;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
}

.appointment-form .btn-primary:hover {
  background: #e68900;
}

.combo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  /* Add spacing between items */
}

.service-cards {
  flex: 1;
  /* Ensure equal space */
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 10px;

  display: flex;
  min-width: 300px;
  min-height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-ct h2 {
  font-size: 2.8rem;
}

.service-cards p {
  font-size: 2.2rem;
}

.service-cards i {
  font-size: 4rem;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  color: #ff9800;
  margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .grid {
      flex-direction: column;
  }

  .feature-box {
      width: 90%;
  }

  .about-grid {
      flex-direction: column;
      text-align: center;
  }

  .about-grid img {
      width: 80%;
  }
}