.elementor-kit-51{--e-global-color-primary:#4056FA;--e-global-color-secondary:#F5AFDB;--e-global-color-text:#F5EDE2;--e-global-color-accent:#C98047;--e-global-typography-primary-font-family:"Playfair Display";--e-global-typography-primary-font-size:32px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Open Sans";--e-global-typography-secondary-font-size:14px;--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-51 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Style the section */
.scroll-section {
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

/* Style the semi-circle element */
.semi-circle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px; /* Half the section height for semi-circle effect */
  background-color: #007BFF; /* Theme-consistent color, adjust as needed */
  border-top-left-radius: 100% 200px; /* Creates semi-circle curve */
  border-top-right-radius: 100% 200px;
  transform: translateY(100%); /* Start below the section */
  transition: transform 0.1s linear; /* Smooth animation */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-section {
    min-height: 500px;
  }
  .semi-circle {
    height: 200px;
    border-top-left-radius: 100% 150px;
    border-top-right-radius: 100% 150px;
  }
}

@media (max-width: 480px) {
  .scroll-section {
    min-height: 400px;
  }
  .semi-circle {
    height: 150px;
    border-top-left-radius: 100% 100px;
    border-top-right-radius: 100% 100px;
  }
}/* End custom CSS */