/* guide-track.css */


/* Main container */
.wpml-ls-legacy-dropdown {
    background: rgba(118, 199, 115, 0.1);
    border-radius: 20px;
    padding: 5px 10px;
    backdrop-filter: blur(7px);
    max-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.wpml-ls-legacy-dropdown a {
    background-color: transparent !important;
    padding: 0 !important;
    gap: 4px !important;
}
/* Remove default styles */
.wpml-ls-legacy-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.wpml-ls-legacy-dropdown a .wpml-ls-native {
    margin: 0 !important;
}
/* Main button */
.wpml-ls-item-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Circular Std", sans-serif;
    font-weight: 450;

    font-size: 16px;
    color: #25282A;
    text-decoration: none;
}

/* Add language icon (custom) */
.wpml-ls-item-toggle::before {
    content: "文A"; /* icon like your design */
    font-size: 16px;
}

/* Hide dropdown arrow (optional) */
.wpml-ls-item-toggle:after {
    display: none !important;
}

.wpml-ls-sub-menu {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.wpml-ls-sub-menu a {
    display: block;
    padding: 8px 12px;
    color: #25282A;
    border-radius: 6px;
}

.wpml-ls-sub-menu a:hover {
    background: #f3f4f6;
}


.call-con {
    color: #7E878D;
    font-size: 16px;
}


.web-guide-line{
    position: relative;
    /* display: inline-block; */
}
/* dote line */
.web-guide-line::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 18%;
    margin: 0 auto;
    transform: translateY(-50%);
    width: 67%;
    height: 1px;
    /* background-color: #009C56; */
    border: 1px dashed #009C56;
    /* border-radius: 1px; */
    z-index: -1;
}





/* Main Wrapper / Parent Class */
.web-slider {

    position: relative !important  ;
    width: 100% !important ;
    max-width: 500px !important;
    margin: 0 auto !important  ;
    background-color: #3b434b !important   ;/* ડાર્ક બેકગ્રાઉન્ડ ઈમેજ મુજબ */
    padding: 40px 0 20px !important;
    border-radius: 16px !important ;
    color: #ffffff !important  ;
    overflow: hidden !important;
    box-sizing: border-box !important  ;
}

/* Header Text (Title and Subtitle) */
.web-slider .slider-header {
    text-align: center !important  ;
    padding: 0 20px !important ;
    margin-bottom: 35px !important ;
}

.web-slider .slider-title {
    font-size: 24px !important ;
    font-weight: 700 !important;
    margin: 0 0 10px !important;
    color: #ffffff !important  ;
}

.web-slider .slider-subtitle {
    font-size: 15px !important ;
    color: #a8afb5 !important  ;
    margin: 0 !important   ;
}

.web-slider .slider-subtitle .highlight {
    color: #27ae60 !important  ; 
    font-weight: 700 !important;
}

/* Image Track */
.web-slider .slider-track {
    display: flex !important   ;
    align-items: center !important ;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important   ;
    scroll-behavior: smooth !important ;
    scrollbar-width: none !important   ;
    -ms-overflow-style: none !important; 
    padding-bottom: 20px !important;
    height: 480px !important   ; 
}

.web-slider .slider-track::-webkit-scrollbar {
    display: none !important   ;
}

/* Individual Slides (Phone Mockups) */
.web-slider .slider-card {
    flex: 0 0 240px !important ; 
    margin: 0 15px !important  ;
    scroll-snap-align: center !important   ;
    transition: all 0.4s ease !important   ;
    
    /* Inactive style (smaller + faded) */
    opacity: 0.4 !important;
    transform: scale(0.85) !important  ; 
    display: flex !important   ;
    justify-content: center !important ;
}

/* Center Align Logic for the flex container */
.web-slider .slider-card:first-of-type {
    margin-left: calc(50% - 120px) !important  ;
}

.web-slider .slider-card:last-of-type {
    margin-right: calc(50% - 120px) !important ;
}

/* Active Center Slide */
.web-slider .slider-card.active {
    opacity: 1 !important  ;
    transform: scale(1) !important ;
    z-index: 10 !important ;
}

.web-slider .slider-card img {
    width: 100% !important ;
    height: auto !important;
    object-fit: contain !important ;
}

/* Bottom Navigation (Next/Prev Buttons & Dots) */
.web-slider .slider-nav {
    display: flex !important   ;
    justify-content: space-between !important  ;
    align-items: center !important ;
    padding: 10px 30px !important  ;
    margin-top: 15px !important;
}

.web-slider .nav-arrow {
    background: transparent !important ;
    border: none !important;
    color: #6aca6a !important  ; 
    font-size: 16px !important ;
    font-weight: 500 !important;
    cursor: pointer !important ;
    display: flex !important   ;
    align-items: center !important ;
    gap: 6px !important;
    transition: opacity 0.3s !important;
    font-family: inherit !important;
}

.web-slider .nav-arrow:hover {
    opacity: 0.8 !important;
}

.web-slider .nav-arrow.disabled {
    opacity: 0 !important  ;
    pointer-events: none !important; 
}

/* Navigation Dots */
.web-slider .dots-nav {
    display: flex !important   ;
    align-items: center !important ;
    gap: 8px !important;
}

