/*
Theme Name: ORSFX
Template: hello-elementor
Author: Omid Ataei
Version: 1.0
Description: Custom theme for ORSFX
Text Domain: orsfx
*/





.shine-effect {
  position: relative;
  overflow: hidden;
  display: inline-block;
  line-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  transition: transform 0.8s ease, border-radius 0.8s ease;
  border-radius: 0;
  z-index: 1;
}

.shine-effect:hover {
  transform: scale(1.03);
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 1s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.shine-effect:hover::after {
  left: 150%;
  opacity: 1;
}

.shine-effect img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: inherit;
}







/* خطوط ثابت */
.glow-lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.1) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.1) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.1) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.1) 100%);
  background-size: 1px 100%;
  background-position: 20% 0, 40% 0, 60% 0, 80% 0;
}

/* خطوط متحرک، با شبیه‌سازی delay متفاوت برای هر خط */
.glow-lines::after {
  content: "";
  position: absolute;
  top: -30%;
  left: 0;
  height: 200%;
  width: 100%;
  pointer-events: none;
  
  background-repeat: no-repeat;
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 75%, rgba(255,255,255,0.3) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 75%, rgba(255,255,255,0.3) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 75%, rgba(255,255,255,0.3) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 75%, rgba(255,255,255,0.3) 100%);
  background-size: 3px 20vh;
  background-position: 
    20% -40vh,   /* خط ۱ */
    40% -60vh,   /* خط ۲ - دیرتر میاد */
    60% -30vh,   /* خط ۳ - زودتر میاد */
    80% -70vh;   /* خط ۴ - خیلی دیرتر */
  animation: dropMulti 6s linear infinite;
}

@keyframes dropMulti {
  0% {
    background-position: 
      20% -40vh,
      40% -60vh,
      60% -30vh,
      80% -70vh;
  }
  100% {
    background-position:
      20% 120vh,
      40% 100vh,
      60% 130vh,
      80% 110vh;
  }
}

.btn-hover-green {
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background-image: linear-gradient(to right, #0ba360, #1FEA89, #1FEA89, #2bb673);
  background-size: 300% 100%;
  background-position: 0 0;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}

.btn-hover-green:hover {
  background-position: 100% 0;
}




.header-2 {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-80px);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.header-2.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 95;
}






.btn1-hover-green {
 
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background-image: linear-gradient(to right, #0ba360, #1FEA89, #1FEA89, #2bb673);
  background-size: 300% 100%;
  background-position: 0 0;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}

.btn1-hover-green:hover {
  background-position: 100% 0;
}


.btn2-hover-green {
 
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
 
  background-size: 300% 100%;
  background-position: 0 0;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}

.btn2-hover-green:hover {
  background-position: 100% 0;
}



.btn3-hover-green {
  width: 200px;
  height: 40px;
	margin: 0px 0px 0px 20px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background-image: linear-gradient(to right, #0ba360, #1FEA89, #1FEA89, #2bb673);
  background-size: 300% 100%;
  background-position: 0 0;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}

.btn3-hover-green:hover {
  background-position: 100% 0;
}






.shine2-effect {
  position: relative;
  overflow: hidden;
  
  
  margin: 0 !important;
  padding: 0 !important;
  transition: transform 0.8s ease, border-radius 0.8s ease;
  border-radius: 0;
  z-index: 1;
}

.shine2-effect:hover {
  transform: scale(1.03);
}

.shine2-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 1s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.shine2-effect:hover::after {
  left: 150%;
  opacity: 1;
}

.shine2-effect img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: inherit;
}




/* آیتم‌هایی که فقط برای بنگلادش دیده می‌شن */
body:not(.country-bd) .visible-only-bd {
  display: none !important;
}

/* آیتم‌هایی که در بنگلادش مخفی می‌شن */
body.country-bd .hidden-in-bd {
  display: none !important;
}

