/* ================ HERO SECTION ================== */
#hero-home {
	overflow: hidden;
}

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

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

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

#hero-home .hero-slide .main-heading {
  text-align: left;
  margin-bottom: 20px;
  max-width: 100%;`		
}

#hero-home .sub-heading {
	font-size: 32px;
	color: #fff;
}

#hero-home .letters-show {
  display: inline-block;	
  opacity: 0;
  --rotation-start: -180deg; /* Rotation variable for letters-show */
  animation: moveUpLetters 0.3s ease forwards;
}

#hero-home .description, 
#hero-home .btn,
#hero-home .logo-container {
  opacity: 0;
  --rotation-start: 0deg;
}

#hero-home .description {
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 20px;
  width: 520px;
  max-width: 100%;	
  animation: moveUpLetters 0.3s ease 2.5s forwards;	
}

#hero-home .btn {
  animation: moveUpLetters 0.3s ease 2.8s forwards; /* Slight delay for button */
}

#hero-home .logo-container {
	display: flex;
	align-items: center;
	animation: moveLeft 0.3s ease 4.3s forwards;
}

#hero-home .logo-container img {
	max-width: 300px;
    height: 120px;
}

#hero-home .video-container {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  margin-top: 140px;	
}

#hero-home .video-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: #00000098;
}


@keyframes moveUpLetters {
  from {
    transform: translateY(160%) rotate(var(--rotation-start));
    opacity: 0;
  }
  to {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  #hero-home .hero-slider {
    height: 500px;
  }
  #hero-home .hero-subheading {
    display: none;
  }
  #hero-home .description {
    font-size: 14px;
  }
  #hero-home .btn {
    padding: 12px 18px;
    font-size: 12px;
  }
}

/* ================ FEATURES SECTION ================== */
#features-home .body-content {
  background-image: url("/wp-content/uploads/2020/03/bg-s1-home3.png");
  background-repeat: no-repeat;
  background-position: 0 20px;
  background-size: cover;	
  margin-bottom: 30px;
}

#features-home .section-heading {
  margin-bottom: 20px;
}

#features-home .features-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(10% / 2);
}

#features-home .feature-item {
  min-width: 30%;
  padding: 33px 35px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  border: 1px solid #e7e7e7;
  transition: 0.3s linear;
  overflow: hidden;
}

#features-home .feature-item:hover {
  border-color: transparent;
  box-shadow: 15px 15px 38px 0 rgba(0, 0, 0, 0.1);
}

#features-home .feature-check {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

#features-home .feature-item:nth-child(1) .feature-check {
  background-color: #7141b1;
}

#features-home .feature-item:nth-child(2) .feature-check {
  background-color: #43baff;
}

#features-home .feature-item:nth-child(3) .feature-check {
  background-color: #221d48;
}

#features-home .feature-title {
  margin-bottom: 5px;
  font-weight: 700;	
}

#features-home .feature-number {
  position: absolute;
  right: -7px;
  bottom: 0;
  font-size: 72px;
  font-weight: 700;
/*   font-family: "Montserrat", sans-serif; */
  line-height: 52px;
  color: #f2f2f2;
}

/* ================ TRENDS SECTION ================== */
#trends-home {
  background: url(/wp-content/uploads/2020/03/bg-s2-home3.jpg) no-repeat
    center/cover;
}

#trends-home .left-side {
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#trends-home .section-subheading {
  text-align: left;
  color: #8e88b8;
  margin-bottom: 12px;
}

#trends-home .section-heading {
  text-align: left;
  color: #ffffff;
  margin-bottom: 20px;
}

#trends-home .description {
  text-align: left;
  color: #ffffff;
  margin-bottom: 50px;
}

#trends-home .counter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

#trends-home .count-item > * {
  display: block;
}

#trends-home .count-number {
  color: #43baff;
  font-size: 36px;
/*   font-family: "Montserrat", sans-serif; */
  font-weight: 800;
  line-height: 1.4;
}

#trends-home .count-desc {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

#trends-home .trend-pics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#trends-home .right-pic-container {
  padding-top: 26px;
}

#trends-home .trend-pic-item {
  position: relative;
  overflow: hidden;
}

#trends-home .trend-pic {
  height: 280px;
}

#trends-home .trend-pic-item-1,
#trends-home .trend-pic-item-3 {
  margin-bottom: 30px;
}

#trends-home .trend-pic img {
  filter: grayscale(90%);
  transition: 0.3s linear;
}

#trends-home .trend-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 26px;
  text-wrap: nowrap;
}

#trends-home .trend-pic-item::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: -15px;
  right: -15px;
  z-index: 1;
  transform: rotate(45deg);
  background: #43baff;
}

#trends-home .trend-pic-item .overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: #ffffff16;
  transition: 0.3s linear;
}

#trends-home .trend-pic-item:hover img {
  filter: grayscale(0);
}

#trends-home .trend-pic-item:hover .overlay {
  background-color: transparent;
}

@media only screen and (max-width: 1023px) {
  #trends-home .right-pic-container {
    padding-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  #trends-home .trend-pics-list {
    grid-template-columns: 1fr;
  }
  #hero-home .logo-container img {
    max-width: 200px;
    height: 60px;
  }	
  #hero-home :is(.main-heading, .sub-heading) {
	font-size: 24px;
  }	
}

/* ================ CLIENTS SECTION ================== */
#clients-home {
  padding: 30px 0;
}

#clients-home .client-pic {
  width: 70%;
  opacity: 0.5;
  transition: 0.3s linear;
  cursor: pointer;
}

#clients-home .client:hover .client-pic {
  opacity: 1;
}

#clients-home .client-1 .client-pic {
  width: 80%;
}

#clients-home .slick-track {
	display: flex;
	align-items: center;
}

/* ================ SERVICES SECTION ================== */
#services-home {
  background-color: var(--primary-clr);
}

#services-home .content {
 	margin-bottom: 80px;
	position: relative;	
	background-image: url(/wp-content/uploads/2019/12/bg-footer1.png);
    background-position: top center;
    background-repeat: no-repeat;
}

#services-home .content.reverse .left-side {
	order: 1;
}

#services-home .section-heading {
  color: #ffffff;
  margin-bottom: 70px;
}

/* #services-home .services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;	
}

#services-home .service-item {
  overflow: hidden;
  position: relative;
  padding: 40px 40px 35px;
  background: linear-gradient(140deg, #262051 50%, #00deff);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #46416b;
  display: flex;
  flex-direction: column;	
  transition: all 0.3s linear;		
}

#services-home .service-item:hover {
  box-shadow: 15px 15px 38px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);	
}

#services-home .service-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%;
}

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

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

#services-home .service-descrpition {
  margin-bottom: 30px;
  color: #aeaacb;
  flex: 1;	
}

#services-home .service-list {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

#services-home .service-term {
  padding: 0 20px;
  transition: all 0.3s linear;	
  
}

#services-home .service-term a {
  position: relative;
  line-height: 40px;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  color: #fff;		
}

#services-home .service-term a::before {
  content: "//";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  visibility: hidden;
  color: #7141b1;
  transition: all 0.3s linear;
}

#services-home .service-term.active a::before,
#services-home .service-term:hover a::before {
  opacity: 1;
  visibility: visible;
}

#services-home .service-term:hover,
#services-home .service-term.active {
  background: #201b3e;
}

#services-home .service-term:hover a,
#services-home .service-term.active a {
  padding-left: 15px;
  color: #43baff;	
}
 */

#services-home .btn {
  	
}

#services-home .left-side {
	display: flex;
	align-items: center;
	justify-content: center;
}

#services-home .video-container {
	height: 400px;
}

#services-home .video-container video {
	height: 100%;
	width: 100%;
	object-fit: fill;
}

#services-home .right-side {
	color: #fff;
}

#services-home .right-side h3 {
	color: #43baff;
	font-size: 30px;
    margin-bottom: 30px;
}

#services-home .right-side .icon-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}

#services-home .right-side .icon-item {
	height: 70px;
	width: 70px;
	border: 1px solid #ffffff60;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #43baff;
	font-size: 30px;
}

#services-home .right-side .description {
	margin-bottom: 30px;
}

#services-home .design-img {
	position: absolute;
}

#services-home .design-img.left {
	left: -6%;
	top: -20%;
}

#services-home .design-img.right {
	right: 0;
	bottom: 0;
}

#services-home .bullet-points {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

#services-home .bullet-points li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

#services-home .bullet-points li i.fa-circle {
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 0.5rem;
  color: #0066cc; /* Adjust color to match your theme */
}

/* Adjust spacing and colors as needed */
#services-home .bullet-points li:last-child {
  margin-bottom: 0;
}

#services-home .btn {
  margin-left: 26px;
}


@media only screen and (max-width: 1023px) {
	#services-home .content.reverse .left-side {
		order: 0;
	}
	#services-home .video-container {
		height: 100%;
	}

}

@media only screen and (max-width: 767px) {
  #services-home.section-padding {
    padding: 60px 0 140px;
  }	
  #services-home .section-heading {
    line-height: 38px;
  }
  #services-home .right-side h3 {
	font-size: 22px;
  }	
  #services-home .design-img {
	display: none;
  }	
}

/* ================ CONSULTATION SECTION ================== */
#consultation-home {
  background: url(/wp-content/uploads/2020/03/bg-cta-home2.jpg) no-repeat top /
    cover;
  min-height: 450px;
  display: flex;
  align-items: center;	
}

#consultation-home .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#consultation-home .subheading {
  color: #ffffff;
  font-family: "Nunito Sans", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4em;
  margin-bottom: 20px;
}

#consultation-home .main-heading {
  margin-bottom: 40px;
}

/* ================ TESTIMONIALS SECTION ================== */
#testimonials-home {
	background-color: #211f3b;
    background-image: url(/wp-content/uploads/2025/02/bg-map-dark.webp);
    background-position: bottom center;
    background-repeat: no-repeat;	
}

#testimonials-home .section-heading {
  margin-bottom: 40px;
  color: #fff;	
}

#testimonials-home .testimonial-item {
  background: #322b5d;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 3px 3px 13px 0px rgba(0, 0, 0, 0.1);
  color: #fff;	
  position: relative;
}

#testimonials-home .testimonial-item .overlay {
  background: #262051;	
  position: absolute;
  left: 30px;
  bottom: -20px;
  width: calc(100% - 55px);
  height: 100%;
  z-index: -1;
  box-shadow: 3px 3px 13px 0px rgba(0, 0, 0, 0.1);
}

#testimonials-home .testimonial-item .wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

#testimonials-home .testimonial-item .client-name {
  font-size: 20px;
  margin-bottom: 2px;
  color: #fff;	
}

#testimonials-home .testimonial-item .client-occupation {
}

#testimonials-home .testimonial-item .client-remarks {
  margin-top: 23px;
}

#testimonials-home .slick-next:before,
#testimonials-home .slick-prev:before {
  font-size: 20px;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: .3s linear;	
}

#testimonials-home .slick-prev {
  left: -35px;
}

#testimonials-home .slick-slide {
  margin: 0 15px;
}

#testimonials-home .slick-list {
	padding-bottom: 30px;
}

.slick-prev:before, .slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: black;
}

.slick-prev:before {
    content: ""; /* Unicode for left arrow */
}

.slick-next:before {
    content: ""; /* Unicode for right arrow */
}

.slick-dots {
    position: absolute;
    bottom: -75px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 15px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    line-height: 1;
    display: block;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button {
    width: 8px;
    height: 8px;
}
.slick-dots li button:before {
    font-family: "slick";
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    text-align: center;
    color: #d0d0d0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    color: #7141b1;
    font-size: 12px;
    left: -2px;
}



@media only screen and (max-width: 767px) {
  #testimonials-home .slick-next:before,
  .slick-prev:before {
    font-size: 17px;
  }

  #testimonials-home .slick-prev {
    left: -22px;
  }
	
	.slick-dots {
		bottom: -30px;
	}	
}

