.slider-header {
  /*max-width: 1200px;*/
  margin: auto;
  display: flex;
  align-items: center;          
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.header-left {
  max-width: 700px;
}

.header-left h2 {
  font-size: 32px;
  margin: 0 0 12px 0;
  color: #1a1a1a;
  line-height: 1.3;
}

.header-left p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Arrow Wrapper */
.nav-arrows {
  display: flex;
  gap: 14px;
}

/* Arrow Style */
.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0f6e8;
  border: 1px solid #dce8c9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: #84b93c;
  stroke-width: 2;
}

.nav-btn:hover {
  background: #84b93c;
}

.nav-btn:hover svg {
  stroke: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}

/* Slider Wrapper */
.servicesSwiper .swiper-wrapper {
  align-items: stretch;
}
.services-slider {
  /*max-width: 1200px;*/
  margin: 50px auto 0;
}

.services-slider .swiper-slide{
    padding: 0;
    opacity: 1;
}

/* Card */
.service-card-for-slide {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
  width: 100%;
}

/* Image */
.service-card-for-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.service-image {
    position: relative;
    z-index: 2;
}

/* White inner shadow at bottom */
.service-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  border-radius: 0 0 10px 10px;
  box-shadow: inset 0 -60px 60px -20px rgba(255,255,255,0.9);
  pointer-events: none;
}

/* Tag (top-right) */
.service-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f1f1;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 6px;
  font-weight: 500;
}

/* Grey triangular shape (top-left) */
.service-card-for-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 20px solid #e5e5e5;
  border-right: 60px solid transparent;
  z-index: 3;
}

/* Content Section */
.service-content {
  background: #ffffff;
  padding: 28px 22px 30px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Paragraph styling */
.service-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 25px 0;
}

/* Round Button */
.service-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #7ed321; /* parrot green */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.service-btn svg {
  width: 16px;
  height: 16px;
  stroke: #333;
  stroke-width: 2;
}

/* Smooth transition */
.service-card-for-slide,
.service-card-for-slide::before,
.service-content,
.service-btn,
.service-btn i {
  transition: all 0.4s ease;
}

.service-content {
  position: relative;
  background: #ffffff;
  overflow: hidden;
border: 1px solid #dfdfdf;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-top: -2%;
}

.service-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("/wp-content/uploads/2026/02/vector-shape.svg") no-repeat right bottom,
    linear-gradient(135deg, rgb(0,0,0) 0%, rgb(0,0,0) 50%, rgb(28,77,134) 100%);
  background-size: 180px auto, contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  top: -130px;
}

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

.service-card-for-slide:hover .service-content::before {
  opacity: 1;
}

.service-card-for-slide:hover .service-content{
	border-color: #a8cf45;
}

/* 1️⃣ Change triangle color */
.service-card-for-slide:hover::before {
  border-top: 40px solid #8dc63f; /* Parrot Green */
}

/* 3️⃣ Make content text white */
.service-card-for-slide:hover .service-content p {
  color: #ffffff;
}

/* 4️⃣ Button background parrot green */
.service-card-for-slide:hover .service-btn {
  background-color: #8DC63F;
  border-color: #8DC63F;
}

/* 5️⃣ Rotate arrow 45deg */
.service-card-for-slide:hover .service-btn i {
  transform: rotate(320deg);
}

.service-btn:hover i{
    color: #fff;
}

/* Swiper spacing */
.servicesSwiper .swiper-slide {
  height: auto;
  padding: 0;
  opacity: 1;
  border: none;
  display: flex;
}