/* styles/main.css */

.explore-btn {
  display: inline-block
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  background-color: #005f99;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.explore-btn:hover {
  background-color: #004066;
  transform: translateY(-2px);
}
.service-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.service-box {
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}
.jobpic {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 80px; /* 👈 limits how tall the image gets */
  display: block;
  margin: 1rem auto;
  border-radius: 8px;
  object-fit: cover;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}


.job-pic.show {
  opacity: 1;
  transform: translateY(0);
}

.service-detail {
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.hero-banner {
  background: #eaf3f7;
  padding: 3rem 2rem;
  text-align: center;
}

.hero-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.content-block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  align-items: center;
}

.content-block.alt {
  flex-direction: row-reverse;
}

.content-block .text {
  flex: 1 1 400px;
}

.feature-img {
  flex: 1 1 400px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.content-block ul {
  list-style: none;
  padding-left: 0;
}

.content-block li::before {
  content: "✔️";
  margin-right: 8px;
  color: green;
}

.cta-block {
  text-align: center;
  background: #f7fbff;
  padding: 3rem 2rem;
}

.cta-block h2 {
  margin-bottom: 0.5rem;
}
.job-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto 10px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.job-pic {
  display: block;
  width: 100%;
  max-width: 600px;   /* 👈 controls size */
  height: 300px;
  margin: 20px auto;  /* 👈 centers it */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px 24px;
  background-color: #0070cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #005fa3;
}

.contact-alt {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
}

.contact-alt h3 {
  margin-top: 0;
  color: #003366;
}

.contact-alt a {
  color: #0070cc;
  text-decoration: none;
}
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #003366;
  transition: transform 0.3s ease;
}

.contact-icon img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-icon span {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-icon:hover {
  transform: scale(1.1);
}

.contact-icon:hover img {
  filter: brightness(0.8);
}
