
*{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  
}
.container, body, html {
  overflow: visible !important;
}
/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
    font-family: 'Inter', sans-serif;
}
/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

} */

body{
      background: linear-gradient(to right, white 0%, rgba(246, 223, 243, 0.836) 100%);
}


/* service page section */
.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: #2c630d; 
}

.service-page .service-content {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2a2a2aa0;
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}
.service-page p{
  font-size: 1.1rem;
  font-weight: 400;
  color: #282828c4;
  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-around;
}

.feature-block {
  display: flex;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.feature-block .image,
.feature-block .text {
  padding: 0;      
  margin: 0;        
  max-width: 50%;  
  flex: 1;
}

.feature-block:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-block .text {
  flex: 1;
  max-width: 700px;
  text-align: start;
}

.feature-block .text h3 {
  font-size: 2rem;
  font-weight: 700;
}

.feature-block .text p {
  font-size: 1.1rem;
 color: #282828c4;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: start;
}
.feature-block .text span{
  color: #f4b731;
}


.feature-block .image {
  flex: 1;
  max-width: 400px;
}

.feature-block .image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .feature-block {
    flex-direction: column;
    text-align: center;
  }

  .feature-block .image,
  .feature-block .text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Service section adjustments */
  .service-page h1 {
    font-size: 2rem;
  }

  .service-page p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .servicce-image {
    width: 100%;
    border-radius: 16px;
  }

  /* Features section */
  .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%;
  }

  .feature-block .image img {
    max-width: 100%;
    border-radius: 12px;
  }
}



/* get start section */
.get-start {
  display: flex;
  align-items: stretch;
  justify-content: center;
  justify-content: space-between;
  background-color: transparent;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
}

.get-start-heading {
  width: 50%;
  background: linear-gradient(30deg,#003f4f, #002e0cfe );
  color: white;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  position: relative;
}

.get-start-heading h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.get-start-heading p {
  font-size: .87rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.circular-arrow{
  position: absolute;
  left: 150px;
  bottom: 70px;
  height: 90px;
  width: 150px;
}
.get-start-heading a {
  position: absolute;
  left: 300px;
  bottom: 70px;
  text-align: center;
  width: 30%;
  padding: 12px 30px;
  background-color: #f4b731;
  font-weight: 500;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
    background-color: #f4b731;
}

.get-start-heading a:hover {
  background-color: #95bf47;
  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-heading {
    width: 100%;
    align-items: center; 
    padding: 30px 20px;
    text-align: center;
  }
.circular-arrow{
  display: none;
}
  .get-start-heading a {
    position: static; 
    width: auto;       
    margin-top: 20px;
    padding: 12px 24px;
  }
}

@media (max-width: 768px) {
  .get-start {
    flex-direction: column;
    height: auto;
  }

  .get-start-heading,
  .get-start-image {
    width: 100%;
  }


  .get-start-heading h1 {
    font-size: 2rem;
  }

  .get-start-heading p {
    font-size: 1rem;
    text-align: justify;
  }
  .get-start-image img {
    height: auto;
  }
  .circular-arrow{
  display: none;
}
}



