.elementor-kit-64{--e-global-color-primary:#1B263B;--e-global-color-secondary:#F6F3F3;--e-global-color-text:#1B263B;--e-global-color-accent:#FF4603;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-size:14px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Montserrat";--e-global-typography-secondary-font-size:14px;--e-global-typography-secondary-font-weight:500;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-size:14px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;color:#1B263B;font-family:"Roboto", Roboto;font-size:18px;line-height:1.8em;}.elementor-kit-64 e-page-transition{background-color:#FFBC7D;}.elementor-kit-64 a{color:#1B263B;font-family:"Roboto", Roboto;}.elementor-kit-64 a:hover{color:#FF4603;}.elementor-kit-64 h1{color:#1B263B;font-family:"Montserrat", Roboto;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1920px;}.e-con{--container-max-width:1920px;}.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-header .site-branding .site-logo img{width:0px;max-width: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 *//* Radiant hover for drill cards */
.drill-card {
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* keep card content above the overlay stacking context */
.drill-card > * {
  position: relative;
  z-index: 2;
}

/* the glow overlay */
.drill-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;                /* sit above background, below content */
  pointer-events: none;
 background: radial-gradient(circle at center,
            rgba(0,0,0,0.08) 0%,
            rgba(0,0,0,0.04) 35%,
            rgba(0,0,0,0) 75%);

  opacity: 0;
  transition: opacity .35s ease;
}

.drill-card:hover { 
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.drill-card:hover::after { 
  opacity: 1;
}/* End custom CSS */