@import url("./fonts.css");
@import url("./animation.css");


/* header animation */


/* 
 .page-header button {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 10px;
  color: white;
  background: #08a6df;
  transition: background 0.3s;
} 

 .page-header button svg {
  flex-shrink: 0;
  margin-left: 5px;
  fill: currentColor;
}  */

/* .page-header button:hover {
  background: #0ab8f6;
} */

/* SECTION STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* section {
  margin: 100px 0 20px;
}

section:last-of-type {
  margin-bottom: 100px;
}

section .text {
  max-width: 700px;
  margin: 0 auto 50px;
}

section img {
  border-radius: 15px;
  background: whitesmoke;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}  */

/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
} 

.page-header.is-sticky {
  position: fixed;
  top: 0;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
   padding: 0px 20px; 
  backdrop-filter: blur(10px); 
  animation: slideDown 0.35s ease-out;
  z-index: 9;
  background-color: white;
  height: 75px;
}


/* 
.page-header.is-sticky img {
  max-width: 80%;
  height: 50px;
}

.page-header.is-sticky .line-btn {
  font-size: 14px;
  padding: 0px 5px;
} */



/* navbar */

.navbar {
  background: #ffffff;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

/* 
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  text-decoration: none;
  color: #122f48;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
} */

/* nav menu button */

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  /* z-index: 10; */
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #007647;
  /* transition: all 0.4s ease-in-out; */
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.navbar .menu-items {
  display: flex;
  align-items: center;
}

.navbar ul li {
  list-style: none;
  /* transition: 0.3s ease; */
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #2c2c2c;
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
 /* display: inline-block;*/
display:block;
}

.expand-btn:after {
  content: " \25BE";
  opacity: 1;
  margin-left: 5px;
  font-size: 18px;
  /* z-index: 10; */
}

.navbar .dropdown-menu {
  position: absolute;
  background: #fff;
  width: 220px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  top: 73px;
  border-top: 2px solid #007647;
  left: 0;
  opacity: 0;
  visibility: hidden;
  /* transition: all 0.4s ease; */
  /* -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%); */
}

.navbar .dropdown-menu li {
  transition: transform 0.3s ease-in-out;
}

.navbar .dropdown-menu li:hover{
  transform: translateX(-5px);
 
}

.menu-right {
  position: absolute;
  background: #fff;
  width: 220px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  top: 65px;
  border-top: 2px solid #007647;
  left: 0;
  opacity: 0;
  visibility: hidden;
  padding:8px;
  /* transition: all 0.4s ease; */
  /* -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 10%); */
  /* box-shadow: 0 20px 50px 0 rgb(0 0 0 /10%); */
  box-shadow: inset 0 0 4px 2px #e6e6e6;
  /* z-index: -4; */


}

.navbar .menu-right {
  top: 35px;
  right:70%;
  background: #fff;
  /* z-index: 99999; */
}



.menu-left {
    position: absolute;
    background: #fff;
    width: 220px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
    top: 65px;
    border-top: 2px solid #007647;
    left: 0;
    opacity: 0;
    visibility: hidden;
    padding: 8px;
    /* transition: all 0.4s ease; */
    /* -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 10%); */
    /* box-shadow: 0 20px 50px 0 rgb(0 0 0 /10%); */
    box-shadow: inset 0 0 4px 2px #e6e6e6;
    /* z-index: -4; */
}

.navbar .menu-left {
    top: 35px;
    right: 20%;
    background: #fff;
    /* z-index: 99999; */
}


.navbar .dropdown-menu {
  left: unset;
  right: 0;
}



.navbar .menu-item {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  padding: 0.5rem 0.5rem;
  font-size: 14px;
}

.navbar .menu-item:hover {
  color: #007647;
}

.menu-item.first-item {
  padding: 1.5rem 1rem;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-right {
  left: 40%;
  right:auto;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-left {
  /* right:20%;*/
    opacity: 1;
    visibility: visible;
}

/* mega menu  */

.navbar .mega-menu {
  position: absolute;
  margin: 0 auto;
  left: 130px;
  width: 80vw;
  top: 73px;
  opacity: 0;
  visibility: hidden;
  /* transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s; */
}

.mega-menu .content {
  background: #fff;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  margin: 0px auto;
  border-top: 2px solid #007647;
}

.mega-menu .content li {
  transition: transform 0.3s ease-in-out;
} 

.mega-menu .content li:hover{
  transform: translateX(-5px);
  z-index: 1;
}


.blog .content {
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: auto;
}

.content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 3rem;
}

/* .content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
} */

/* .content .col img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
  transform: scale(1.1);
} */

/* .content .col .menu-title {
  color: #ff5722;
  font-size: 1.2rem;
  line-height: 3rem;
  font-weight: bold;
}

.content .col p {
  line-height: 1.2rem;
  margin-top: 5px;
  color: #112f48;
} */

/* .content .col .mega-links {
  border-left: 1px solid #3c3c3c;
} */

/* .content .col .read-more {
  font-size: 16px;
  display: flex;
  padding-top: 1rem;
  color: #03a9f4;
  transition: color 0.3s ease;
  justify-content: flex-end;
  padding-right: 10px;
} */

.col .mega-links li,
.col .mega-links li a {
  padding: 0 1rem;
}

.menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* .content .col .read-more:hover {
  color: #ff5722;
} */

/* container */
/* .container {
  overflow: visible!important;
} */
/* .container p {
  color: #ffffff;
} 
/* 
h1 {
  font-weight: 700;
  line-height: 10vw;
  color: #ffffff;
  text-transform: uppercase;
} */

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #007647;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #007647;
}


/* Responsive style */

@media(max-width: 991px){
  .navbar {
    padding: 10px 20px;
  }

  .navbar .dropdown {
    position: relative;
    display: inline-block;
  /*  top: 15px;*/
  }

  .navbar .dropdown.contact {
    position: relative;
    display: inline-block;
    top: 0px;
  }

  .overflow {
    overflow: hidden;
  }

  .mega-menu .content {
 
    border-top: none;
  }

  /* .overlay {
    height: 100vh;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0.5;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  } */

  .overlay--active {
    opacity: 0.5;
    visibility: visible;
  }

  .menu-btn {
    display: flex;
  }

  .navbar .menu-items {
    position: fixed;
    height: 100vh;
    max-height: initial;
    overflow-y: auto;
    width: 80%;
    top: 73px;
    left: 0;
    background: #fff;
    display: block;
    transform: translateX(-200vw);
    transition: 0.6s ease-in-out;
  }

  .menu-items.open {
    transform: translateY(0);
  }

  .menu-items li:first-child {
    margin-top: 2px;
  }

  .menu-items li a {
    padding: 0px 1rem;
    display: inline-block;
    font-size: 18px;
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 0.5rem 0.5rem;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: 0px;
    width: 100%;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    /* transition: all 0.5s ease; */
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 72vw;
    /* margin-left: -10px; */
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right li {
    padding:0px 10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open+.sample {
    max-height: 100%;
    transform: scaleY(1);
    /* border-top: 2px solid #007647; */
    /* padding: 1rem 1rem 1rem 1rem; */
  }

  .expand-btn.open+.blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: 100%;
  }

  .navbar .sample {
    border-top: none;
  }


  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 14px;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 0 1rem 0 1rem;
  }

  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }

  .col .mega-links li {
    margin: 0;
    width: 100%;
  }
}

















