/* Service Section Styles */
.service-section {
  overflow: hidden;
  padding: 50px 5%;
}

.service-content {
  flex: 1;
}

.service-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(0, 1fr);
  gap: 20px;
  height: 100%;
}


.service-card.card-large {
  grid-row: span 2;
}

.service-card .card-content {
  overflow: hidden;
  color: white;
  border-radius: 18px;
  text-align: start;
  padding: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  background-color: #003399;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card .card-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.service-card .card-content > * {
  position: relative;
  z-index: 2;
}

.service-card .card-content img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.service-card .card-content h5 {
  margin: 0;
  margin-bottom: 10px;
}

.service-card .card-content p {
  margin: 0;
}

.service-card img.service-arrow {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.service-card .header {
  display: flex;
  justify-content: end;
  margin-bottom: 60px;
}

.card-content .content .title {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Utility Classes for Service Section */
.my__70 {
  margin: 70px 0;
}

.d-flex {
  display: flex;
}

.ai-center {
  align-items: center;
}

.jc-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

