* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bs-theme-color: rgba(73, 4, 85, 1);
  --bs-accent-color: rgba(73, 4, 85, 0.9);
}

body {
  overflow-x: hidden;
  /* padding-top: 70px; */
  position: relative;
  min-height: 100vh;
  background: #f8f9fa;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Professional Service Header */
.service-header {
  padding: 4rem 2rem;
  /* background-image: url("./images/logo_make_11_06_2023_388.jpg"); */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 40vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  /* border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px; */
  position: relative; /* ✅ Re-enable to keep overlay inside the header */
  overflow: hidden;
  /* background: rgba(  134, 4, 125, 0.2); */
}

.service-header h1 {
  margin-top: 100px;
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  color: #86047d;
  position: relative;
  z-index: 1;
}

.service-header span {
  /* text-shadow: 2px 2px 4px rgba(58, 13, 13, 0.2); */
  color: #86047d;
  text-shadow: none;
  /* border-bottom: 3px solid #ffffff; */
  padding-bottom: 5px;
  letter-spacing: 2px;
}

.service-header p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #4a5568;
  position: relative;
  z-index: 1;
}

/* Professional Service Cards */
.service-content-block {
  text-align: left;
}

.service-card {
  background: #ffffff;
  backdrop-filter: none;
  border: 1px solid rgba(73, 4, 85, 0.1);
  /* border-left: 4px solid rgba(73, 4, 85, 1); */
  border-radius: 8px;
  padding: 0 3rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin: 0 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 0 40px 10px rgba(73, 0, 83, 0.7);
  border-left-width: 6px;
}

.service-card h2 {
  font-family: "Lato", sans-serif;
  color: #86047d;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 2rem;
  position: relative;
  letter-spacing: -0.5px;
}

.service-card p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: #4a5568;
  text-align: justify;
  line-height: 2;
}

.service-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.service-img {
  /* color: beige; */
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  filter: grayscale(0%);
}

.service-img:hover {
  transform: scale(1.05);
  /* box-shadow: 0 8px 30px rgba(73, 4, 85, 0.2); */
  border-bottom: 3px solid #86047d;
  cursor: pointer;
}

/* AOS Animation Enhancements */
[data-aos] {
  transition-duration: 1.2s !important;
}

[data-aos="fade-up"] {
  transform: translateY(80px);
  opacity: 0;
}

[data-aos="slide-right"] {
  transform: translateX(-100px);
  opacity: 0;
}

[data-aos="slide-left"] {
  transform: translateX(100px);
  opacity: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
  .service-header {
    padding: 6rem 1.5rem 3rem;
    text-align: center;
  }
  .service-header h1 {
    font-size: 1.8rem;
  }

  .service-header p {
    font-size: 1rem;
  }

  .service-card {
    padding: 1rem;
    margin: 15px 0;
  }

  .service-card h2 {
    font-size: 1.75rem;
    text-align: center;
  }

  .service-card p {
    font-size: 0.95rem;
    text-align: justify;
  }

  .service-img {
    max-width: 100%;
  }

  .service-content-block {
    text-align: center;
  }

  .service-content-block p {
    text-align: justify;
  }
}
@media (max-width: 490px) {
  .service-header {
    height: 30vh;
    margin-top: 0;
    padding: 2rem 1rem;
  }
}
