/* Banner Container - Full viewport height */
.ther-banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.ther-banner-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.ther-banner-item {
  min-width: 100%;
  height: 96vh;
  position: relative;

}

.ther-banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ther-banner-content {
  position: absolute;
  top: 38%;
  left: 20%;
  transform: translate(-20%, -30%);
  color: white;
  /* text-shadow: 0 2px 4px rgba(0,0,0,0.5); */
  z-index: 5;
  width: 90%;
  max-width: 800px;
}

.ther-banner-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease; 
}
.ther-banner-title strong{
  /* display: block; */
  color:var(--main-blue-color);
  font-family:var(--font-bold);
}
.ther-banner-desc {
  font-size: 2rem;
  line-height:3rem;
  margin: 2rem auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.ther-banner-btn {
  padding: 10px 20px;
  background-color: var(--main-blue-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}
.ther-banner-btn a{
  color:#fff;
}

.ther-banner-btn:hover {
  background-color: white;
  background-color: var(--main-color);
}
.ther-banner-btn:hover a{
  color:#fff;
}

.ther-banner-item.active .ther-banner-title,
.ther-banner-item.active .ther-banner-desc,
.ther-banner-item.active .ther-banner-btn {
  opacity: 1;
  transform: translateY(0);
}

.ther-indicators {
  position: absolute;
   bottom:0px; 
  left: 0;
  right: 0;
  display: flex;
  /* padding: 0 20px; */
  z-index: 10;
}

.ther-indicator {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 2px;
  flex: 1;
  justify-content: center;
  padding: 10px 5px;
  background-color: #f2f2f2;
}

.ther-indicator-img {
  width: 80px;
  height: 80px;
  border-radius: 3px;
  padding:5px;
  object-fit: contain;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.ther-indicator-text {
  font-weight: 500;
  white-space: nowrap;
}
.ther-indicator-text strong{
  display: block;
  font-size: 24px;
  color:var(--main-blue-color);
  font-family: var(--font-bold);
}

.ther-indicator-line-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255,255,255,0.3);
  overflow: hidden;
}

.ther-indicator-line {
  height: 100%;
  background-color: white;
  width: 0;
}

.ther-indicator.active{
  background-color: var(--main-color);
  color:#fff;
}
.ther-indicator.active strong{
 color:#fff; 
}
  .ther-indicator.active .ther-indicator-img { filter: grayscale(100%) brightness(1000%) contrast(100);}

@media (max-width: 1024px) {
  /* .ther-banner-item {
      height: 350px;
  } */
  .ther-banner-content {
    top: 48%;
    left: 20%;
  }
  .ther-banner-title {
    font-size: 3rem !important;
  }
    .ther-banner-content {
    top: 48%;
    left: 20%;
  }
  .ther-banner-desc {
      font-size: 2rem;
  }
  
  .ther-indicator-text {
      font-size: 13px;
  }
  
  .ther-indicator-img {
      width: 40px;
      height: 40px;
  }
}

@media (max-width: 768px) {
  /* .ther-banner-item {
      height: 300px;
  } */
  
  .ther-banner-content {
    top: 48%;
    left: 20%;
  }

  .ther-banner-title {
      font-size: 3rem !important;
  }
  
  .ther-banner-desc {
      font-size: 3rem;
      margin-bottom: 1rem;
  }
  
  .ther-indicators {
      bottom: 0;
  }
  
  .ther-indicator {
      flex-direction: column;
      gap: 5px;
      padding: 0 5px 5px;
  }
  
  .ther-indicator-text {
      font-size: 12px;
  }
  .ther-indicator-text {
    display: none;
  }
  
  .ther-indicator-img {
      width: 50px;
      height: 50px;
  }
}

@media (max-width: 480px) {
  /* .ther-banner-item {
      height: 250px;
  } */
  
  .ther-banner-title {
      font-size: 3rem;
  }
  
  .ther-banner-desc {
      display: none;
  }
  
  .ther-indicator-text {
    display: none;
      font-size: 11px;
  }
  .ther-indicator-img {
    margin-top:5px;
    width: 50px;
    height: 50px;
}
}


/* =====Popular Platforms =====*/

.ther-pp-container {
  width: 100%;
  background: url("../picture/popular-platforms-bg.png");
  padding: 5rem 0;
  box-sizing: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ther-pp-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom:3rem;
}
.ther-pp-header h1 {
  color: #212121;
  font-size: 4rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom:15px;
}
.ther-pp-header h1::after{
  content:"";
  position: absolute;
  width:10%;
  height:5px;
  background-color: var(--main-color);
  left:45%;
  bottom:-5px;

}
.ther-pp-header p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto;
}
.ther-pp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(25%, 1fr));
  /* gap: 20px; */
  border:1px solid #eee;
}
.ther-pp-card {
  background-color: #fff;
   padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  border:1px solid #eee;
  cursor: pointer;
}
.ther-pp-card .cardimg{
 display: flex;
 align-items: center;
 justify-content: center;
 object-fit: contain;
 height:100px;
}
.ther-pp-card .cardimg img{
  max-width:100%;
  height:auto;
}
.ther-pp-card:hover {
  /* transform: translateY(-5px); */
   color:var(--main-color);
}
.ther-pp-card:hover h3{
  color:var(--main-color);
}
.ther-pp-card img { 
  filter: grayscale(100%);
}
.ther-pp-card:hover img { 
  filter: none;
}
.ther-pp-card img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.ther-pp-card h3 {
  color: #212121;
  font-size: 18px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .ther-pp-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .ther-pp-header h1 {
      font-size: 24px;
  }
  .ther-pp-header p {
      font-size: 14px;
  }
}
@media (max-width: 480px) {
  .ther-pp-grid {
      grid-template-columns: 1fr;
  }
  .ther-pp-header h1 {
      font-size: 22px;
  }
}