/* slideraval-main */

.landing__content-background-main {
  width:450px;
  height: 500px;
  background-image: url("../images/rr.png");
  z-index: 1;
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  margin: 0 auto;
  border-radius: 50%;
  /* top: 50%; */
 position: absolute; 
 
}


@media screen and (max-width:767px){
  .landing__content-background-main {
    width:300px;
    height: 400px;
    background-image: url("../images/rr.png");
    z-index: 1;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    margin: 0 auto;
    border-radius: 50%;
    position: absolute;
   
  }
}

/* baner-pages */

.landing__content-background{
  width:500px;
  height: 500px;
  background-image: url("../images/rr.png");
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 auto;
  border-radius: 50%;
  position: absolute; 
   /* top: 50%; */
  /* right: 100px; */
}

 /* h1#neda::after{
  content: ''; 
  position: absolute;
   top: 0;
   left: 0; 
  right: 0; 
  bottom: 0; 
  background: radial-gradient(circle, rgba(26, 92, 18, 0.2), rgba(14, 110, 62, 0.8));
   border-radius:50%;
   box-shadow: 0 0 15px rgba(11, 150, 69, 0.3);
   z-index: 0;
   display: flex;
   justify-content: start;
   align-items: start;
}  */

/* start arrow */
.swiper-button-testmonials-next2.swiper-button-disabled svg {
  opacity: 0.5;
  pointer-events: none;
  fill: #d1d1d1;
}

