/* ================ HERO SECTION ================== */
.hero-subheading {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

#hero-about {
	overflow: hidden;
}

#hero-about .hero-slider {
  height: 600px;
}

#hero-about .plans-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

#hero-about .plans-slide.slide-1 {
  background: url("/wp-content/uploads/2024/10/slide1-home1.jpg") no-repeat top / cover;	
}

#hero-about .plans-slide .content {
  width: 800px;
  max-width: 100%;
}

#hero-about .main-heading {
  text-align: left;
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 56px;	
}

#hero-about .letters-show {
  display: inline-block;
  opacity: 0;	
  --rotation-start: 60deg; /* Adjusted for smoother animation */
  animation: moveLeft 0.13s ease forwards; /* Shortened to 1s for smoother effect */
}

#hero-about .description, 
#hero-about .btn {
	opacity: 0;	
  --rotation-start: 0;
}

#hero-about .description {
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 26px;
  animation: moveLeft 0.3s ease 10s forwards;
}

#hero-about .btn {
  animation: moveLeft 0.3s ease 2.8s forwards;
}

@keyframes moveLeft {
  from {
    transform: translateX(200%) rotate(var(--rotation-start));
    opacity: 0;
  }
  to {
    transform: translateX(0) rotate(0);
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  #hero-about .hero-slider {
    height: 500px;
  }
  #hero-about .hero-subheading {
    display: none;
  }
  #hero-about .description {
    font-size: 14px;
  }
  #hero-about .btn {
    padding: 12px 18px;
    font-size: 12px;
  }
  #hero-about .main-heading {
    font-size: 16px;
    line-height: 30px;
  }	
  #hero-about .logo-container img {
    max-width: 200px;
    height: 60px;
  }	
}

/* ================ CLIENTS SECTION ================== */
.clients-about {
  background-color: #f8f8f8;
}

/* ================ INNOVATION SECTION ================== */
#innovation-about {
  overflow: hidden;
  display: none;	
}

#innovation-about .section-subheading {
  text-align: left;
}

#innovation-about .section-heading {
  text-align: left;
}

#innovation-about .innovate-list {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}

#innovation-about .innovate-icon {
  color: #7141b1;
  font-size: 45px;
}

#innovation-about .innovate-title {
  font-size: 18px;
  font-weight: 600;
}

#innovation-about .innovate-border {
  display: inline-block;
  height: 3px;
  width: 100%;
  background: #efefef;
  margin-bottom: 15px;
  position: relative;
}

#innovation-about .innovate-border::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 3px;
  width: 0;
  background-color: #7141b1;
  transition: 0.3s linear;
}

#innovation-about .innovate-item:hover .innovate-border::before {
  left: 0;
  right: auto;
  width: 100%;
}

#innovation-about .right-side {
  position: relative;
}

#innovation-about .innovate-img {
  margin: -20px -360px 0px -22px;
}

#innovation-about .about-link {
  position: absolute;
  bottom: 60px;
  left: 30%;
  display: flex;
  gap: 14px;
  color: #43baff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

#innovation-about .link-text {
  transition: 0.3s linear;
}

#innovation-about .about-link:hover .link-text {
  translate: -5px;
}

@media only screen and (max-width: 767px) {
  #innovation-about .innovate-list {
    flex-direction: column;
  }

  #innovation-about .innovate-icon {
    font-size: 34px;
  }

  #innovation-about .about-link {
    display: none;
  }
}

/* ================ PRICING SECTION ================== */
/* #prices-home .section-subheading {
  margin-bottom: 12px;
}

#prices-home .section-heading {
  margin-bottom: 20px;
  text-wrap: balance;	
}

#prices-home .description {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
  text-wrap: balance;	
}

#prices-home .description.bottom {
	font-size: 22px;
	margin-bottom: 0;
}

#prices-home .prices-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 15px;
  margin-bottom: 40px;	
}

#prices-home .price-item {
  overflow: hidden;
  position: relative;
  padding: 45px 17px 48px;
  background: #fff;
  transition: all 0.3s linear;
  border: 1px solid #e7e7e7;
}

#prices-home .price-icon {
  position: absolute;
  top: -88px;
  right: -88px;
  width: 188px;
  height: 188px;
  color: #fff;
  background-color: #00deff;
  background-image: linear-gradient(125deg, #00deff, #502a71);
  border-radius: 50%;
}

#prices-home .price-icon i {
  position: absolute;
  bottom: 42px;
  left: 40px;
  font-size: 35px;
  line-height: 1;
}

#prices-home .price-item p {
	max-width: 180px;
	font-size: 30px;
	font-weight: bold;
}

#prices-home .price-title {
  font-size: 22px;
  line-height: 36px;
  font-weight: bold;
  padding-right: 60px;
  margin-bottom: 10px;
}

#prices-home .price {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: #43baff;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  padding-left: 27px;
}

#prices-home .price sup {
  position: absolute;
  top: 0;
  left: 5px;
  font-size: 50%;
  font-weight: 600;
}

#prices-home .price-package {
  color: #ababab;
  font-weight: 600;
  margin-bottom: 30px;
  display: block;
}

#prices-home .price-terms {
  padding-top: 25px;
  padding-bottom: 30px;
  border-top: 1px solid #e5e5e5;
  font-weight: 600;
  color: #ababab;
}

#prices-home .price-term {
  line-height: 42px;
  display: flex;
  gap: 12px;
}

#prices-home .price-term.active {
  color: #1b1d21;
}

#prices-home .price-term.active .price-check {
  color: #43baff;
}

#prices-home .price-item {
  background-color: #262051;
  background: linear-gradient(140deg, #262051 60%, #00deff);	
  color: #fff;
}

#prices-home .price-title {
  color: #fff;
}

#prices-home .price-item .price-term.active {
  color: #fff;
} */

