:root
{
	--itm-select-border-color: var(--e-global-color-custom19);
	--itm-select-option-hover-bg: var(--nv-primary-accent);
	--itm-select-option-hover-txtc: var(--nv-text-dark-bg);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--nv-light-bg);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--nv-text-dark-bg);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--e-global-color-primary);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--e-global-color-primary);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* SPEED SCORE SHORTCODE *//* Main wrapper */
/* Main wrapper - renamed classes */
.speed-impact-visual:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}
.speed-impact-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    gap: 0.75rem;
	     transition: all 0.2s ease;

}

/* Circle container */
.speed-impact-visual .impact-meters {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding:10px;
    line-height: 0;
    width: 100%;
}

/* Number frame with progress ring */
.speed-impact-visual .impact-meter {
    --progress: 100;
    --ring-color: #004133;
    position: relative;
    width: 12vw;
    height: auto;
    
    
    
    min-height: 50px;
}

/* SVG container */
.speed-impact-visual .meter-svg {
    width: 100%;
    height: 100%;
	overflow:visible;
}

/* Background ring */
.speed-impact-visual .meter-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 4;
}

/* Colored progress ring */
.speed-impact-visual .meter-progress {
    fill: none;
    stroke: var(--ring-color);
    stroke-width: 4;
    stroke-dasharray: 226; /* Updated for better precision */
    stroke-dashoffset: calc(226px - (226px * var(--progress)) / 100);
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

/* Number text */
.speed-impact-visual .meter-value {
    font-size: 150%;
    font-weight: bold;
    display:inline-block;
    text-anchor: middle;
    dominant-baseline: middle;
	line-height:100%;
}

/* Fat arrow styles */
.speed-impact-visual .impact-arrow {
    width: 12vw;
    max-width: 100px;
    min-width: 50px;
    height: auto;
    margin: 0 1vw;
}

.speed-impact-visual .impact-arrow svg {
    width: 100%;
    height: auto;
    display: block;
}

.speed-impact-visual .impact-arrow path {
    fill: currentColor;
    stroke: currentColor;
     stroke-width: 3; /* Makes the arrow fatter */
    stroke-linecap: round;
    stroke-linejoin: round;
    
}
/* Improvement list */
.speed-impact-visual .improvement-item
, .speed-impact-visual .meter-svg
{
	 transition: all 0.2s ease;
}
.speed-impact-visual .improvement-item:hover
, .speed-impact-visual .meter-svg:hover

 {
	transform:scale(1.05);
}
.speed-impact-visual .improvement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
	    

     padding:0;

}
.speed-impact-visual .improvement-item svg
{
	overflow:visible;
}
.speed-impact-visual .improvement-list
{
	padding: 0px 12px;
	display:flex;
	flex-direction:column;
	width:100%;
	gap:5px;
	
}

.speed-impact-visual .improvement-text {
    flex: 1;
    text-align: left;
    margin-right: 10px;
}

.speed-impact-visual .improvement-value {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile responsiveness - Elementor default is 767px */
@media (max-width: 767px) {
    .speed-impact-visual .impact-meter {
        
        
    }
    
    .speed-impact-visual .meter-value {
        font-size: 1.3rem;
    }
    
    .speed-impact-visual .impact-arrow {
        max-width: 50px;
    }
}

/*aganci landing*/
body {
    margin: 0;
    font-family: system-ui, sans-serif;
}

/* ---------- Header Base ---------- */
.aganci-landing-header {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    background-color: transparent;
    height: 100px;
    align-content: center;
}

/* ---------- Inner container ---------- */
.aganci-landing-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    transition: max-width 0.4s ease, padding 0.4s ease;
}

/* ---------- Scrolled state ---------- */
.aganci-landing-header.scrolled {

    top:20px;
    height:72px;

}

.aganci-landing-header.scrolled .aganci-landing-header-inner {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 1050px;
    padding: 10px 20px;
    border-radius: 12px;
}

/* ---------- Logo ---------- */
.aganci-landing-logo img {
    height: 28px;
    max-height: 28px;
    transition: transform 0.4s ease;
}

/* ---------- Navigation ---------- */
.aganci-landing-nav a {
    color: #000;
    text-decoration: none;
    margin: 0 18px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.aganci-landing-nav a:hover {
    color: #009879;
}

/* ---------- Book Button ---------- */
.aganci-landing-book-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.aganci-landing-book-btn:hover {
    transform: translateY(-1px);
}

/* ---------- Mobile ---------- */
.aganci-landing-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
}

.aganci-landing-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}

/* ---------- Mobile Menu ---------- */
.aganci-landing-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.aganci-landing-mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.aganci-landing-mobile-menu a {
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.aganci-landing-mobile-menu a:hover {
    background: #f7f7f7;
}

/* ---------- Mobile Adjustments ---------- */
@media (max-width: 860px) {
    .aganci-landing-header-inner {
        padding: 20px;
        max-width: 100%;
        height: 92px;
    }

    .aganci-landing-nav,
    .aganci-landing-book-btn {
        display: none;
    }

    .aganci-landing-menu-toggle {
        display: flex;
    }

    .aganci-landing-header.scrolled {
        background-color: rgba(255, 255, 255, 1);
        transition: background-color 0.4s ease;


    }
}
.e-con.e-con>.e-con-inner> .elementor-element-282965b.elementor-widget
{
    width:100%;
}
.e-con.e-con>.e-con-inner>.elementor-element-595fb15.elementor-widget,.e-con.e-con>.e-con-inner>.elementor-element-c85d2ea.elementor-widget,.e-con.e-con>.e-con-inner> .elementor-element-282965b.elementor-widget
{
    padding-left:15px;
    padding-right:15px;
}
.elementor-9 .elementor-element.elementor-element-fff56d3
{
    overflow-y: visible;
}
@media(min-width: 1367px) {
    .e-con.e-con>.e-con-inner> .elementor-element-282965b.elementor-widget
    {
        max-width: 1110px;
    }
    .e-con.e-con>.e-con-inner>.elementor-element-595fb15.elementor-widget,.e-con.e-con>.e-con-inner>.elementor-element-c85d2ea.elementor-widget
    {
        max-width: 830px;
    }
}

body main#content > .elementor.elementor-9
{
    background-color: transparent;
    background-image: radial-gradient(at 0px 300px, var(--e-global-color-secondary) 0%, #FFFFFF00 25vw);
    background-repeat: no-repeat;

}
body main#content > .elementor.elementor-9:after
{
    background-color: transparent;
    background-image: radial-gradient(at center left, #3BBE9052 0%, #FFFFFF00 100%);
    background-image: radial-gradient(at 100vw 440px, var(--e-global-color-secondary) 0%, #FFFFFF00 25vw);
    background-repeat: no-repeat;
    display:block;
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    content: ""; /* Activates the ::after pseudo-element */
}
.e-con.e-con>.e-con-inner> .elementor-element-030a846 .elementor-widget
{
    max-width: 700px;
}