/* در صورتی که به ابتدای اسلاید رسید، دکمه قبلی غیرفعال می‌شود */
.swiper-button-testmonials-prev2.swiper-button-disabled svg {
  opacity: 0.5;
  pointer-events: none;
  fill: #d1d1d1;
}


.swiper-button-testmonials-next1.swiper-button-disabled svg {
  opacity: 0.5;
  pointer-events: none;
  fill: #d1d1d1;
}

/* در صورتی که به ابتدای اسلاید رسید، دکمه قبلی غیرفعال می‌شود */
.swiper-button-testmonials-prev1.swiper-button-disabled svg {
  opacity: 0.5;
  pointer-events: none;
  fill: #d1d1d1;
}

.swiper-button-testmonials-next3.swiper-button-disabled svg {
  opacity: 0.5;
  pointer-events: none;
  fill: #d1d1d1;
}

/* در صورتی که به ابتدای اسلاید رسید، دکمه قبلی غیرفعال می‌شود */
.swiper-button-testmonials-prev3.swiper-button-disabled svg {
  opacity: 0.5;
  pointer-events: none;
  fill: #d1d1d1;
}

/* end arrow */

#client__swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  /* رنگ مات برای نقاط غیرفعال */
  width: 10px;
  height: 10px;
  opacity: 1;
  transition: background-color 0.3s ease;
  /* انیمیشن برای تغییر رنگ */
}

#client__swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  /* رنگ سفید توپر برای نقطه‌ی فعال */
}

#client__swiper-pagination {
  position: absolute;
  width: 20% !important;
  z-index: 50;
}


.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(58, 189, 209, 0.8),
      rgba(58, 189, 209, 0.6));
  pointer-events: none;
}


.btn-arrow {
  position: absolute;
  background-color: aquamarine;
  width: 50px;
  height: 50px;
  bottom: 0;
}

.pbmit-service-style-2 .pbmit-svg-btn a {
  padding: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: inherit;
  background: var(--pbmit-xcoach-white-color);
}

.pbmit-service-style-2 .pbmit-svg-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

.pbmit-service-style-2 .pbmit-svg-btn a svg {
  height: 15px !important;
  width: 15px !important;
  margin-left: 0 !important;
}


.pbmit-meta-line>*:not(:last-child)::after {

  content: "";
  position: absolute;
  /* bottom:20px; 
    left:-10px; 
    /* top: 0%;  
     right: 12px; */
  width: 7px;
  height: 7px;
  border-radius: 50px;
  margin: 11px;
  background-color: #007648;
  -khtml-transform: translateX(0%) translateY(-50%);
  -moz-transform: translateX(0%) translateY(-50%);
  -ms-transform: translateX(0%) translateY(-50%);
  -o-transform: translateX(0%) translateY(-50%);
  transform: translateX(0%) translateY(-50%);
}



[class^="pbmit-base-icon-"]:before,
[class*=" pbmit-base-icon-"]:before {
  font-family: "pbminfotech-base-icons";
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



.pbmit-base-icon-star:before {
  content: '\e843';
  color: white;
  display: inline-block;
  width: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/*---scroll-ourteam------------------------------------------*/
.scrollbar {
  direction: ltr;
  height:500px;
  text-align: justify;
  padding: 3% 3%;
  color: #212121 !important;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-bottom: 15px;
  border-radius: 10px;
  scrollbar-width: 5px;
  /* تنظیم عرض اسکرول بار */
  scrollbar-color: #007647 #ffffff;
  scroll-behavior: smooth;

}

.force-overflow {
  min-height: 100%;
}

#style-2::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(108, 9, 9, 0.85);
}

#style-2::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #007648;
}

