.elementor-kit-6{--e-global-color-primary:#000439;--e-global-color-secondary:#00064C;--e-global-color-text:#242424;--e-global-color-accent:#ED3237;--e-global-color-cf5eeb8:#0E0E0E;--e-global-color-06c0521:#FFFFFF;--e-global-color-b65997b:#F5F5F5;--e-global-color-200a318:#260E01;--e-global-color-07e8ba2:#BABABA;--e-global-typography-primary-font-family:"DM Sans";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Saira";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"DM Sans";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"DM Sans";--e-global-typography-accent-font-weight:400;--e-global-typography-88c7182-font-family:"DM Sans";--e-global-typography-88c7182-font-size:clamp(0.75rem, 0.4167rem + 0.6944vw, 1.25rem);--e-global-typography-88c7182-font-weight:700;--e-global-typography-88c7182-line-height:1.2em;--e-global-typography-39df5cf-font-family:"DM Sans";--e-global-typography-39df5cf-font-size:clamp(0.875rem, 0.4583rem + 0.8681vw, 1.5rem);--e-global-typography-39df5cf-font-weight:400;--e-global-typography-39df5cf-line-height:1.3em;--e-global-typography-4c14171-font-family:"DM Sans";--e-global-typography-4c14171-font-size:clamp(0.75rem, 0.4167rem + 0.6944vw, 1.25rem);--e-global-typography-4c14171-font-weight:700;--e-global-typography-1e73592-font-family:"Inter";--e-global-typography-1e73592-font-size:clamp(1rem, 0.75rem + 0.5208vw, 1.375rem);--e-global-typography-1e73592-font-weight:400;--e-global-typography-1e73592-line-height:1em;--e-global-typography-aeceec8-font-family:"DM Sans";--e-global-typography-aeceec8-font-size:clamp(1rem, 0.8333rem + 0.3472vw, 1.25rem);--e-global-typography-aeceec8-font-weight:400;--e-global-typography-aeceec8-line-height:1.2em;color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-kit-6 h1{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-kit-6 h2{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-kit-6 h3{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-kit-6 h4{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-kit-6 h5{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-kit-6 h6{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1536px;}.e-con{--container-max-width:1536px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}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:1440px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1440px;}.e-con{--container-max-width:1440px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}}@media(max-width:1140px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}}@media(max-width:768px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}@media(min-width:1920px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1760px;}.e-con{--container-max-width:1760px;}}/* Start custom CSS *//* Global slide from right */
.elementor-widget-heading.slide-right,
.slide-right {
    display: inline-block;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInFromRight 1.2s ease-out forwards;
    will-change: transform, opacity;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Image wrapper – hides overflow */
.slide-img-wrap {
    overflow: hidden;
    position: relative;
}

/* Image slide from right */
.slide-img-right img {
    transform: translateX(120vw);
    opacity: 0;
    animation: slideImgRightIn 1.4s ease-out forwards;
    will-change: transform, opacity;
}

/* Keyframes */
@keyframes slideImgRightIn {
    from {
        transform: translateX(120vw);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* ===== HERO BANNER BASE ===== */
.hero-banner {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
}

/* ===== LEFT CONTENT – global padding ===== */
.hero-content {
    padding-left: clamp(16px, 5vw, 80px);
    padding-right: clamp(16px, 3vw, 40px);
}

/* ===== RIGHT IMAGE WRAP ===== */
.hero-image-wrap {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
}

/* ===== IMAGE FULL COVER ===== */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}/* End custom CSS */