/*----========Featured Services begin===============*/
    .ther-fs-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 20px;
  }


  .ther-fs-title {
      font-size: 4rem;
      padding-right:50px;
      position: relative;
      padding-bottom:20px;
  }
  .ther-fs-title::after{
    content: "";
    width:80px;
    height:4px;
    position: absolute;
    bottom:0px;
    left:0px;
    background-color: var(--main-color);
   }

  .ther-fs-description {
      line-height: 1.6;
      margin-bottom: 30px;
      color: #555;
	  font-size:16px;
  }


.ther-fs-header {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}


@media (max-width: 768px) {
  .ther-fs-header {
      display: flex;
      align-items: flex-start;
      gap: 20px;
  }
  
  .ther-fs-title {
      flex: 0 0 35%; 
      margin-bottom: 0;
  }
  
  .ther-fs-description {
      flex: 0 0 65%; 
      margin-bottom: 0;
      padding-top: 5px;
  }
}


@media (max-width: 480px) {
  .ther-fs-header {
      gap: 15px;
  }
  
  .ther-fs-title {
      flex: 0 0 30%; 
      font-size: 1.1rem;
  }
  
  .ther-fs-description {
      flex: 0 0 70%; 
      font-size: 0.85rem;
  }
}

  .ther-fs-carousel {
      position: relative;
      overflow: hidden;
      border: 1px solid #ddd;

  }

  .ther-fs-carousel-inner {
      display: flex;
      transition: transform 0.5s ease;
  }


  .ther-fs-carousel-item {
      min-width: 100%;
      box-sizing: border-box;
      /* padding: 30px 0; */
      display: flex;
      justify-content: center;
  }


  .ther-fs-carousel-item:nth-child(1) {
      background-color: #f0f7f7;
  }
  .ther-fs-carousel-item:nth-child(2) {
      background-color: #f7f0f0;
  }
  .ther-fs-carousel-item:nth-child(3) {
      background-color: #f0f0f7;
  }
  .ther-fs-carousel-item:nth-child(4) {
      background-color: #f0f7f0;
  }


  .ther-fs-image-container {
      width: 60%;
  }

  .ther-fs-carousel-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }


  .ther-fs-carousel-arrow-container {
      position: absolute;
      top: 50%;
      left: 20%;
      width: 60%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      z-index: 10;
  }

  .ther-fs-carousel-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.8);
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }

  .ther-fs-carousel-arrow:hover {
      background-color: rgba(255, 255, 255, 1);
      transform: scale(1.1);
  }
  
  .ther-fs-services {
      display: flex;
      flex-wrap: nowrap;
      background-color:var(--main-bg-3-color);
      margin: 0 auto;
      width: 60%;
      position: absolute;
       bottom: 0; 
      left: 20%; 
      z-index: 20; 
  }

  .ther-fs-service-item {
      flex: 1; 
      padding: 10px 15px;
      color: #fff;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative; 
      box-sizing: border-box;
      /* white-space: nowrap; 
      overflow: hidden;
      text-overflow: ellipsis;  */
      min-height:50px;
      max-height:70px;
      line-height:1.8rem
  }

  .ther-fs-service-item:hover {
    background-color: var(--main-blue-color);
  }

  .ther-fs-service-item.active {
      background-color: var(--main-blue-color);
  }
  
  .ther-fs-service-item:hover a,  .ther-fs-service-item.active {
    color:#fff;
  }
 


  @media (max-width: 768px) {
      .ther-fs-title {
          font-size: 1.5rem;
      }

      .ther-fs-carousel {
          padding-bottom: 50px;
      }

      .ther-fs-carousel-arrow {
          width: 34px;
          height: 34px;
          font-size: 1rem;
      }

      .ther-fs-service-item {
          padding: 8px 10px;
          font-size: 0.85rem;
      }

      .ther-fs-image-container {
          width: 70%;
      }

      .ther-fs-services {
          width: 70%;
          left: 15%; 
      }

      .ther-fs-carousel-arrow-container {
          left: 15%;
          width: 70%;
      }
  }

 
  @media (max-width: 480px) {
      .ther-fs-title {
          font-size: 1.2rem;
      }

      .ther-fs-description {
          font-size: 0.9rem;
          margin-bottom: 20px;
      }

      .ther-fs-carousel {
          padding-bottom: 45px;
          border: none;
          box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }

      .ther-fs-carousel-arrow {
          width: 30px;
          height: 30px;
          font-size: 0.9rem;
      }

      .ther-fs-service-item {
          padding: 6px 4px;
          font-size: 0.75rem;
      }

      .ther-fs-image-container {
          width: 90%;
      }

      .ther-fs-services {
          width: 90%;
          left: 5%; 
          /* padding: 8px 0; */
      }

      .ther-fs-carousel-arrow-container {
          left: 5%;
          width: 90%;
      }

    
      .ther-fs-carousel-arrow:active,
      .ther-fs-service-item:active {
          transform: scale(0.95);
      }
  }

 
  @media (max-width: 360px) {
      .ther-fs-service-item {
          font-size: 0.7rem;
          padding: 5px 2px;
      }
  }
