.heading-container {
  background-image: url('../img/slide/3747425.jpg');
  min-height: 300px;
  background-size: cover;
  position: relative;
  top: -45px;
  background-position: top;
}

.heading-container .head-line {
  color: var(--primary-color-contrast);
  font-size: 14px;
}

.heading-container .head-line .text-primary{
  text-decoration: none !important;
  color: rgb(219, 149, 244) !important;
  font-weight: 700;
}

.heading-container .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8vw 1vw 2vw 11vw;;
}

.text-content {
  flex: 1;
  color: var(--primary-color-contrast);
}

.text-content h1 {
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 6px;
}

.text-content p {
  font-size: 16px;
  max-width: 500px;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {
  width: 55%;
  height: auto;
}

.heading-contact-btn button{
  color: var(--primary-color-contrast);
  background-color: var(--highlight-color);
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.heading-contact-btn button:hover {
  background-image: linear-gradient(to right, var(--highlight-color), #d062ff);
  transform: scale(0.97);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .heading-container .container{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 18px 20px;
  }

  .image-content img {
    width: 80%;
    margin-top: 20px;
  }

  .text-content h1 {
    font-size: 28px;
  }

  .text-content p {
    font-size: 14px;
    max-width: 100%;
  }

  .heading-contact-btn {
    margin-top: 15px;
  }

  .service-card {
    flex-direction: column;
    padding: 9px !important; 
    margin: 20px 0 !important; 
    box-sizing: border-box;
  }

  .service-content,
  .service-image {
    flex: 1 1 100%;
    text-align: center;
    padding: 10px 0  !important;
    padding-right: 0 !important; 
  }

  .service-features {
    grid-template-columns: 1fr !important;
  }

  .service-stats{
    gap: 14px !important;
    margin: 5px !important;
  }

  .service-card h2{
    font-size: 28px !important;
  }
}


.service-card {
  background-color: var(--primary-color-contrast);
  display: flex;
  flex-wrap: wrap;
  color: var(--primary-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.08);
  margin: 50px auto;
  max-width: 1300px;
  transition: transform 0.3s ease;
}

/* .service-card :hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
} */

.service-content {
  flex: 1 1 55%;
  padding: 26px;
}

.service-image {
  flex: 1 1 40%;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-image img {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 10px auto;
}


.service-card h2 {
  font-size: 32px;
  color: var(--highlight-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card .tagline {
  color: var(--secondary-color-contrast);
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 15px;
}

.service-card p {
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
}

.feature img {
  width: 52px;
  height: 52px;
  margin-right: 10px;
}

.feature span {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.service-stat-card {
  background-color: #f4f4f4;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-stat-card:hover {
  transform: translateY(-5px);
}

.service-stat-card h3 {
  font-size: 28px;
  color: var(--primary-active-color);
  margin-top: 40px;
}

.service-stat-card p {
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px;
  text-transform: uppercase;
}

/* Optional background colors */
.stat-blue {
  background-color: #f0f3ff;
  border-bottom: 4px solid #809fff;
  color: #809fff !important; /* darker blue */
}

.stat-cyan {
  background-color: #e7fbff;
  border-bottom: 4px solid #59d2f5;
  color: #59d2f5; /* darker cyan */
}

.stat-yellow {
  background-color: #fffff3;
  border-bottom: 4px solid #ffd680;
  color: #ffd680; /* darker yellow */
}

.stat-pink {
  background-color: #fdf1ff;
  border-bottom: 4px solid #df7cf2;
  color: #df7cf2; /* darker pink */
}

.service-card.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--extra-main-color);
  border-radius: 16px;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.mission-vision-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.mv-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transition */
}


.mv-box img, .value-card img {
  width: 60px;
  margin-bottom: 20px;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 25px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transition */
}

.value-card:hover,
.mv-box:hover {
  transform: scale(1.05); /* Slightly enlarges the element */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Adds a stronger shadow on hover */
}

.aboutus-container {
  background-color: var(--extra-main-color);
  padding: 20px;
}

.aboutus-container .service-card {
  box-shadow: none !important;
  margin: 0 auto !important;
}

/* for career page */

.job-listing {
  padding: 20px;
}

.job-item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.job-title,
.job-meta {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--highlight-color);
}

.job-title {
  color: var(--highlight-color);
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.job-meta {
  color: #555;
  font-size: 14px;
  display: block;
}

.job-details {
  display: none;
  background: #fff;
  padding: 15px;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  width: 100%;
}

.job-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-info-list li {
  font-size: 14.5px;
  color: #333;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  flex-wrap: nowrap; /* prevents wrapping */
}

.job-info-list li span {
  font-weight: 600;
  width: 150px;
  flex-shrink: 0;
  display: inline-block;
}

.job-info-list li .value {
  font-weight: normal;
  white-space: nowrap; /* prevent wrapping */
}


.job-info-list li a {
  color: #000;
  text-decoration: none;
}

.job-info-list li a:hover {
  text-decoration: underline;
}


.job-details ul {
  list-style: none;
  padding: 0;
}

.job-details li {
  margin-bottom: 8px;
}

.job-header {
  display: flex;
  justify-content: space-between; /* pushes title left and meta right */
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.job-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .job-listing {
    padding: 0px;
  }

  .job-info-list li .value {
    font-weight: normal;
    white-space: normal; /* corrected from 'wrap' */
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .job-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-meta {
    margin-top: 8px;
  }
}