/*----------------------*/



/* scroll-mainpage */
.scrollbar-main {
  direction: ltr;
  height: 550px;
  /* text-align:justify; */
  padding: 3% 3%;
  color: #212121 !important;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-bottom: 15px;
  border-radius: 10px;
  scrollbar-width: 5px;
  /* تنظیم عرض اسکرول بار */
  scrollbar-color: #007647 #ffffff;
  scroll-behavior: smooth;

}

.force-overflow {
  min-height: 100%;
}

#style-3::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

#style-3::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(108, 9, 9, 0.85);
}

#style-3::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #007648;
}

/*----------------------*/




/* teams */

.pbmit-team-style-1 .pbminfotech-box-team-position::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background-color: #007648;
}



.swiper-wrapper .box-team:hover {
  transition: all .5s linear;
  transform: translateY(-4px);
  cursor: pointer;

}


.icon-image {
  width: 30px;
  height: 30px;
  margin: auto;

}

.tags-ekhtelalat a {
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  padding: 10px 0px;
}

.tags-ekhtelalat a:hover {
  background-color: #007647;
  color: #fff;
}


.odometer-inside {
  direction: ltr;
}

#style-6 .pbmit-ihbox-icon {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background-color: #007648;
}



/*  تنظیمات اولیه برای خطوط اسلایدر خدمات*/
line {
  stroke: #191919;
  stroke-width: 2;
  /* ضخامت اولیه خطوط */
  transition: stroke 0.1s ease;
  /* انتقال رنگ با زمان 0.3 ثانیه */
  position: absolute;
  top: 15px;
  left: 15px;
}

/* تعریف انیمیشن برای تغییر رنگ و بازگشت */
@keyframes changeColor {
  0% {
    stroke: #191919;
  }

  50% {
    stroke: #fff;
  }

  100% {
    stroke: #191919;
  }
}

/* تغییرات رنگ خطوط هنگام هاور روی کل SVG */
.swiper-slide:hover svg .line1 {
  animation: changeColor 1s ease-in-out forwards;
}

.swiper-slide:hover svg .line2 {
  animation: changeColor 1s ease-in-out 0.2s forwards;
}

.swiper-slide:hover svg .line3 {
  animation: changeColor 1s ease-in-out 0.4s forwards;
}


.swiper-wrapper .swiper-slide .box-services {

  transition: transform 0.1s ease;

}

.swiper-wrapper .swiper-slide .box-services:hover img {

  transform: scale(1.2);

}


/* تعریف انیمیشن برای تغییر رنگ و بازگشت */
@keyframes changeColorBtn {
  0% {
    stroke: #007647;
  }

  50% {
    stroke: #fff;
  }

  100% {
    stroke: #fff;
  }
}

.line-btn:hover svg .line1 {
  animation: changeColorBtn 1.5s ease forwards;
  /* انیمیشن با زمان 1.5 ثانیه */
}

.line-btn:hover svg .line2 {
  animation: changeColorBtn 1.5s ease 0.3s forwards;
  /* انیمیشن با تاخیر 0.3 ثانیه */
}

.line-btn:hover svg .line3 {
  animation: changeColorBtn 1.5s ease 0.6s forwards;
  /* انیمیشن با تاخیر 0.6 ثانیه */
}



/* arrow slider animation */

@keyframes changeColorslider {
  0% {
    stroke: #fff;
    /* رنگ اولیه */
  }

  50% {
    stroke: #000;
    ;
  }

  100% {
    stroke: #fff;
    /* برگشت به رنگ اولیه */
  }
}

.line-arrow svg:hover .line4 {
  animation: changeColorslider 0.5s ease-in-out forwards;
}

.line-arrow svg:hover .line5 {
  animation: changeColorslider 0.6s ease-in-out 0.2s forwards;
}

.line-arrow svg:hover .line6 {
  animation: changeColorslider 0.8s ease-in-out 0.4s forwards;
}




/* sidbar-porbazdid and category */

