/* home banner section css start */

section.home-banner {
  position: relative;
  background-image: url("./img/services-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  height: 75vh;
}

section.home-banner .home-cont {
  align-self: center;
  padding: 150px 50px;
  position: relative;
}

section.home-banner .home-cont .hero-head {
  padding: 30px;
}

section.home-banner .home-cont .hero-head h6 {
  color: var(--other-color);
}

section.home-banner .home-cont .hero-head h1 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 600;
}

/* about  marketing section start */

section.abt-mrktng {
  position: relative;
  padding: 60px 12px;
}

section.abt-mrktng .abt-img {
  position: relative;
  padding: 0 0 0px 100px;
}

img.abt-img1 {
    height: 700px;
}

.abt-pop img {
  width: 47%;
}
section.abt-mrktng .abt-img .abt-pop {
  animation-name: creationanim;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  transition: all 0.3s;
  width: 100%;
  position: absolute;
  bottom: 10%;
  left: 16%;
}

section.abt-mrktng .abt-ryt {
  align-self: center;
      padding-right: 100px;
}

.abt-ryt.abt-rtnu.abt-rtnuprcs {
      padding-right: 0;
}


section.abt-mrktng .abt-ryt .abt-head h5 {
  font-size: 15px;
  color: var(--other-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

section.abt-mrktng .abt-ryt .abt-head h2 {
  font-size: 33px;
  font-weight: bold;
}

.abt-icon {
  margin: 30px 0;
}

h5.abtasishd {
  font-size: 16px;
  font-weight: 700;
}

p.abtasiscont {
  font-size: 14px;
}

.abt-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 0;
  gap: 10px;
}

/* Button base styles */
.botmabtn1 a,
.botmabtn2 a {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 10px;
  overflow: hidden;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Individual button styles */
.botmabtn1 a {
  background: var(--btn-color);
  color: var(--white-color);
  padding: 18px 26px;
  text-transform: capitalize;
}

.botmabtn2 a {
  background: var(--white-color);
  color: var(--heading-color);
  padding: 22px 30px;
  text-transform: capitalize;
}

/* Wrap text to animate */
.btn-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Right icons */
.botmabtn1 a i,
.botmabtn2 a i {
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-left: 5px;
  position: relative;
}

/* Pseudo-element for left-side arrow/caret */
.botmabtn1 a::before,
.botmabtn2 a::before {
  position: absolute;
  left: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}

/* Different icons for each */
.botmabtn1 a::before {
  content: "\f061"; /* arrow-right */
  color: var(--white-color);
}

.botmabtn2 a::before {
  content: "\f0da"; /* caret-right */
  color: var(--heading-color);
}

/* Hover animations */
.botmabtn1 a:hover .btn-text,
.botmabtn2 a:hover .btn-text {
  transform: translateX(10px);
}

.botmabtn1 a:hover i,
.botmabtn2 a:hover i {
  transform: translateX(100%);
  opacity: 0;
}

.botmabtn1 a:hover::before,
.botmabtn2 a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Default left icon position */
.botmabtn1 a::before {
  content: "\f061"; /* Font Awesome arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--white-color);
  position: absolute;
  left: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

/* On hover: icon moves left, text moves right slightly more */
.botmabtn1 a:hover::before {
  left: 16px; /* more gap from text */
  opacity: 1;
  transform: translateX(0);
}

.botmabtn1 a:hover .btn-text {
  transform: translateX(16px); /* more movement to allow for spacing */
}

@keyframes creationanim {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

img.srvccheck {
  width: 75%;
  margin: auto;
}

section.abt-mrktng .abt-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* stats section  */

section.stats {
  padding: 60px 12px;
}

section.stats .statscont {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  /* border: 2px solid red; */
  position: relative;
}

section.stats .statscont i {
  font-size: 30px;
  color: #2ebb79;
  padding-top: 5px;
}

section.stats .statscont .counter {
  font-size: 45px;
  font-weight: 700;
}

section.stats .statscont span {
  font-size: 45px;
  font-weight: 700;
}

.statsfor p {
  text-align: center;
  color: #717580;
  font-size: 16px;
}

.abt-ryt.abt-rtnu {
  padding-left: 100px;
}


section.abt-mrktng .abt-img .abt-pop.abt-lftnupop {
  left: 40%;
  bottom: 20%;
}

section.abt-mrktng .abt-img .abt-pop.abt-lftnupop img {
  width: 57%;
}

.mrktdisclmr {
  justify-content: center;
  padding: 50px 0;
}

.mrktdisclmr .mrktdisclmr-cont {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mrktdisclmr .mrktdisclmr-cont img {
  width: 5%;
}

.mrktdisclmr .mrktdisclmr-cont h6 {
  margin: 0 0 0 10px;
  font-size: 20px;
}



/* marketing section css start */

section.partner {
  padding: 60px 0;
}

.mrkt-head {
  width: 50%;
  margin: auto;
  text-align: center;
  padding: 0 0 30px 0;
}

.mrkt-head h2 {
  font-size: 48px;
  font-weight: 700;
}

.mrkt-head h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--other-color);
  text-transform: uppercase;
}

section.partner .mrktslcrsr {
  cursor: url(./img/cursor-testy.png), auto;
}

section.partner .card {
  text-align: center;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
      height: 415px;
}

.partner-owl .items {
  margin: 20px 0;
}

.mrktslcrsrcrdbdy h5 {
    font-size: 17px;
    font-weight: 600;
}

.mrktslcrsrcrdbdy p {
    font-size: 14px;
}



/* feedback section start */

.testimonial-section {
  padding: 60px 0;
}

.testimonial-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-image {
  position: relative;
  flex: 1;
}

.testimonial-image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.rating-card {
  position: absolute;
  bottom: 20%;
  right: -11%;
  background: #fff;
  border-radius: 12px;
  /* padding: 20px; */
  text-align: center;
  width: 250px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation-name: creationanim;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  transition: all 0.3s;
}

@keyframes creationanim {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.rating-card h3 {
  font-size: 56px;
  margin-bottom: -10px;
  font-weight: 700;
}

.rating-card .stars {
  color: #ff9f00;
  font-size: 30px;
}

.rating-card p {
  font-size: 15px;
  margin: 5px 0;
}

p.badge.bg-success {
  font-size: 14px;
  font-weight: 500;
  background: #2ebb79 !important;
  padding: 8px 15px;
  border-radius: 25px;
}

.rtcardbx {
  padding: 17px;
}

.trust-footer {
  background: var(--heading-color);
  color: white;
  border-radius: 0px;
      font-size: 22px;
    padding: 14px 0;
  border-radius: 0 0 12px 12px;
}

.testimonial-content {
  flex: 1;
}

.section-subtitle {
  color: #fc5d35;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: 16px;
}

.author-rating {
  color: #ffc107;
  font-size: 14px;
}

.testimonial-nav {
  margin-top: 30px;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: none;
  margin-right: 10px;
}

.testimonial-nav button:hover {
  background: #fc5d35;
  color: white;
  border-color: #fc5d35;
}

.testimonial-carousel .testimonial-item {
  padding: 10px 0;
}

.owl-carousel .owl-nav {
  margin-top: 20px;
}

.owl-carousel .owl-nav button i {
  font-size: 18px;
}