/*----========Featured Services end===============*/

/*-----------========Meet Us at the Upcoming Events begin=====------------------------*/
  /* Global container styles */
  .ther-events-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
}

/* Title styles */
.ther-events-title {
    font-size: 4rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
    position: relative;
    padding-bottom:15px;
}
.ther-events-title::after{
  content:"";
  position: absolute;
  width:10%;
  height:5px;
  background-color: var(--main-color);
  left:45%;
  bottom:-5px;

}
/* Description text styles */
.ther-events-desc {
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

/* Carousel container styles */
.ther-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

/* Carousel images container styles - showing space for three images */
.ther-carousel-images {
    display: flex;
    overflow: visible;
    width: 100%;
    max-width: 1000px;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Carousel item container */
.ther-carousel-item {
    flex: 0 0 auto;
    transition: all 0.5s ease;
    max-width: 70%;
    height: auto;
    opacity: 0;
    position: absolute;
    transform: scale(0.8);
    pointer-events: none;
    z-index: 10;
}

/* Carousel image styles */
.ther-carousel-img {
    width: 100%;
    height: auto;
}

/* Active item style (currently displayed item) */
.ther-carousel-item.active {
    opacity: 1;
    position: relative;
    transform: scale(1);
    pointer-events: auto;
}

/* Previous item preview (left side) */
.ther-carousel-item.prev {
    opacity: 0.6;
    left: 0;
    transform: translateX(-70%) scale(0.8);
    pointer-events: auto;
    z-index: 0;
}

/* Next item preview (right side) */
.ther-carousel-item.next {
    opacity: 0.6;
    right: 0;
    transform: translateX(70%) scale(0.8);
    pointer-events: auto;
    z-index: 0;
}

/* Event data attributes - hidden from view */
.event-data {
    display: none;
}

/* Carousel button styles */
.ther-carousel-btn {
    background-color: #00bcd4;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Button hover effect */
.ther-carousel-btn:hover {
    background-color: #0097a7;
}

/* Event information container styles */
.ther-event-info {
    max-width: 600px;
    margin: 0 auto;
}

/* Event date styles */
.ther-event-date {
    display: block;
    font-weight: bold;
    margin: 2rem auto;
    color: #545454;
    font-size: 1.5rem;
}
.ther-event-info img{
  width:30px;
  height:30px;
  margin-right:10px;
 
}

/* Event text description styles */
.ther-event-text {
    font-size: 2rem;
    color: #333;
}

/* Responsive styles for tablet devices */
@media (max-width: 768px) {
    .ther-events-title {
        font-size: 1.5rem;
    }
    .ther-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    .ther-carousel-item.prev {
        transform: translateX(-60%) scale(0.7);
    }
    .ther-carousel-item.next {
        transform: translateX(60%) scale(0.7);
    }
}

/* Responsive styles for mobile devices */
@media (max-width: 480px) {
    .ther-events-title {
        font-size: 1.2rem;
    }
    .ther-events-desc {
        font-size: 0.9rem;
    }
    .ther-carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin: 0 5px;
    }
    .ther-event-date {
        font-size: 0.9rem;
    }
    .ther-event-text {
        font-size: 0.9rem;
    }
    .ther-carousel-item.prev,
    .ther-carousel-item.next {
        opacity: 0.4;
        transform: scale(0.6);
    }
    .ther-carousel-item.prev {
        transform: translateX(-40%) scale(0.6);
    }
    .ther-carousel-item.next {
        transform: translateX(40%) scale(0.6);
    }
}
/*-----------========Meet Us at the Upcoming Events end=====------------------------*/

/*---------index Online Inquiry begin------------------*/
.ther-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding:4rem 0;
}


.ther-map-container {
  flex: 1 1 500px;
  position: relative;
  padding:20px;
}
.ther-map-container img{
  margin:auto;
  max-width:100%;
  height:auto;
}


.ther-form-container {
  flex: 1 1 300px;
  padding: 20px;
}

.ther-form-title {
  font-size: 4rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  color: #333;
  position: relative;
}

.ther-form-title::after{
  content: "";
  width:80px;
  height:4px;
  position: absolute;
  bottom:0px;
  left:0px;
  background-color: var(--main-color);
 }

.ther-form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* margin-bottom: 15px; */
}