.web-slider .dot {
    width: 6px !important  ;
    height: 6px !important ;
    background-color: rgba(255, 255, 255, 0.3) !important  ;
    border-radius: 50% !important  ;
    border: none !important;
    padding: 0 !important  ;
    cursor: pointer !important ;
    transition: all 0.3s !important;
}


.web-slider .dot.active {
    background-color: #ffffff !important   ;
    width: 20px !important ; 
    border-radius: 10px !important ;
}



/*  footer menu css */
li.green-menu  a {
    color:#76C773 !important  ;
}
li.blank-menu a{
    color: transparent !important  ;
    pointer-events: none !important  ;
    cursor: none !important;
}

/* .testimonials-slider .swiper-slide.swiper-slide-active .testi-card .textbox {
    display: block;
    min-width: 270px;
    height: 75px;
} */

/* 150426 css */
input.hfe-search-form__input{
	color: #7E878D;
	font-family: "Circular Std";
	font-size: 18px;
	font-style: normal;
	font-weight: 450;
	line-height: normal;
}
.web-page .border-top:after {
	left: -48%;
    width: 88%;
    top: 22px;    
    border: 1px dashed #009C56;
}
/* .web-page .testimonials-slider .swiper-slide.swiper-slide-active .testi-card .textbox{min-width:280px;} */
.footer-mail-link a{text-decoration:underline;}
.center-circle .owl-carousel .owl-dots.disabled {
    display: flex;
	align-items:center;
	justify-content:center;
}
/* .center-circle .owl-carousel .owl-stage-outer .owl-stage {
    padding: 50px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
} */
/* .center-circle .screenshot_slider .owl-item{width:100px !important;} */
.center-circle .screenshot_slider .owl-item.center {
    transform: scale(1) !important;
/*     width: 150px !important; */
}
.center-circle .screenshot_slider .owl-item.center .item-image-box{
	transform: scale(1.5);
    margin-bottom: 40px;
}
.center-circle .screenshot_slider .owl-item.center .item .item-button a{min-width:150px;padding:10px 30px;}
.center-circle .owl-carousel .owl-stage-outer .owl-stage{
	padding:30px 0px 30px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.home_how_to_start .elementor-image-box-wrapper .elementor-image-box-img img{padding:0px !important;}
.home_how_to_start_content .ue_slider .slide__content .slide__content--headings .ue_simple_slider_title{font-weight:500 !important;}
.home_how_to_start_content .ue_slider .ue_slide .slide__content .slide__content--headings .ue_simple_slider_text{color:#7E878D;}
#uc_simple_slider_elementor_37d55ae .slide__content .slide__content--headings {
    min-height: auto;
}
.home_how_to_start_content .elementor-element-4a67851 .ue_slider .ue_slide[data-slick-index="2"] .slide__content .slide__content--headings .ue_simple_slider_text b{color:#F7F1E7;}
.footer-bottom-gray a{color:#7E878D !important;}
header .menu-item-home a{color:#25282A !important;}
#uc_simple_slider_elementor_37d55ae.ue_slider.slide-0::before{top:245px;}
#uc_simple_slider_elementor_37d55ae.ue_slider.slide-1::before, #uc_simple_slider_elementor_37d55ae.ue_slider.slide-2::before{top:64%;}
#uc_simple_slider_elementor_37d55ae.ue_slider.slide-3::before{top:62%;}
#uc_simple_slider_elementor_37d55ae.ue_slider.slide-4::before{top:32%;}
#uc_simple_slider_elementor_37d55ae.ue_slider.slide-5::before, #uc_simple_slider_elementor_37d55ae.ue_slider.slide-7::before {top: 65.5%;}
.home_how_to_start_content.elementor-element-f0036b3 .ue_slider .ue_slide.slick-slide .slide__content .slide__content--headings .ue_simple_slider_text{min-height:60px;}
.home_how_to_start_content.elementor-element-f0036b3 .ue_slider .ue_slide.slick-slide.slick-current.slick-center .slide__content .slide__content--headings .ue_simple_slider_text{min-height:50px;}
.home_how_to_start_content .fa-arrow-left:before, .home_how_to_start_content .fa-arrow-right:before{font-family: "Font Awesome 6 Free" !important;}
.wpml-elementor-ls{text-align:right;}
/* .wpml-elementor-ls ul li.wpml-ls-slot-shortcode_actions.wpml-ls-item {
	border-radius: 20px;
	background: rgba(118, 199, 115, 0.10);
	backdrop-filter: blur(3.5px);
	display: inline-flex;
	padding: 5px 10px;
	align-items: center;
	gap: 4px;
} */
.screenshot_slider .owl-dots{text-align:center;}

@media(max-width:767px){
/* 	.wpml-elementor-ls ul li.wpml-ls-slot-shortcode_actions.wpml-ls-item{padding:0px;background:transparent;backdrop-filter:unset;gap:0;} */
}

@media(max-width:479px){
	.center-circle .screenshot_slider .owl-item .item .item-image-box{width:110px;}
	.screenshot_slider .owl-item .item-title{min-width:100px;}
/* 	.screenshot_slider .owl-item{margin:0px 30px !important;}
	.screenshot_slider .owl-item.active.center{margin:0px 30px !important;} */
	.center-circle .screenshot_slider .owl-item.active.center .item .item-image-box{width:160px;}
	.screenshot_slider .owl-item.active.center .item-title{min-width:150px;}
}