.porbazdid {
  margin: 10px 0px;
  padding: 10px;
  background-color: #fff;
  border-radius: 50px;
  /* width: 200px; */
  /* text-align: center; */
  position: relative;
  overflow: hidden;
  /* جلوگیری از نمایش قسمت‌های خارج از باکس */
  color: #000;
  transition: color 0.5s ease, box-shadow 0.5s ease;
  /* ترنزیشن برای رنگ و سایه */
  z-index: 1;
}

.porbazdid::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  /* شروع از خارج سمت راست */
  width: 100%;
  height: 100%;
  background-color: #007647;
  /* رنگ پس‌زمینه اسلاید */
  transition: right 0.5s ease-in-out;
  /* ترنزیشن برای حرکت رنگ */
  z-index: -1;

}

.porbazdid:hover::before {
  right: 0;
  /* حرکت رنگ از راست به چپ */
}

div.porbazdid:hover li a {
  color: #fff;

}

div.porbazdid:hover svg path {
  fill: #fff;

}

div.porbazdid li {
  list-style-type: circle !important;
}



/* animate font */

div.animate span {
  display: inline-block;
}


div.animate span span {
  display: inline-block;
  width: auto;
  /* margin-right: -0.3em; */
  animation: animate-characters 1.2s var(--index) forwards;
  opacity: 0;
  position: relative;
}

@keyframes animate-characters {
  0% {
    bottom: -0.2em;
    opacity: 1;
    /* color: #3E5C76; */
  }

  50% {
    bottom: 0.2em;
    /* color: #EC058E; */
  }

  100% {
    bottom: 0;
    opacity: 1;
  }
}


/* animation-border */

.gradient-border {
  --borderWidth: 3px;
  background: #fff;
  position: relative;
  border-radius: var(--borderWidth);
}

.gradient-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #074d20, #ffffff, #147c2b, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 5s ease alternate infinite;
  background-size: 300% 300%;
}


@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



/* animation-contact */

.gradient1-border {
  --borderWidth: 3px;
  background: #fff;
  position: relative;
  border-radius: var(--borderWidth);
}

.gradient1-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(120deg, #074d20, #ffffff, #147c2b, #13471e, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradients 5s ease alternate infinite;
  background-size: 300% 300%;
}


@keyframes animatedgradients {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* social-media */
.social-media-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.social-media-buttons li {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  cursor: pointer;
  display: grid;
  /* place-items: center; */
  transition: all 0.3s;
  border: 1px solid #fff;
}

.social-media-buttons li a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  /* color: gray; */
}

.social-media-buttons li:hover {
  background-color: white;
  border: 1px solid white;
  border-radius: 50px;
}

.social-media-buttons li a svg path {
  height: 24px;
  width: 24px;
  /* stroke: gray; */
  /* stroke-width: 1.75; */
  transition: 0.5s all;
}

.social-media-buttons li:hover svg path {
  fill: #007647;
  transform: rotate(360deg);
  /* stroke-width: 1.75; */
}

/* social-media-header */
.social-media-buttons-header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.social-media-buttons-header li {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  cursor: pointer;
  display: grid;
  /* place-items: center; */
  transition: all 0.3s;
  border: 1px solid #fff;
}

.social-media-buttons-header li a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  /* color: gray; */
}

.social-media-buttons-header li:hover {
  background-color: white;
  border: 1px solid white;
  border-radius: 50px;
}

.social-media-buttons-header li a svg path {
  height: 24px;
  width: 24px;
  /* stroke: gray; */
  /* stroke-width: 1.75; */
  transition: 0.5s all;
}

.social-media-buttons-header li:hover svg path {
  fill: #007647;
  transform: rotate(360deg);
  /* stroke-width: 1.75; */
}



input[type="checkbox"] {
  background-color: #007647;
  /* رنگ پس‌زمینه زمانی که انتخاب شده */
  border-color: #007647;
  accent-color: #007647;
  /* رنگ مرز */
}

/* input:not([name="rating-2"][type="radio"]){
input:not([type="radio"]):not([name="radio"]) {
  background-color: #f0f8ff;
} 
} */



/*input[type="radio"]:not([name="rating-2"]) {
  background-color: #007647;*/
  /* رنگ پس‌زمینه زمانی که انتخاب شده */
  /*border-color: #007647;
  accent-color: #007647;
}*/