.ther-form-input {
  flex: 1 1 45%;
  margin: 5px;
  padding: 12px;
  border: none;
  background: #f1f1f1;
  border-radius: 4px;
  font-size: 14px;
}

.ther-form-input.full {
  flex: 1 1 100%;
}

.ther-form-textarea {
  flex: 1 1 100%;
  margin: 5px;
  padding: 12px;
  border: none;
  background: #f1f1f1;
  border-radius: 4px;
  font-size: 14px;
  min-height: 120px;
  resize: vertical;
}

.ther-form-submit {
  background: #2EC4B6;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 10px 5px;
}

.ther-form-submit:hover {
  background: #26a596;
}

@media (max-width: 768px) {
  .ther-main {
      flex-direction: column;
  }


  .ther-form-group .ther-form-input {
      flex: 1 1 100%;
  }
}


/*---------index Online Inquiry end------------------*/
.navigation {
    position: fixed;
    right: 0px;
    top: 53%;
    transform: translateY(-50%);
	z-index:150;
}

.navigation ul {
    list-style: none;
    padding: 0;
}

.navigation li {
    margin: 10px 0;
    cursor: pointer;
    padding: 5px 30px 5px 5px;
    color: #999;
	font-size:12px;
	line-height:14px;
    transition: background-color 0.3s;
	position: relative;
    display:flex;
    align-items: center;
}
.navigation li .square{
	width:10px !important;
	height:10px ;
    display: inline-block;
    margin-right:10px;
    position: absolute;
    top:38%;
    left:-12px;	
}
.navigation li.active .square{
    background-color: var(--main-blue-color);
    opacity: 1;
}
.navigation li .line{
    width:10px;
    height:2px;   
    position: absolute;
    top:40%;
    right:0px;
    display: inline-block;
    background-color:#999;
}
.navigation li.active .line{
	background-color: var(--main-blue-color);
}
.navigation li.active {
    color:var(--main-blue-color);
}
.navigation li.active-yellow{color:var(--main-yellow-color);}
.navigation li.active-yellow .square{
	width:10px;
	height:10px;
	background-color: var(--main-yellow-color);
    position: absolute;
    top:38%;
    left:-12px;
	opacity: 1;

}
.navigation li.active-yellow .line{
	width:10px;
	height:1px;
    display: inline-block;
	background-color: var(--main-yellow-color);
    position: absolute;
    top:40%;
    right:0px;
	
}

