/* 
  Template Name: Keep Landing Page
  Template URI: https://example.com
  Author Name: 
  Author URI: https://
  Version: 1.0.0
  Description: This is figma to html
  Tags: figma, html
*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

/* Default Css */
*{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  overflow-x: hidden;
}

body{
  font-family: 'Fredoka';
  font-weight: 400;
  scroll-behavior: smooth;
  background-color: #ffffff;
}
ul,ol{
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,h2,h3,h4,h5,h6,p{
  padding: 0;
  margin: 0;
}
a{
  text-decoration: none;
  color: inherit;
}
a:hover{
  color: inherit;
}
button{
  border: 0;
  outline: 0;
}
img{
  max-width: 100%;
}

.banner {
  background: aliceblue;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  padding: 150px 40px;
  gap: 200px;
}

.banner-text-special{
  display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.banner-text {
  max-width: 40%;
  text-align: right;
}



.banner-text h1 {
  color: #598ced;
  line-height: 1.2;
  margin: 0 auto; /* Center the title */
  margin-bottom: 25px;

}

.banner-sub-text {
  color: #394C62;
}


.banner-text p {
  font-size: 1.5vw;
  color: #555;
  margin-bottom: 100px;
  line-height: 1.6;

}

.banner-animation {
  max-width: 500px; /* Adjust this value */
  max-height: 500px; /* Adjust this value */
  width: 100%;
  height: auto;
  margin-left: 100px; /* Adjust to center */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.banner-animation-mobile {
  display: none;
}



.nav-item {
  scroll-margin-top: 1000px;
}
.btn1{
  color: #fff;
  border: 1px solid #ff8001;
  background-color: #ff8001;
  border-radius: 40px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  transition: .3s ease;
  padding: 10px 35px;
}
.btn1:hover{
  background: #ffffff33;
  color: #0f1e49;
}
.btn4{
  color: #0f1e49;
  border: 1px solid #0f1e49;
  border-radius: 40px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  transition: .3s ease;
  padding: 10px 35px;
  margin-bottom: 25px;
  margin-top: 5px;
  max-width: 250px;
  min-width: 250px;
}
.btn4:hover{
  background: #ffffff33;
  color: #0f1e49;
}
.btn2{
  max-width: 300px;
  margin: auto;
  margin-top: 50px;

  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display:block;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 22px;
  background: #ff8001;
  color: #fff;
  border-radius: 25px;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.25));
  transition: all .5s ease;
  cursor: pointer;
}
.btn2-mobile{
  display: none;
}
.btn2:hover{
  color: #fff;
  background-color: #22c998;
  transform: scale(1.05);
}

.pricing-item .btn2:hover{
  color: #fff;
  background-color: #22c998;
  transform: scale(1.05);
}
/* Header Area Start
---------------------------------- */
.header-area {
  background: #ffffff;
  padding: 13px 0;
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 999;
}
.header-item{
  display: flex;
  align-items: center;
  justify-content: space-evenly;

}
.header-nav .btn1{
  display: none;
}
.header-nav nav ul{
  display: flex;
  align-items: center;
}
.header-nav nav ul li{
  margin: 0 27px;
}
.header-nav nav ul li a{
  display: inline-block;
  font-size: 22px;
  color: #0f1e49;
  /* transform: .3s; */
}
.header-nav nav ul li a:hover{
  color: #0f1e49;
}
.header-nav nav ul li a.active{
  color: #0f1e49 !important;
  background-color: transparent !important;
}

.header-logo a img{
  max-width: 175px;
  width: 100%;
  object-fit: cover;
}

/* 10bis Logo Styles */
.tenbis-logo {
  order: -1; /* Ensure it's on the left side */
}

.tenbis-logo a img {
  max-width: 80px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* For Mobile Menu Css */
.mobile-menu {
	position: absolute;
	top: 35px;
	left: 13%;
  display: none;
}
#nav-icon4 {
  width: 28px;
  height: 23px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #0f1e49;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
#nav-icon4 span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
#nav-icon4 span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}
#nav-icon4 span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}
#nav-icon4.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -2px;
  left: 2px;
}
#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#nav-icon4.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
  left: 2px;
}
/* Header Area End
---------------------------------- */

/* Banner Area Start
---------------------------------- */
.banner-area {
  position: relative;
  padding-top:70px;
}
.banner-image object{
  width: 100%;
}
.banner-btn{
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform:translateX(-50%);
  transition: all .5s ease;
}
.banner-area .btn2 {
  width: 300px !important;
  height: 56px;
  line-height: 56px;
}
.banner-area:hover .banner-btn{
  transform:translateY(-15px) translateX(-50%);
}
.banner-btn .btn2{
  margin-bottom: 15px;
}