/* #prices-home .price-btn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
} */

/*////////////// new prices section //////////////*/
/* Pricing Table Styles */
#prices-home .description {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
  text-wrap: balance;	
}

.pricing-table-container {
  overflow-x: auto;
  margin: 2rem 0;
  background: linear-gradient(340deg, #262051 60%, #00deff);
  color: #fff;	
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
/*   margin: 1rem 0; */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.pricing-table th, 
.pricing-table td {
  padding: 15px;
  border: 1px solid #e0e0e0;
}

.pricing-table td {
	text-align: center;
}

.pricing-table th {
/*   background-color: #f8f9fa; */
  font-weight: 600;
/*   color: #333;	 */
}

.pricing-table tbody tr:nth-child(even) {
/*   background-color: #f9f9f9; */
}

.pricing-table tbody tr td:first-child,
.pricing-table thead tr th:first-child {
	text-align: left;
}

.pricing-table tbody tr:hover {
/*   background-color: #f1f1f1; */
}

.pricing-table .fa-check {
  color: #4CAF50;
  font-size: 1.2rem;
}

.pricing-notes {
  margin-top: 2rem;
}

.pricing-notes .note {
  background: #f8f9fa;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 5px;
}

.pricing-notes .note h3 {
  margin-top: 0;
  color: #333;
}

.pricing-notes .note i {
  margin-right: 10px;
  color: #43baff;
}


/* ================ PROCESS SECTION ================== */
#process-about .content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

#process-about .left-side {
  background-color: #211e3b;
  padding: 120px 10% 120px 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#process-about .section-subheading {
  text-align: left;
  margin-bottom: 10px;
  color: #8e88b8;
}

#process-about .section-heading {
  text-align: left;
  color: #fff;
  margin-bottom: 30px;
}

#process-about .btn-groups {
  margin-bottom: 30px;
}

#process-about .btn {
  background: #f6f6f6;
  color: #1b1d21;
}

#process-about .btn:hover,
#process-about .btn.active {
  background: #43baff;
  color: #fff;
}

#process-about .description {
  color: #fff;
  margin-bottom: 20px;
  display: none;
}

#process-about .description.active {
  display: block;
}

#process-about .learn-link {
  font-size: 14px;
  font-weight: bold;
  color: #43baff;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}

#process-about .right-side {
  position: relative;
}
#process-about .video-img {
  height: 100%;
}

#process-about .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
}

#process-about .play-icon .ripple {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 1px solid #ffffff70;
  opacity: 0;
  scale: 0;
  animation: ripple 1s linear .3s infinite;
}

#process-about .play-icon .ripple:nth-child(2) {
  animation: ripple 1s linear infinite;
}

@keyframes ripple {
  0% {
    opacity: 0;
    scale: 1;
  }
  25% {
    opacity: 0.5;
    scale: 1.2;
  }
  50% {
    opacity: 1;
    scale: 1.4;
  }
  70% {
    opacity: 1;
    scale: 1.6;
  }
  100% {
    opacity: 0;
    scale: 2;
  }
}

#process-about .video-popup {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 10;
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.mfp-close {
  position: absolute;
  top: -60px;
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
  background: 0 0;
  border: 0;
  font-size: 40px;
  z-index: 20;
  cursor: pointer;	
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

@media only screen and (max-width: 1279px) {
}

@media only screen and (max-width: 767px) {
  #process-about .left-side {
    padding: 60px 5%;
  }
  #process-about .content {
    grid-template-columns: 1fr;
  }
  #process-about .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
