/* ================= SERVICE HERO ================= */
.service-hero-full {
  width: 100%;
  height: 640px;
  background-image: url("images_s/service_image2.jpeg");
  background-size: cover;
  background-position: top center; /* Show the top of the image */
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* BREADCRUMB (same for all pages) */
.breadcrumb-floating {
  position: absolute;
  left: 60px;
  top: 600px;
  background: white;
  padding: 14px 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #0b0a24;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.breadcrumb-floating .slash {
  opacity: 0.5;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica", "Arial", sans-serif;
}
/* ================= HEADER ================= */
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 5%;
  gap: 50px;
  background: #fbfbfd;

  opacity: 0;
  transform: translateY(120px) scale(0.92);
  filter: blur(8px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-header.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
}

.service-left {
  flex: 1;
  opacity: 0;
  transform: translateX(-180px) scale(0.95);
  filter: blur(6px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 40px;
  color: #0b0a24;
}

.service-left.show {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.service-right {
  flex: 1;
  opacity: 0;
  transform: translateX(200px) scale(0.9);
  filter: blur(10px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.3s;
  font-family: "Helvetica", "Arial", sans-serif;
}

.service-right.show {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.section-intro {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 16x;
  color: #0b0a24;
  margin-bottom: 1em;
  line-height: 1.5;
}

/* ================= SERVICES ================= */
.services-wrapper {
  margin-top: 0px;
  margin-left: 0;
  margin-right: 0;
}
.services-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  background: #fbfbfd;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.services-container.show {
  opacity: 1;
  transform: translateY(0);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;

  opacity: 0;
  transform: translateY(50px);
  transition: 0.6s;
}

.card:nth-child(1),
.card:nth-child(3) {
  transform: translateX(-80px);
}

.card:nth-child(2),
.card:nth-child(4) {
  transform: translateX(80px);
}

.card.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover img {
  transform: scale(1.1);
}

.icon-box {
  position: absolute;
  top: 190px;
  left: 20px;
  background: #ff5e00;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* Content */
.card-content {
  padding: 50px 20px 25px 20px;
}

.card-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #0b0a24;
  font-family: "Helvetica", "Arial", sans-serif;
}

.card-content p {
  font-size: 16px;
  color: #0b0a24;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: "Helvetica", "Arial", sans-serif;
}

/* Link */
.card-content a {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  background: #ff5e00; /* ✅ solid original color */
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* TEXT + ARROW */
.card-content a span {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* GLASS SHINE LAYER (not full white) */
.card-content a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    /* 🔥 soft shine only */ transparent
  );
  transition: 0.5s;
}

/* HOVER EFFECT */
.card-content a:hover::before {
  left: 120%;
}

/* KEEP COLOR SAME — only add glow */
.card-content a:hover {
  background: #ff5e00; /* ✅ SAME COLOR (important fix) */
  box-shadow: 0 8px 20px rgba(255, 94, 0, 0.4);
}

/* ARROW MOVE */
.card-content a:hover span {
  transform: translateX(6px);
}
/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= TESTIMONIAL ================= */

/* testimonial*/
.testimonial-section {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f")
    no-repeat center center/cover;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;

  opacity: 0;
  transform: translateY(80px);
  transition: 1s;
}
.testimonial-section.show {
  opacity: 1;
  transform: translateY(0);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.6)
  );
  top: 0;
  left: 0;
}

.container {
  position: relative;
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.testimonial-left {
  width: 60%;
  position: relative;
  opacity: 0;
  transform: translateX(-100px);
  transition: 0.8s;
}

.testimonial-left.show {
  opacity: 1;
  transform: translateX(0);
}
.testimonial-right {
  width: 35%;
  opacity: 0;
  transform: translateX(100px);
  transition: 0.8s;
}

.testimonial-right.show {
  opacity: 1;
  transform: translateX(0);
}

.slides {
  position: absolute;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(40px);
  transition: 0.6s ease;
}

.slides.active {
  opacity: 1;
  transform: translateX(0);
}

.profile img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.content {
  margin-left: 30px;
}

.content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.line {
  width: 2px;
  height: 40px;
  background: #fff;
  margin: 10px 0;
}

.quote {
  font-size: 15px;
  line-height: 1.6;
  max-width: 450px;
  opacity: 0.9;
}

.date {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.7;
}

.testimonial-right h1 {
  font-size: 48px;
  letter-spacing: 3px;
}

.testimonial-right p {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= MOBILE FIX (SERVICE CARDS) ================= */

/* Tablets already OK, just refine */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card img {
    height: 180px;
  }

  .card-content {
    padding: 40px 15px 20px;
  }
}

/* BIG MOBILE FIX */
@media (max-width: 600px) {
  .services-container {
    padding: 40px 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    width: 100%;
  }

  .card img {
    height: 200px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 20px;
    top: 170px;
    left: 15px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 14px;
  }

  .card-content a {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* SMALL MOBILE (extra clean spacing) */
@media (max-width: 400px) {
  .card img {
    height: 180px;
  }

  .icon-box {
    top: 150px;
  }

  .card-content {
    padding: 35px 12px 18px;
  }
}