@media (min-width: 993px) {
    .navigation {
	width:100px;	}
    .navigation li span.navcont,.navigation li span.line{display: block;}
    .navigation li .square{  opacity: 0;}
    
}
@media (max-width: 992px){
 .navigation {width:10px;}
 .navigation li span.navcont,.navigation li span.line,.navigation li.active-yellow .line{display: none;}
 .navigation li .square{background-color:#f2f2f2;opacity: 1;}
    .navigation{display: none;}
}
.navigation {
  position: fixed;
  right: 0px;
  top: 53%;
  transform: translateY(-50%);
z-index:150;
border-right:2px solid #999;
}

.navigation ul {
  list-style: none;
  padding: 0;
}

.navigation li {
  margin: 10px 0;
  cursor: pointer;
  padding: 5px 30px 5px 5px;
  color: #999;
font-size:12px;
line-height:14px;
  transition: background-color 0.3s;
position: relative;
  display:flex;
  align-items: center;
}
.navigation li .square{
width:10px !important;
height:10px ;
  display: inline-block;
  margin-right:10px;
  position: absolute;
  top:38%;
  left:-12px;	
}
.navigation li.active .square{
  background-color: var(--main-blue-color);
  opacity: 1;
}
.navigation li .line{
  width:10px;
  height:2px;   
  position: absolute;
  top:40%;
  right:0px;
  display: inline-block;
  background-color:#999;
}
.navigation li.active .line{
background-color: var(--main-blue-color);
}
.navigation li.active {
  color:var(--main-blue-color);
}
.navigation li.active-yellow{color:var(--main-color);}
.navigation li.active-yellow .square{
width:10px;
height:10px;
background-color: var(--main-color);
  position: absolute;
  top:38%;
  left:-12px;
opacity: 1;

}
.navigation li.active-yellow .line{
width:10px;
height:2px;
  display: inline-block;
background-color: var(--main-color);
  position: absolute;
  top:40%;
  right:0px;

}

@media (min-width: 993px) {
  .navigation {
width:100px;	}
  .navigation li span.navcont,.navigation li span.line{display: block;}
  .navigation li .square{  opacity: 0;}
  
}
@media (max-width: 992px){
.navigation {width:10px;}
.navigation li span.navcont,.navigation li span.line,.navigation li.active-yellow .line{display: none;}
.navigation li .square{background-color:#f2f2f2;opacity: 1;}
  .navigation{display: none;}
}
