@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  scroll-behavior: smooth;
  overflow-x: hidden!important;
}
::-webkit-scrollbar-button{
  display: none;
}
footer,section{
  overflow: hidden;
}
footer{
  overflow-y: hidden;
}

header{
  /* padding: 0px 45px; */
  background-color: var(--background);
  width: 100%;
  height: 90px;
  position: fixed;
  top: -2px;
  transition: all .3s;
  z-index: 999;
}

header.sticky {
  background-color: var(--background);
  height: 80px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 100;
}


.logo-img{
  width: 60px;
}
.m-logo{
  font-family: "Roboto", sans-serif;
  font-size: 22px;
}
.logo-text{
  font-size: 19px;
  margin-left: 5px;
  font-weight: 900;
  color: var(--color-primary);
  text-transform: uppercase;

}
.navigation ul{
  list-style: none;
  font-weight: 600;
}
.header-row{
  padding: 20px 0;
}
.menu-bars{
  display: none;
  cursor: pointer;
}
.nav-postion-rl{
  position: relative;
}
.nav-postion-ab{
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 200px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.nav-postion-rl:hover .nav-postion-ab{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.nav-postion-ab a{
  padding: 8px 10px;
  transition: all .3s;
}
.nav-postion-ab a:hover{
  color: var(--color-primary);
}

/*------------- hero section ---------- */
.hero-section{
  margin-top: 60px;
}
.hero-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-left: 7%;
}

.hero-badge{
  padding: 5px 10px;
  border-radius: 8px;
  border: 2px solid #dcdcdc;
}
.hero-heading{
  font-size: 45px;
  margin-top: 20px;
  font-weight: 800;
  color: var(--text-color-dark);
}
.hero-div{
  /* width: 70%; */
  max-width: 500px;
  padding: 5px;
  /* border: 1px solid; */
}
.hero-p{
  line-height: 1.7;
  font-weight: 500;
  font-size: 17.5px;
  margin-block: 28px 24px;
  color: var(--text-color);
  padding-right: 20px;
}
.hero-action-btn .btn{
  padding-block: 10px;
}
.hero-img{
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  aspect-ratio: 1/.8;
  position: relative;
}
.hero-img::after{
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .07);
}

.hero-img-ab{
  position: absolute;
  width: 30%;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
}
.hero-img-ab-1{
  top: 70px;
  left: 6%;
}
.hero-img-ab-2{
  top: 20px;
  left: 25%;
  width: 25%;
  height: 20%;
}
.hero-img-ab-3{
  bottom: 40px;
  right: 4%;
  height: 30%;
  width: 38%;
}

.user-ex{
  margin-top: 80px;
}

.user-ex-img{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-left: -15px;
  border: 2px solid #fff;
}
.user-ex-img:first-of-type{
  margin-left: 0;
}
.user-rating .checked{
  color: orange;
}
.user-rating-div span{
  color:#ccc
}


/*----------- Brands--------- */

.brands{
  background-color: var(--light-color-primary);
  padding-block: 60px;
}
.brands-row{
  display: flex;
  align-items: center;
  padding-left: 7%;
}
.brand-text{
  font-size: 24px;
  font-weight: 700;
  width: fit-content;
  flex-shrink: 0;
}
.brand-owl .brand-div{
  /* border: 1px solid; */
  display: flex;
  align-items: center;
}
.brand-div p{
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  margin-left: 15px;
}
.brand-img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

/*----------- Support --------- */

.support-content{
  width: 75%;
}
.support-content h4, .support-content h6{
  color: var(--text-color-dark);
}
.support-content h4{
  font-size: 28px;
  font-weight: 700;
}
.support-content p{
  margin-bottom: 8px;
}
.support-content p i{
  margin-right: 10px;
  color: var(--color-primary);
}
.support-content button{
  font-size: 15px;
  padding: 12px 20px;
  margin-top: 28px;
}
.support-content button i{
  font-size: 12px;
  margin-left: 6px;
}
.support-img-div{
  width: 100%;
  aspect-ratio: 1;
  padding: 20px;
  /* margin-left: auto; */
  background-color: var(--light-color-primary-md);
  border-radius: 30px;
  /* border: 1px solid; */
}

/* -------Effortless Customer --------- */
/* .effort-row{
  margin-inline: 0px;
} */

.effortless-img-div{
  background-color: #9aca68;
  padding: 10px;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 30px;
  overflow: hidden;
}
.effortless-content{
  padding-left: 50px;
}
.effortless-content *{
  color: #f1f1f1;
}
.effortless-content .accordion-item{
  background-color: #9aca68;
  border-radius: 15px!important;
  
}
.effortless-content .accordion-button{
  border: none;
  font-weight: 600;
  color: #21360c;
}
.effortless-content .accordion-button:not(.collapsed){
  background-color: #b7d993;
  /* color: #fff; */
  color: #21360c;

  border-radius: 15px;
  overflow: hidden;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid #fff;
}
.effortless-content .accordion-body{
  background-color: #8cc252;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  /* border: none; */
}
.effortless-content .accordion-collapse{
  border: none;
}
.bottom-3{
  bottom: 30px;
}

