.elementor-kit-764{--e-global-color-primary:#131D38;--e-global-color-secondary:#000000;--e-global-color-text:#FFFFFF;--e-global-color-accent:#E60000;--e-global-color-6765939:#1C2957;--e-global-color-a22fb71:#1B2855;--e-global-color-29d9d9d:#131C3B;--e-global-color-9505083:#1C2A58;--e-global-color-7f97798:#1F2E60;--e-global-color-232d859:#213268;--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;background-color:var( --e-global-color-primary );font-family:"Roboto", Sans-serif;font-size:18px;}.elementor-kit-764 button,.elementor-kit-764 input[type="button"],.elementor-kit-764 input[type="submit"],.elementor-kit-764 .elementor-button{background-color:var( --e-global-color-accent );text-transform:uppercase;text-decoration:none;color:var( --e-global-color-text );border-radius:10px 10px 10px 10px;}.elementor-kit-764 button:hover,.elementor-kit-764 button:focus,.elementor-kit-764 input[type="button"]:hover,.elementor-kit-764 input[type="button"]:focus,.elementor-kit-764 input[type="submit"]:hover,.elementor-kit-764 input[type="submit"]:focus,.elementor-kit-764 .elementor-button:hover,.elementor-kit-764 .elementor-button:focus{background-color:#C90000;color:var( --e-global-color-text );}.elementor-kit-764 e-page-transition{background-color:#FFBC7D;}.elementor-kit-764 a{color:#A4B9FF;font-weight:600;}.elementor-kit-764 a:hover{color:var( --e-global-color-accent );}.elementor-kit-764 h1{font-family:"Poppins", Sans-serif;font-weight:800;}.elementor-kit-764 h2{font-family:"Poppins", Sans-serif;font-weight:800;}.elementor-kit-764 h3{font-family:"Poppins", Sans-serif;font-weight:700;}.elementor-kit-764 h4{font-family:"Poppins", Sans-serif;font-weight:700;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1240px;}.e-con{--container-max-width:1240px;}.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 *//* Center and style the badge */
.llg-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  width: fit-content;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Link layout */
.llg-badge a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #111;
  position: relative;
}

/* Purple planet icon */
.llg-badge a::before {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'>\
    <defs>\
      <linearGradient id='g' x1='0' y1='0' x2='1' y2='1'>\
        <stop offset='0' stop-color='%238756FF'/>\
        <stop offset='1' stop-color='%235A27F3'/>\
      </linearGradient>\
    </defs>\
    <circle cx='34' cy='32' r='18' fill='url(%23g)'/>\
    <ellipse cx='34' cy='34' rx='28' ry='10' transform='rotate(-18 34 34)' fill='none' stroke='%238756FF' stroke-width='6'/>\
    <ellipse cx='34' cy='34' rx='28' ry='10' transform='rotate(-18 34 34)' fill='none' stroke='%23FFFFFF' stroke-opacity='.35' stroke-width='3'/>\
  </svg>");
  transition: filter .25s ease;
}

/* Text */
.llg-title {
  font-weight: 700;
  font-size: 1rem;
}

/* Hover: lift + brighter icon */
.llg-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.llg-badge a:hover::before {
  filter: brightness(1.15);
}

/* Tooltip styling */
.llg-badge a::after {
  content: attr(data-tip);
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(17,17,17,.95);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
}

/* Show tooltip on hover */
.llg-badge a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .llg-badge {
    padding: 10px 14px;
  }
  .llg-badge a::before {
    width: 28px;
    height: 28px;
  }
}/* End custom CSS */