.elementor-kit-3{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--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-3 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1344px;}.e-con{--container-max-width:1344px;--container-default-padding-top:0px;--container-default-padding-right:20px;--container-default-padding-bottom:0px;--container-default-padding-left:20px;}.elementor-widget:not(:last-child){margin-block-end:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}@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 *//* Enable smooth scrolling globally for click-based anchors */
html {
    scroll-behavior: smooth;
}

/* Apply scroll snap to the main scroll container (usually the body) */
body {
    scroll-snap-type: y mandatory; /* 'y' for vertical, 'mandatory' to force snap */
    overflow-y: scroll; /* Ensures the scrollbar is present */
    /* If your page content doesn't always fill the height, and you want to prevent extra empty space,
       you might adjust height settings here or on sections. Often, full-height sections are key. */
}

/* Target your specific sections to snap to */
.snap-point {
    scroll-snap-align: start; /* Snap to the top of the section */
    min-height: 100vh; /* Crucial for full-screen snapping */
    display: flex; /* Or grid, to center content vertically */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    /* Add padding-top if you have a sticky header */
    /* padding-top: 80px; */
}/* End custom CSS */