*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
font-family: "Source Sans Pro", Sans-serif;  background-color: #ffffff;
  color: #ffffff;
}

.services-section {
  width: 100%;
height:auto;
	display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: #004b66;
  overflow: hidden;
}

.services-inner {
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.services-slider {
  position: relative;
  width: 100%;
}

.services-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.services-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- Element-level animations inside each slide --- */

/* Initial states */
.services-slide .services-photo-left {
  opacity: 0;
  transform: translateX(-40px);
}

.services-slide .services-content-box {
  opacity: 0;
  transform: translateY(30px);
}

.services-slide .services-right {
  opacity: 0;
  transform: translateX(40px);
}

/* When slide becomes active, play animations */
.services-slide.active .services-photo-left {
  animation: servicesSlideInLeft 0.7s ease-out 0.1s forwards;
}

.services-slide.active .services-content-box {
  animation: servicesSlideUp 0.7s ease-out 0.2s forwards;
}

.services-slide.active .services-right {
  animation: servicesFadeSlideRight 0.75s ease-out 0.25s forwards;
}

@keyframes servicesSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes servicesSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes servicesFadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.services-left {
  flex: 0 0 60%;
  background-color: #004b66;
  padding: 40px 40px 40px 40px;
  display: flex;
  flex-direction: column;
}

.services-right {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}

.services-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-label {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 40px;
}

.services-content-box {
  max-width: 560px;
  margin-top: 40px;
}

.services-main-row {
  display: flex;
  align-items: stretch;
}

.services-photo-left {
  flex: 0 0 260px;
  height: 260px;
  margin-right: 40px;
  position: relative;
  overflow: hidden;
}

.services-image-left {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9adf75;
  margin-bottom: 16px;
}

.services-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
color:#fff;
}

.services-text {
  font-size: 14px;
  line-height: 1.7;
  color: #e3f1f7;
  max-width: 520px;
}

.services-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.1s ease;
}

.btn-primary {
  background-color: #9adf75;
  color: #004b66;
}

.btn-primary:hover {
  background-color: #88c966;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: #9adf75;
  color: #9adf75;
}

.btn-outline:hover {
  background-color: #9adf75;
  color: #004b66;
  transform: translateY(-1px);
}

.services-arrows {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.arrow-btn:hover {
  background-color: #9adf75;
  color: #004b66;
  transform: translateY(-1px);
}

/* Simple responsiveness */
@media (max-width: 992px) {
  .services-inner {
    flex-direction: column;
  }

  .services-left {
    padding: 32px 24px;
  }

  .services-right {
    height: 320px;
  }

  .services-heading {
    font-size: 32px;
  }

  .services-main-row {
    flex-direction: column;
  }

  .services-photo-left {
    margin-right: 0;
    margin-bottom: 24px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  /* Stack content nicely on small screens */
  .services-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-label {
    font-size: 26px;
  }

  /* Hide images on mobile */
  .services-photo-left,
  .services-right {
    display: none;
  }

  .services-left {
    flex: 1 1 auto;
    padding: 24px 16px;
  }
}



