.elementor-kit-7{--e-global-color-primary:#B12520;--e-global-color-secondary:#000000;--e-global-color-text:#FFFFFF;--e-global-color-accent:#B12520;--e-global-color-4fc09eb:#FFFFFF00;--e-global-typography-primary-font-family:"Plus Jakarta Sans";--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Plus Jakarta Sans";--e-global-typography-text-font-weight:300;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:var( --e-global-color-secondary );}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1440px;}.e-con{--container-max-width:1440px;}.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 */#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* stays behind content */
  background: transparent;
  pointer-events: none; /* allows mouse events to pass through */
}

/* ✅ Gradient container with blur effect */
.gradient-container {
  position: relative;
  overflow: hidden;
  z-index: 1;

  /* Glass/blur effect on the content itself */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* ✅ Gradient Layer */
.gradient-container::before {
  position: absolute;
  content: "";
  left: 0;
  top: 100%; /* start completely below the box */
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    #FF0900 0%,
    #B12520 40%,
    #A20600 80%
  );

  /* Initial rounded top + right corner */
  border-top-left-radius: 0;
  border-top-right-radius: 999px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;

  transition:
    top 0.8s cubic-bezier(.77,0,.18,1),
    border-top-right-radius 0.8s cubic-bezier(.77,0,.18,1);

  z-index: 0;
}

/* ✅ Hover → gradient flows upward & radius flattens */
.gradient-container:hover::before {
  top: 0;
  border-top-right-radius: 0; /* flatten when fully covered */
}/* End custom CSS */