.main{
    background: linear-gradient(90deg, var(--secondary-color), var(--tertiary-color));
}
.service_first{
    height: 60vh;
    position: relative;
    padding: 0 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service_first .bg-color{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: .6;
  background: linear-gradient(90deg, var(--secondary-color), var(--tertiary-color));
}
.service_first .container .section_heading{
    color: var(--text-color-light);
    font-size: 2em;  
}



/* SERVICE FIRST SECTION STYLE ENDS HERE  */
/* SERVICE SECOND SECTION STYLE STARTS HERE  */
.service_second {
  background: rgba(0, 0, 0, 0.05);
}

.service_second .section_title {
  text-align: left;
  color: var(--text-color-light); /* Optional: use your theme variables */
}

.service_second p {
  text-align: left;
  color: var(--text-color-dull); /* Optional */
}

/* Optional: Center text on very small screens */
@media (max-width: 576px) {
    .service_first .text-content{
        width: 18em;
    }
    .service_first .text-content .rect .section_heading{
        font-size: 1.5em;
    }
    .service_first .text-content .rect .section_heading span{   
        color: var(--text-color-light);
    }

  .service_second .section_title,
  .service_second p {
    text-align: center;
  }
}

/* SERVICE SECOND SECTION STYLE ENDS HERE   */
/* SERVICE THIRD SECTION STYLE STARTS HERE   */
  .third_section .container{
      color: var(--text-color-dull);
}
.third_section .section_heading span {
    font-weight: bold;
  }
  .paras {
    max-width: 900px;
    margin-bottom: 2rem;
  }
  @media (max-width: 768px) {
    .section_heading, .paras {
      text-align: center;
    }
    
}