/* stepper */

.stepper-container {
  /* width:800px; */
  margin: auto;
  padding: 20px;
}

.progress-line {
  position: absolute;
  width: 90%;
  height: 4px;
  right:27px;
  background-color: #e5e7eb;
  margin-top: -7px;

}

.progress-bar {
  position: absolute;
  height: 4px;
  background-color: #007647;
  width: 0%;
  transition: width 0.5s ease-in-out;
}

.step {
  transition: background-color 0.3s ease, transform 0.3s ease, border 0.3s ease;
  cursor: pointer;
}

/* تنظیم جهت استپ‌ها از راست به چپ */
#stepper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: 41px;
  z-index: 1;
  /* margin-bottom: 30px; */
 
}

@media only screen and (max-width:600px) {
  .progress-line {
    position: absolute;
    width: 65%;
    height: 4px;
    right:54px;
    background-color: #e5e7eb;
    margin-top: -7px;
  
  }

   }
 
   @media only screen and (max-width:540px) {
    .progress-line {
     display: none;
  }
     }



.btn-hover {
    /*background-color: #007647;*/
    background-color: var(--primary-color) !important;
    color: white;
    border: 1px solid #007647;
    border-radius: 50px;
}

.btn-hover:hover {
  background-color: white !important;
  color: #007647;
  border: 1px solid #007647;
  border-radius: 50px;
  fill: #007647;
  transition: all 0.4s ease-out 0.0s;
 
}

.btn-hover:hover svg path {
  fill: #007647;
}


.btn1-hover:hover {
    /*background-color: #007647;*/
    background-color: var(--primary-color);
    color: white;
    border: 1px solid #007647;
    border-radius: 50px;
    fill: #fff;
    transition: all 0.4s ease-out 0.0s;
}

.btn1-hover:hover svg path {
  fill: #fff;
}

img.brightness:hover {
  filter: brightness(0.8);
}




.line-anim{
  position: relative;
  top: 50%;  
  width: 20em;
  margin: 0 auto;
  border-right: 2px solid rgba(255,255,255,.75);
  font-size: 180%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(-50%);    
}

/* Animation */
/* .anim-typewriter{
animation: typewriter 4s steps(30) 1s 1 normal both,
           blinkTextCursor 500ms steps(30) infinite normal;
}
@keyframes typewriter{
from{width: 0;}
to{width: 18em;}
}
@keyframes blinkTextCursor{
from{border-right-color: rgba(255, 255, 255, 0);}
to{border-right-color: transparent;}
}

 */

/* .text-container {
  background: #000;
  width: 100vw;
  height: 100vh;
  font-weight: bold;
  font-size: 36px;
  position: relative;
  overflow: hidden;
} */

/* .text-container > p {
  animation: come2life linear 10s infinite;
  transform-origin: center center;
  animation-fill-mode: forwards; /* این خط را اضافه کنید */

  /* opacity: 0;
  width: 580px;
  height: 230px;

  backface-visibility: hidden;
} */

/* .text-container > p:nth-child(1) {
  left: 30vw;
  top: 30vh;
  animation-delay: 0s;
}


@keyframes come2life {
  0% {
      transform: scale3d(0,0,1) rotate(0.02deg);
      opacity: 1;
      filter: blur(10px);
     
  }
  25% {
      transform: scale3d(1,1,1) rotate(0.02deg);
      opacity: 0;
      filter: blur(0px);
      filter:none;
  }
  40% {
      opacity: 1;
      filter: blur(0px);
  }

 100% {
    opacity:1;
    filter: blur(0px);
  }

} */ */


.ml2 {
  font-weight: 900;
  font-size: 3.5em;
}

.ml2 .letter {
  display: inline-block;
  line-height: 1em;
}



/* 
section.comment-section {
  width: 100%;
  height: 100vh;
  background-color: white; 
  transition: background-color 0.3s ease; 
}

section.comment-section.scrolled {
  background-color: green;
} */

/* section.comment-section.stickyy {
  position: sticky;
  top: -500px; 
  bottom: 500px;
} */


