
.nav-link:after {
  margin-top: 15px;
  display: block;
  content: '';
  border-bottom: solid 4px orange;  
  transform: scaleX(0);  
  transition: transform 0ms ease-out;
}

.nav-link.active:after { 
  transform: scaleX(1);
  transform-origin:  0% 50%; 
  transition: transform 5000ms ease-in;
}

 
.blog-four-content1 {
    text-align: justify;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
     scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
 
.blog-four-content1::-webkit-scrollbar {
    display: none;
}
 
#whos-tab_head{
  font-size: large;
  font-weight: bolder;
}


@media (min-width: 992px) {
  .custom-col {
    width: 14.2%;
  }
}

 
.how_step_heading {
  font-size: larger;
  font-weight: bolder;
  color: black;  
}

.nav-link.active .how_step_heading {
  font-size: larger;
  font-weight: bolder;
  color: orange; 
}


.blog-four {
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;    
}

.blog-four:hover {
    border-color: var(--primary);
}

 

p.text-muted {
    font-weight: bolder;
}

 
  
#prev-slide {
  left: 10px;
}

#next-slide {
  right: 10px;
}
 

.slider-nav-btn {
  position: absolute;
  top: 50%;
  color: #fff;     
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;

}
.slider-nav-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}



 
.read-more {
  color: #007bff;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}
.short-text .full-text{
     text-align: justify;
}

@media (max-width: 768px) {
    .full-text {
        display: none;
    }

    .short-text {
        display: inline;
    }
}


 

/*     ----------------------------  slider  ----------------------------*/
 
/*-----------------------------------------*/

.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
   justify-content: left;
  z-index: 1;
}

   

.slider {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 600%;  Updated to 600% for 6 slides */
    width: 1100%;  /* 11 slides × 100% */
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;  
}

.slide {
  /* width: 16.67%;   */
  /* width: 16.67%; 100 / 14 = 7.14% */
  width: 9.09%; /* 100 / 11 ≈ 9.09% */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}
 
.center-content {
  position: relative;
  z-index: 2;
  background-color: #fa7d09;
  padding: 10px;
  width: 48%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0% 180% 80% 0% / 0% 200% 160% 0%

 }



.inner-content {
  padding-left: 100px;
}

.inner-content h1 {
  font-size: 30px;
  font-weight: 900;
  color: white;
}

.inner-content p {
  text-align: justify;
  width: 80%;
  margin-bottom: 0px;
  color: white;
  color: #0e0e0e;
  font-weight: bold;

 
}


.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  z-index: 15;
  font-size: 24px;
}

#previousslider {
  left: 10px;
}

#nextslider {
  right: 10px;
}


/* Media Queries for Responsiveness */
 @media (max-width: 768px) 
{
  .center-content {
  width: 100%;
  padding: 15px;
  border-radius: 0;
  bottom: 0;  
  margin-top: 322px;
  background-image: url('assets/images/elements/about.png');
  }

  .blinking-text{
    margin-bottom: 2px;
  }
  
  .slide {
  display: block;
  }

  .slide img {
  width: 100%;
  height: auto;
  display: block;
  height: 322px;
  }
  .inner-content {
  padding-left: 20px; 
  margin-top: -275.5px;
  }

  .inner-content h1 {
  font-size: 30px;
  line-height: 45px;
  position: absolute;
  margin-top: -69px;
  }
 

 .inner-content p {
  color: white;
  width: 100%;
  line-height: 22px;
  margin-top: 60px;
  }

  .btn.btn-four {
  padding: 0.9375rem 4.5rem;
  text-transform: capitalize;
  }

  .slider-nav-btn {
  padding: 8px;
  font-size: 18px;
  }

  .slider-container {
  position: relative;
  width: 100%;
  height: 145vh;
  overflow: hidden;
  z-index: 1;
  }



} 
 

/*--------------side button---------------*/

  .slide_banner_button{
    margin-top: 12px;
    background-color: #0b0b0b;
  }

  .slide_banner_button:hover {
    background-color: #fa7d09;
    border-color: var(--primary);
  }

  .banner_heading{
    margin-bottom: 0px;
    margin-top: 14px;
    font-size:20px;
    line-height: 80px;
  }
  .banner_summary{
    margin-bottom: 0px;
    font-size:19px;
    line-height: 40px;
  }


/*  ----------------------------  who is step2tncdbr  ----------------------------*/

#who_step2tncdbr_img{
border-radius: 50px;
} 

.arrow-buttons {
display: none;  
}

.tab-arrow {
background-color: orange;  
border: 1px solid #ccc;  
padding: 5px 10px; 
cursor: pointer;  
margin: 0 5px;  
}

.tab-arrow:hover {
background-color: #fdf3e9; 
border: 1px solid black;
}

@media (max-width: 768px) {
.arrow-buttons {
display: flex;
justify-content: right;
margin-top: -50px;
}
.arrow-buttons_how {
position: absolute;
}

.tab-arrow  {
background-color: orange;  
width: 50px;  
height: 50px;
border-radius: 50%;  
display: flex;
justify-content: center;
align-items: center;
border: white;
}


.tab-arrow  i {
font-size: 20px;  
}

.tab-arrow:hover {
background-color: #333;  
color: #fff;  
} 


#who_step2tncdbr_img{
margin-top: 32px;
border-radius: 10px;
} 
}
/*  ----------------------------  how its working ----------------------------*/

.arrow-buttons_how {
display: none;
}
.tab-arrow_how {
background-color: orange;
border: 1px solid black;
padding: 5px 10px;
cursor: pointer;
margin: 0 5px;

}

.tab-arrow_how:hover {
background-color: #fdf3e9; 
border: 1px solid black;
}

@media (max-width: 768px) {
.arrow-buttons_how {
display: flex;
justify-content: right;
}

.tab-arrow_how {
background-color: orange;  
width: 50px;  
height: 50px;
border-radius: 50%;  
display: flex;
justify-content: center;
align-items: center;
border: white;
margin-top: -30px;
}

.tab-arrow_how i {
font-size: 20px;  
}

.tab-arrow_how:hover {
background-color: #333;  
color: #fff;  
} 
.nav-link:after{
display: none;
}

}