/* Modern platform for all customer */
.myModerCard {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid #b7d993;
}
.card-icon-span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--color-primary);
  color: #fff;
}
.share-span{
  display: inline-flex;
  border-bottom: 2px solid ;
  margin-bottom: -3px;
  color: #939393;
  cursor: pointer;
}
.card-share-icon{
  transform: rotate(45deg);
}
.modern-card-content h5{
  color: var(--text-color-dark);
  font-weight: 700;
  font-size: 20px;
}
.modern-card-content p{
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

/* -------success stories------- */

.success-cont{
  background-color: var(--light-color-primary-md);
  border-radius: 15px;
  padding: 70px 40px;
}
.success-content{
  max-width: 700px;
}
.success-p{
  font-size: 22px;
  font-weight: 500;
}
.success-user-img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.success-user-content{
  font-weight: 500;
}

/* --------first step---------- */

.first-step-section{
  background-color: var(--color-primary);
  padding: 0;
}
.text-primary-light{
  color: #e1efd2;
}
.first-step-p{
  color: #f2f2f2;
  line-height: 1.6;
  font-size: 17px;
}
.first-step-row{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  padding-left: 7%;
  overflow: hidden;
  /* height: 450px; */
  /* padding-top: 20px; */
}
.first-step-div{
  max-width: 500px;
  padding: 5px;
}

.first-step-img{
  padding: 20px;
  background-color: #add58689;
  border-radius: 15px;
  position: relative;
  top: 150px;
  left: 50px;
  /* margin-top: 50px; */
  transform: rotate(-8deg);
  scale: 1.18;
}
.first-step-img img{
  border-radius: 15px;

}


/* footer */
footer{
  margin-top: 10px;
}
.footer-logo{
  display: flex;
  align-items: center;
}
.footer-logo img{
  width: auto;
}
footer h5{
  margin-bottom: 15px;
}
footer ul li{
  margin-bottom: 3px;
}
footer ul li a{
  padding: 3px;
}
.footer-social{
  display: flex;
  gap: 15px;
  font-size: 20px;
}








/* contact page */

.contact-card{
  padding: 25px 25px;
  border-radius: 10px;
}
.contact-card>div{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}
.contact-card-icon{
  width: 50px;
  height: 50px;
  background-color: var(--light-color-primary-md);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  color: var(--color-primary);
}
.contact-card h6{
  margin-bottom: 5px;
  color: var(--text-color-dark);
  font-weight: 700;
}

.services-row label{
  font-size: 14px;
}
.free-trial{
  background-color: var(--light-color-primary-md);
  padding: 60px 30px 60px 60px;
  border-radius: 10px;
}



/* Pricing page  */
.pricing-card{
  border-radius: 8px;
  overflow: hidden;
}
.most-popular-ab{
  position: absolute;
  top: 0;
  right: 0;
}
.pricing-card-icon{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-color-primary-md);
  border-radius: 6px;
  color: var(--color-primary);
}
.pricing-card ul li{
  margin-bottom: 10px;
  font-size: 14px;
}
.bg-primary-subtle{
  background-color: var(--light-color-primary-md);
}
.annual-btn:hover .bg-primary-subtle{
  color: #fff!important;
}
.pricing-bottom-card-btn{
  padding: 10px 25px;
  text-align: left;
  background-color: var(--light-color-primary);
  font-weight: 700;
  margin-top: 20px;
}



/* About Page */
.about-cont{
  background-color: var(--light-color-primary-md);
  border-radius: 20px;
  padding: 50px;
}
.about-heading{
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}
.about-sm-heading{
  font-weight: 900;
}
.about-subheading{
  font-weight: 700;
  line-height: 1.1;
}
.values-box{
  background-color: var(--color-primary);
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  border-radius: 20px;
  height: 180px;
  position: relative;
  z-index: 2;
}
.values-box .row{
  height: 100%;
}
.value-item{
  color: #eeeeee;
}
.value-item i{
  font-size: 28px;
}
.mission-vision-section{
  background-color: #fff;
  /* height: 400px; */
  padding: 30px;
  border-radius: 30px;
  margin-top: -100px;
  z-index: 1;
}
.border-mission{
  border-left: 1px solid #ccc;
}
.mission-row{
  /* height: 80%; */
  padding: 100px 100px 50px;
}
.mission-col{
  width: 100%;
  max-width: 60%;
  margin-inline: auto;
}