* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(to right, white 0%, rgba(246, 223, 243, 0.836) 100%);
}


.service {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.service-page {
  width: 100%;
  text-align: center;
}

.service-page h1 {
  font-size: 3rem;
  font-weight: 800;
}

.service-page h1 span {
  color: #009155;
}

.service-page .service-content {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333a0;
  line-height: 1.6;
  text-align: center;
}

.service-page p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #282828a0;
  line-height: 1.6;
  text-align: justify;
}

.servicce-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 80px;
  justify-content: space-between;
}

.feature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  flex-wrap: wrap;
  position: relative;
}

.feature-block:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-block .text {
  flex: 1;
  max-width: 600px;
}

.feature-block .text h3 {
  font-size: 2rem;
  font-weight: 700;
}

.feature-block .text p {
  font-size: 1.1rem;
  color: #666666b7;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;
}

.feature-block .text a {
  display: inline-block;
  padding: 12px 40px;
 border:1px solid  #7a5779;
 /* background-color: rgba(41, 0, 45, 0.127); */
  color:#5b375a ;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.feature-block .text a:hover {
  background-color: #7a5779;
  color: white;
}

.feature-block .image {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.feature-block .image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

.image::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -40px;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#d0d0d0 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: 1;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .image::after {
    right: 0px;
    top: 10px;
  }
}

@media (max-width: 768px) {
  .service-page h1 {
    font-size: 2rem;
  }

  .service-page p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .servicce-image {
    width: 100%;
    border-radius: 16px;
  }

  .feature-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-block:nth-child(even) {
    flex-direction: column;
  }

  .feature-block .text {
    max-width: 100%;
    padding: 0 15px;
  }

  .feature-block .text h3 {
    font-size: 1.5rem;
  }

  .feature-block .text p {
    font-size: 1rem;
    text-align: justify;
  }

  .feature-block .text a {
    padding: 10px 30px;
    font-size: 0.95rem;
  }

  .feature-block .image {
    max-width: 100%;
    margin-top: 20px;
  }

  .feature-block .image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }
}

.get-start {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: transparent;
  border-radius: 20px;
  overflow: hidden;
}

.get-start-heading {
  width: 50%;
  background:linear-gradient(rgba(45, 46, 75, 0.735),rgb(79, 47, 79));
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.get-start-heading h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.get-start-heading p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.get-start-heading a {
  width: 230px;
  padding: 12px 30px;
  background-color: rgb(254, 254, 254);
  font-weight: 500;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.get-start-heading a:hover {
  background-color: #e4ff79fb;
  color: black;
  text-decoration: none;
}

.get-start-image {
  width: 50%;
}

.get-start-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .get-start {
    flex-direction: column;
  }

  .get-start-heading,
  .get-start-image {
    width: 100%;
  }

  .get-start-heading {
    padding: 40px 20px;
    text-align: center;
  }

  .get-start-heading h1 {
    font-size: 2rem;
  }

  .get-start-heading p {
    font-size: 1rem;
  }

  .get-start-heading a {
    width: 100%;
    padding: 12px 24px;
  }

  .get-start-image img {
    height: auto;
  }
}

.container-aa {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.infographic-container {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr minmax(250px, 350px) 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  max-width: 1300px;
  width: 100%;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.infographic-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
}

.infographic-item .content {
  display: flex;
  align-items: center;
  padding: 25px;
  gap: 18px;
  flex-grow: 1;
  padding-bottom: 70px;
}

.infographic-item .icon {
  font-size: 3.2em;
  color: #b0b0b0;
  min-width: 65px;
  text-align: center;
}

.infographic-item .text-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #333;
  font-size: 1.25em;
  font-weight: 700;
}

.infographic-item .text-content p {
  margin: 0;
  color: #666;
  font-size: 0.9em;
  line-height: 1.6;
}

.infographic-item .title-bar {
  color: #272727;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1.1em;
  text-align: right;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.infographic-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(to right, transparent, transparent) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.title-01 {
  background: linear-gradient(to right, #a8ca7b, #65b675);
}

.item-top-left::before {
  background: linear-gradient(to right, #a8ca7b, #65b675) border-box;
}

.item-top-left .title-bar,
.item-top-right .title-bar {
  top: 0;
  bottom: auto;
  border-radius: 12px 12px 0 0;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-top-left .content,
.item-top-right .content {
  padding-top: 70px;
  padding-bottom: 25px;
}

.infographic-center {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 30px;
  text-align: center;
  z-index: 10;
  min-height: 250px;
}

.infographic-center::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 3px dotted #ddd;
  border-radius: 25px;
  z-index: 0;
  pointer-events: none;
}

.infographic-center h2 {
  font-size: 2.8em;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.color-indicators {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.color-box {
  width: 25px;
  height: 10px;
  border-radius: 3px;
}

.color-box.dark-blue {
  background-color: rgb(79, 47, 79);
}

@media (max-width: 992px) {
  .infographic-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
  }

  .infographic-center,
  .infographic-item {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .infographic-item .title-bar {
    top: auto;
    bottom: 0;
    border-radius: 0 0 12px 12px;
    text-align: right;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  }

  .infographic-item .content {
    padding-top: 25px;
    padding-bottom: 70px;
  }

  .item-top-left .title-bar,
  .item-top-right .title-bar {
    top: 0;
    bottom: auto;
    border-radius: 12px 12px 0 0;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .item-top-left .content,
  .item-top-right .content {
    padding-top: 70px;
    padding-bottom: 25px;
  }

  .infographic-center::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
}

@media (max-width: 600px) {
  .infographic-container {
    gap: 20px;
    padding: 15px;
  }

  .infographic-center {
    min-height: 200px;
  }

  .infographic-center h2 {
    font-size: 1.8em;
  }

  .infographic-item .icon {
    font-size: 2.8em;
  }

  .infographic-item .text-content h3 {
    font-size: 1.1em;
  }

  .infographic-item .text-content p {
    font-size: 0.8em;
  }
}

@media (max-width: 400px) {
  .infographic-item .content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    padding-bottom: 60px;
  }

  .item-top-left .content,
  .item-top-right .content {
    padding-top: 60px;
  }

  .infographic-item .icon {
    margin-bottom: 10px;
    min-width: unset;
  }

  .infographic-center::before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }
}