.banner-btn p{
  text-align: center;
  
  color: #FFFFFF;
  font-size: 16px;
  transition: all .3s ease;
  font-weight: 700;
  margin-bottom: 30px;
}
.mobile-bg{
  display: none;
}
/* Banner Area End
---------------------------------- */

/* Number Component Start
---------------------------------- */
.number-component{
  padding-top: 100px;
}
.section-title{
  text-align: center;
  margin-bottom: 80px;
}
.section-title h2{
  color: #394C62;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  
  margin-bottom: 12px;
}
.section-title p{
  
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  max-width: 450px;
  margin: auto;
  direction: rtl !important;
}
/* .section-title p span{
  display: block;
} */
.content-wrapper{
  max-width: 1050px;
  width: 100%;
  margin: auto;
}
.component-items{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.component-items:hover .odd object{
  transform: translateX(50px);
}
.component-items:hover .even object{
  transform: translateX(-50px);
}
.component-number{
  text-align: center;
  width: 50%;
}
.component-number object{
  max-width: 150px;
  object-fit: contain;
  transition:all 1s ease;
}
.component-right{
  display: flex;
  align-items: center;
}
.component-right-text{
  text-align: right;
  padding-right: 30px;
}
.component-right-text span{
  text-transform: lowercase;
}
.component-right-text h4{
  
  color: #394C62;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}
.component-right-text p{
  /*  */
  color: #394C62;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  max-width: 305px;
  direction: rtl !important;
}
/* .component-right-text p span {
  display: block;
} */
.component-right-image object {
  width: 200px;
}

.component-right-image-cc object {
  width: 220px;
}

.credit-card-image{
  max-width: 220px;
}
/* Number Component End
------------------------------------- */

/* Fanfac Area Start
------------------------------------- */
.fanfac-area{
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.fanfac-area::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 75%;
  background-image: url();
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -3;
}
.fanfac-item{
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 50px;

}
.fanfac-item p{
  
  color: #394C62;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
}
.fanfac-item  h4{
  color: #051441;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
}
.fanfac-item  h2{
  color: #5a8dee;
  font-weight: 700;
  font-size: 18px;
}
.fanfac-item .btn2{
  filter: drop-shadow(0px 4px 3px rgba(0, 0, 0, 0.25));
  margin-top: 25px;
  margin-bottom: 25px;
}
.fanfac-item object{
  max-width: 130px;
  object-fit: contain;
  margin-top: 50px;
  margin-bottom: 20px;
}
.fanfac-item span{
  color: #A3AFBD;
  font-weight: 400;
  font-size: 16px;
}
.fanfac-title{
  margin-top: 50px;

  text-align: center;
  padding-top: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fanfac-title h2{
  font-weight: 700;
  font-size: 35px;
  color: #0f1e49;
}
.fanfac-title p{
  font-weight: 400;
  font-size: 20px;
  color: #0f1e49;
}

/* fanfac-pricing */
.fanfac-pricing{
  display:flex;
  justify-content: space-around;
  gap:25px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  flex-direction: column;

}
.pricing-item{
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  text-align: center;
  padding:20px 20px 120px;
  box-sizing: border-box;
  position: relative;
}
.pricing-item h4{
  color: #20C997;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 5px;
}
.pricing-item p{
  color: #394C62;
  font-weight: 400;
  font-size: 18px;
}

.pricing-number {
  border-bottom: 4px solid #F2F3F7;
  padding-bottom: 15px;
  max-width: 427px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  margin-bottom: 15px;
  transition: all 1s ease;
}
.pricing-number h2{
  
  color: #5A8DEE;
  font-weight: 700;
  font-size: 85px;
  transition: all 1s ease;
}
.pricing-number h2 span{
  color: #5A8DEE;
  font-weight: 700;
  font-size: 32px;
}
.pricing-number p{
  
  color: #5A8DEE;
  font-weight: 600;
  font-size: 18px;
  margin-top: 5px;
  transition: all 1s ease;
}
.pricing-item:hover .pricing-number h2,
.pricing-item:hover .pricing-number p{
  transform: translateY(-10px);
}

.pricing-number-benefit p{
  
  color: #20C997;
  font-weight: 600;
  font-size: 26px;
  margin-top: 5px;
  transition: all 1s ease;
}

.pricing-number-benefit h2{
  color: #5A8DEE;
  font-weight: 700;
  font-size: 22px;
}

.pricing-list {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}
.pricing-list ul li{
  
  color: #394C62;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.pricing-list ul li span{
  text-transform: lowercase;
}
.pricing-list ul li object{
  max-width: 40px;
  width: 100%;
  object-fit: contain;
  margin-left: 11px;
}
.pricing-btn {
  margin-bottom: -80px;
}
.pricing-btn .btn2{
  background: #ff8001;
}
.pricing-sample-text p{
  
  color: #A3AFBD;
  font-weight: 400;
  font-size: 14px;
  width: 100%;
  margin: auto;
  text-align: justify;
  line-height: 26px;
  direction: rtl !important;
  margin-bottom: 40px;
}
/* .pricing-sample-text p span {
  display: block;
} */

/* Pricing animation */
.setting-animation {
  position: absolute;
  top: -64px;
  right: -29%;
}
.rocket-animation object {
  height: 665px;
}
.rocket-animation {
  position: absolute;
  top: 32%;
  left: -162px;
  z-index: -1;
  transition: all .5s ease;
}
.pricing-item:hover .rocket-animation{
  transform: translateX(-30px) translateY(-50px) scale(1.1);
}
.leaves-animation {
  position: absolute;
  top: 45%;
  right: -125px;
  z-index: -1;
  transition: all .5s ease;
}
.pricing-item:hover .leaves-animation{
  transform: translateX(10px) translateY(20px) scale(1.1);
}
.leaves-animation object{
  height: 350px;
}

.subtitle-text h2{
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.pricing-subtitle{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 10px 10px 10px;
  background: #8bb5f7;
  border-radius: 15px;
}




/* Fanfac Area End
------------------------------------- */

/* FAQ Area Start
------------------------------------- */
.content-wrapper{
  max-width: 1050px;
  width: 100%;
  margin: auto;
}
.faq-main{
  display: flex;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px 40px 80px 40px;
  margin-bottom: 120px;
  margin-top: 100px;
}
.faq-main .accordion-body {
  direction: rtl !important;
}
.accordion-width{
  max-width: 615px;
  width: 100%;
  text-align: right;
}
.accor-head{
  width:100%;
  overflow: hidden;
}
.accor-head span{
  direction: rtl !important;
}
.faq-imgage{
  margin-left: 30px;
}
.faq-imgage img{
  object-fit: cover;
  max-width: 255px;
  width: 100%;
  height: auto;
}
.accordion-width>h2{
  font-weight: 700;
  font-size: 36px;
  line-height: 21px;
  
  color: #5A8DEE;
  margin-top: 40px;
  margin-bottom: 45px;
}
.accordion-width .accordion-item{
  overflow: hidden;
}
.accordion-width .accordion-item h2{
  float: right;
}
.accordion-width .accordion-item h2 button{
  padding: 10px 0;
  font-size: 18px;
  
  color: #000000;
}
.accordion-width .accordion-button::after{
  background-image: url(../images/plus.png);
  margin-left: 15px;
}
.accordion-width .accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus.png);
  margin-left: 15px;
}
.accordion-width .accordion-body p{
  display: inline-block;
}

.faq-main .accordion-item {
	background-color: #fff;
	border: 0;
}
.faq-main .accordion-button{
  text-align: right;
  
  color: #000000;
  font-weight: 400;
  font-size: 18px;
}

.faq-main .accordion-button:focus {
	z-index: 3;
	border-color: none;
	outline: 0;
	box-shadow: 0 0 0 0;
}
.faq-main .accordion-button:not(.collapsed) {
	background-color: transparent !important ;
	box-shadow: inset 0 0 0;
}
/* FAQ Area End
------------------------------------- */

/* Footer Area Start
------------------------------------- */
.footer-area{
  background-color: #5a89ec;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
  position: relative;
  margin-top: 50px;

}
.footer-area object{
  position: absolute;
  top: -108px;
  left: 0;
  right: 0;
  margin: auto;
  width: 164px;
  height: 150px;
  background-image: url(../images/keepy-footer.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.footer-area a img{
  width: 100px;
  height: auto;
  margin: auto;
  margin-top: 30px;
}
.footer-area .p{
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
  padding: 10px 0 20px 0;
}
.footer-area .btn1{
  margin-bottom: 35px;
}
.footer-li ul {
  display: flex;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin: auto;
  text-align: center;
}
.footer-li ul li{
  width: 100%;
  text-align: center;
}
.footer-li ul li a {
  font-size: 20px;
  line-height: 21px;
  text-align: center;
  color: #fff;
  display: inline-block;
  transition: all .3s ease-in;
  text-align: center;
}
.footer-li ul li:hover a{
  transform: scale(1.1);
  border-bottom: 1px solid #fff;
}
.footer-li{
  padding-bottom: 100px;
  border-bottom: 1px solid #ffffff33;
}

.pricing-diclamer{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-diclamer p{
  text-align: center;
  margin-bottom: 0px;
}

.footer-bottom p:first-child{
  max-width: 710px;
  width: 100%;
  margin: auto;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #0f1e49;
  padding: 15px 0;
  direction: rtl !important;
}
.footer-bottom p:last-child{
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
  padding: 35px;
}

.footer-logo-and-button{
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 10px;

}

/* Footer Area End
------------------------------------- */
.whatapp-btn{
  position: fixed;
  bottom: 50px;
  left: 40px;
  z-index: 9999;
}
.whatapp-btn a{
  display: inline-block;
}
.whatapp-btn a img{
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.Accessibility{
  margin-top: 25px;
}

.title{
  margin:0;
  font-size:25px;
  font-weight:700;
  text-decoration:underline
}
.text{
  border:2px #333 dashed;
  padding:5px
}
#version{
  max-width:50px
}
.help{
  color:#fff;
  border-radius:50px;
  background-color:#4169e1;
  display:inline-block;
  vertical-align:middle;
  cursor:pointer
}
#nagishli-code{
  min-width:450px;
  min-height:100px;
  overflow:auto
}
.bottom{
  position:relative;
  bottom:-31px
}


header {
  background-color: #5a8dee; /* Replace with the exact color from the image */
  color: white;
  text-align: center;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  max-width: 100%;


}

.content{
  max-width: 100%;

}

form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 50px;
  margin: 0 100px 0 100px;
  padding: 25px 100px 25px 100px;
}

.form-title{
  color: #0f1e49;
  margin-bottom: 15px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 60px; /* Adjust gap as needed */
}

.form-grid input {
  width: 100%; /* Ensure inputs fill their grid cells */
}


input[type="text"] {
  display: block;
  padding-inline-start: 10px;
  margin: 10px 0;
  border-radius: 50px;
  height: 3rem;
  width: 300px;
  border-right-width: 15px;    
  border-color: #007bff00;
  background-color: #ffffff;
  direction: rtl;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a shadow effect */
  transition: box-shadow 0.3s ease-in-out; /* Smooth transition effect */
  border: 1px solid #ccc; /* Adds a light border */
}
input:after[type="text"] {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Darker shadow when focused */
  border-color: #007BFF; /* Change border color on focus */
  outline: none; /* Remove the default outline */
}

input[type="email"] {
  display: block;
  padding-inline-start: 10px;
  margin: 10px 0;
  border-radius: 50px;
  height: 3rem;
  width: 300px;
  border-right-width: 15px;    
  border-color: #007bff00;
  background-color: #ffffff;
  direction: rtl;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a shadow effect */
  transition: box-shadow 0.3s ease-in-out; /* Smooth transition effect */
  border: 1px solid #ccc; /* Adds a light border */
}
input:after[type="email"] {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Darker shadow when focused */
  border-color: #007BFF; /* Change border color on focus */
  outline: none; /* Remove the default outline */
}

input[type="number"] {
  display: block;
  padding-inline-start: 10px;
  margin: 10px 0;
  border-radius: 50px;
  height: 3rem;
  width: 300px;
  border-right-width: 15px;    
  border-color: #007bff00;
  background-color: #ffffff;
  direction: rtl;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a shadow effect */
  transition: box-shadow 0.3s ease-in-out; /* Smooth transition effect */
  border: 1px solid #ccc; /* Adds a light border */
}
input:after[type="number"] {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Darker shadow when focused */
  border-color: #007BFF; /* Change border color on focus */
  outline: none; /* Remove the default outline */
}

textarea[type="text"] {
  display: block;
  padding-inline-start: 10px;
  padding-block-start: 10px;
  margin: 10px 0;
  border-radius: 25px;
  height: 6rem;
  width: 300px;
  border-right-width: 15px;    
  border-color: #007bff00;
  background-color: #ffffff;
  direction: rtl;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a shadow effect */
  transition: box-shadow 0.3s ease-in-out; /* Smooth transition effect */
  border: 1px solid #ccc; /* Adds a light border */
}
textarea:focus[type="text"] {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Darker shadow when focused */
  border-color: #007BFF; /* Change border color on focus */
  outline: none; /* Remove the default outline */
}

#contactForm .button {
  border-radius: 50px;
  border-style: none;
  height: 3rem;
  width: 15rem;
  background-color: #70d87b;
  /* Additional styles for text color, font, etc. */
  color: white; /* Example to set the text color to white */
  font-size: 1rem; /* Example to set the font size */
  cursor: pointer; /* Changes the mouse cursor to a pointer on hover */
  transition: background-color 0.3s; /* Smooth transition for background color */
  margin-top: 1.5rem;
}

#contactForm .button:hover {
  background-color: #64c46b; /* Slightly darker green color on hover */
}


.form-title{
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

.column {
  padding: 10px; /* This adds some spacing around the content of each column */
  display: flex;
  justify-content: center;

}


.form-column  p{
  /* Additional styling for form column if needed */
  text-align: center;
  color: #5a8dee;
  font-size: 42px;
  font-weight: bold;
}

.image-column {
  position:relative;
}
.hedgehog-image{
  max-width: 180px;
  margin: -278px -500px 15px auto;

}

.text-column {
  /* Additional styling for text column if needed */
  text-align: start;
  max-width: 400px;
  margin-left: 5rem;
}

.reg-action{
  text-align: center;
  padding-bottom:35px;
}

.button-reg-action{
  border-radius: 50px;
  border-style: none;
  height: 3rem;
  width: 15rem;
  background-color: #70d87b;
  /* Additional styles for text color, font, etc. */
  color: white; /* Example to set the text color to white */
  font-size: 14px; /* Example to set the font size */
  cursor: pointer; /* Changes the mouse cursor to a pointer on hover */
  transition: background-color 0.3s; /* Smooth transition for background color */
}

.button-reg1{
  border-radius: 50px;
  border-style: solid;
  height: 2.5rem;
  background-color: #5a8dee;
  border-color: black;
  /* Additional styles for text color, font, etc. */
  color: white; /* Example to set the text color to white */
  font-size: 14px; /* Example to set the font size */
  cursor: pointer; /* Changes the mouse cursor to a pointer on hover */
  transition: background-color 0.3s; /* Smooth transition for background color */
}

.slider-text{
  direction: rtl;
  margin-top: 25px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.underline-link {
  text-decoration: underline;
}

.footer {
  background-color: #f5fbff; /* Light background color */
  padding: 5% 25% 5% 25%;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #8a8f98; /* Light gray text color */
  direction: rtl; /* Ensure right-to-left text direction for Hebrew */
}


.footer-links a {
  color: #8a8f98; /* Same color as text */
  text-decoration: none;
  margin: 0 15px; /* Space between links */
  font-size: 16px;

}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-text p {
  display: flex;
  font-size: 14px;
  line-height: 1.5; /* Increase line spacing for readability */
  text-align: justify;
  padding-top: 20px;
  padding-bottom: 20px;
  justify-content: space-around;

}

.footer-rights p { 
  padding: 0px;

}

.footer-top-row{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;

}

/* Slider Styles */
.slider-container {
  position: relative;
  text-align: center;
  width: 100%;
  margin: 0px 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.percentage-label {
  margin-bottom: 25px;
  position: absolute;
  top: -5px;
  right: 50%;
  transform: translateX(50%);
  color: #394C62;
  font-weight: 400;
  font-size: 18px;
}

.slider-track {
  position: relative;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 50px;
}

.slider-progress {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to left, #22cf8a, #4a90e2);
  width: 0%;
  transition: width 0.3s ease;
}

.milestone {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #4a90e2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.milestone-animation {
  position: absolute;
  top: 63%;
  left: 37%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  pointer-events: none; /* Ensures clicking the animation doesn't block the milestone */
  z-index: 1; /* Places animation below icon */
}


.milestone[data-value="0"] {
  right: 0%;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #20c997;
}

.milestone[data-value="5000"] {
  right: 30%;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #20c997;
}

.milestone[data-value="20000"] {
  right: 60%;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #20c997;
}


.milestone[data-value="150000"] {
  left: 0%;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #20c997;
}

.milestone-label {
  font-size: 14px;
  color: #394c62;
  position: absolute;
  top: 50px;
  font-weight: 600;
}


.milestone-icon {
  width: 16px;
  height: 16px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* Ensures the icon does not interfere with clicking */
}

@media (max-width: 375px) {
  .percentage-label {
      font-size: 13px;
      top: -30px;
  }
  .milestone {
      width: 30px;
      height: 30px;
      font-size: 10px;
  }
  .milestone[data-value="0"] {
      width: 35px;
      height: 35px;
      font-size: 12px;
  }
  .milestone-label {
      font-size: 14px;
      top: 35px;
  }
}
