/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/


.step-section {
  position: relative;
  height: 220px;
}

/*number */
.step-number {
 font-size: 127px;
    font-weight: 600;
    color: #e4e5e6;
    line-height: 1;
    position: absolute;
    left: 0;
    user-select: none;
    bottom: 0px !important;
}
.step-label {
    position: absolute;
    right: 117px;
    top: 80%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 14px;
    letter-spacing: 4px;
    color: #838485;
    font-weight: 600;
}
.box:hover .step-number {
  color: #83c558;
}





.why-badge {
    display: inline-block;
    background: #8ee36b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    width: max-content;
	margin-bottom: 5px;
}

.service-box{
  display:flex;
  align-items:flex-start;
  gap:20px;
  padding:20px 25px;
  border-radius:14px;
  background:#f3f6f9;
  transition:all 0.3s ease;
}

.service-img img{
  transition:filter 0.3s ease;
max-width: 66px !important;
}

.service-box h3{
  margin:0 0 8px;
  font-size:24px;
  font-weight:700;
  transition:color 0.3s ease;
}

.service-box p{
  margin:0;
  font-size:16px;
  color:#555;
  transition:color 0.3s ease;
}
.service-box:hover{
  background:#dadada;
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}


.read-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 30px 14px 55px;
    font-weight: 700;
    color: #111;
    overflow: hidden;
    border-radius: 50px;
    width: max-content;
}
/* Green circle on left */
.read-btn::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 36px;
  height: 36px;
  background: #8ee36b;
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: 1;
	
}
/* Text above animation */
.read-btn span {
  position: relative;
  z-index: 2;
  left: -34px;
}
.read-btn:hover::before {
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 50px;
}

.read-btn:hover {
  color: #0c2b12;
}
/* scrolling mar */
.scrolling-marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background: transparent;
  width: 100%;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 50s linear infinite;
}

.marquee-content span {
   display: inline-block;
    padding-right: 50px;
    font-size: 95px;
    font-weight: 700;
    color: #e4e5e6;}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-40%);
  }

}
.fusion-accordian .fusion-toggle-icon-unboxed .panel-heading .fusion-toggle-icon-wrapper {
    left: 0;
    display: none !important;
}
.fusion-accordian #accordion-65-1 .panel-title a {
    font-size: 25px !important;
    text-decoration: underline !important;
    font-weight: 600;
    color: black;
}
.fusion-accordian .panel-title .fusion-toggle-heading {
    margin-left: 0px;
}
.view-details-btn {
  display: inline-block;
  background: #8ee36b;         
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.view-details-btn:hover {
  background: black;
	color:white;
  transform: translateY(-2px);
  
}
.bg-img{
	right: 221px;
    z-index: 152;
}

/*img scrolling*/
.strategy-card {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s ease;
	margin-bottom: 22px;
	border: 1px solid #d8d8d8;
	margin-top: 5px;
}

/* Background image layer */
.card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark overlay */
.card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.card-content {
  position: relative;
  z-index: 2;
  color: #111;
  transition: color 0.4s ease;
}
.card-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.card-content p {
  color: #666;
  max-width: 480px;
}
.card-number {
  position: absolute;
  right: 40px;
  top: 35px;
  font-size: 48px;
  font-weight: 800;
  color: #111;
  z-index: 2;
  transition: color 0.4s ease;
}
.strategy-card:hover .card-bg {
  opacity: 1;
}

.strategy-card:hover .card-content,
.strategy-card:hover .card-content h3,
.strategy-card:hover .card-content p {
  color: #fff;
}
.strategy-card:hover .card-number {
  color: #8ee36b;  
}


.strategy-card.active .card-bg {
  opacity: 1;
}
.strategy-card.active .card-content,
.strategy-card.active .card-content h3,
.strategy-card.active .card-content p {
  color: #fff;
}
.strategy-card.active .card-number {
  color: #8ee36b;
}

.strategy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Different images */
.card-1 .card-bg { background-image: url("/wp-content/uploads/2026/02/imgi_1_process-thumb-01.webp"); }
.card-2 .card-bg { background-image: url("/wp-content/uploads/2026/02/imgi_1_process-thumb-02.webp"); }
.card-3 .card-bg { background-image: url("/wp-content/uploads/2026/02/imgi_1_process-thumb-03.webp"); }
.card-4 .card-bg { background-image: url("/wp-content/uploads/2026/02/imgi_1_process-thumb-04.webp"); }
.card-5 .card-bg { background-image: url("/wp-content/uploads/2026/02/imgi_1_process-thumb-05.webp"); }
.card-6 .card-bg { background-image: url("/wp-content/uploads/2026/02/imgi_52_portfolio-thumb-01.webp"); }

/* scoll line */
.srolln {	
  overflow-y: auto;
  max-height: 576px;
  padding-right: 20px;
}
.srolln::-webkit-scrollbar {
  width: 6px;
}
.srolln::-webkit-scrollbar-track {
  background: #0f1720;   
  border-radius: 10px;
}
.srolln::-webkit-scrollbar-thumb { 
  background: linear-gradient(#8ee36b, #8ee36b);
  border-radius: 10px;
}
.srolln::-webkit-scrollbar-thumb:hover {
  background: #cfff1a;	
}


