/* home banner section css start */

section.home-banner {
    position: relative;
    background-image: url('./img/dot.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: repeat;
    height: 100vh;
}

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

section.home-banner .home-cont .hero-head h1 {
        font-size: 96px;
    line-height: 100px;
    font-weight: 600;
    margin-bottom: 35px;
}

section.home-banner .home-cont .hero-head p {
    font-size: 20px;
}

.herobtn {
    position: relative;
    display: flex;
    align-items: center;
    margin: 40px 0 20px;
    gap: 30px;
}

.herobtn a {
    text-decoration: none;
}

.hdbtn1 a {
  background: var(--btn-color);
  color: var(--white-color);
  padding: 22px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
      text-transform: capitalize;
}

/* Right arrow */
.hdbtn1 .arrow-right {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
}

.hdbtn1 .arrow-right i {
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Left arrow */
.hdbtn1 a::before {
  content: "\f061"; /* fa-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;
}

/* Text shift */
.hdbtn1 .btn-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Hover effects */
.hdbtn1 a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.hdbtn1 a:hover .arrow-right i {
  transform: translateX(100%);
  opacity: 0;
}

.hdbtn1 a:hover .btn-text {
  transform: translateX(12px);
}


.hdbtn2 a {
    background: var(--white-color);
    color: var(--heading-color);
    padding: 22px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
        text-transform: capitalize;
}

.heropoint {
    display: flex;
    align-items: center;
    gap: 40px;
}

.heropoint p {
    font-size: 18px;
    font-weight: 500;
}

.heropoint p i {
    font-size: 26px;
}

section.home-banner .home-img {
    position: relative;
}

section.home-banner .home-img img {
    width: 100%;
}

section.home-banner .home-img .home-popimg {
    animation-name: creationanim;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all 0.3s;
    width: 40%;
    position: absolute;
    top: 33%;
    right: 7%;
}

section.home-banner .home-img .home-popimg img {
    border-radius: 10px;
}

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

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

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


/* company listing */

section.companieslst {
    padding: 60px 12px;
    text-align: center;
}

.companieslst-head {
    padding-bottom: 30px;
}

.companieslst-head h4 {
    font-size: 22px;
}

.companieslst-head h4 span {
    font-weight: 700;
}

section.companieslst .col-3 {
    width: 20%;
}

section.companieslst .compalgn {
    align-items: center;
    justify-content: center;
}

section.companieslst img {
    opacity: 0.5;
}

section.companieslst img:hover {
    opacity: 1;
}

section.companieslst img {
    width: 25%;
}

img.comimg5 {
    width: 60% !important;
}

section.companieslst img.comimg2 {
    width: 28%;
}

section.companieslst img.comimg4 {
    width: 22%;
}


/* about  marketing section start */

section.abt-mrktng {
    position: relative;
}

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

.abt-img img {
    width: 100%;
}

.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;
}

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 */
}



/* marquee section start */


section.marq-text {
    padding: 60px 0;
}

.marquee-wrapper {
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 120s linear infinite;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-right: 4rem;
    font-size: 150px;
    font-weight: 700;
    color: var(--heading-color);
}

.marquee-content b {
    -webkit-text-stroke: 1px var(--heading-color);
    -webkit-text-fill-color: white;
    opacity: 0.7;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}



/* product section start */

section.productmgmt {
    padding: 90px 66px;
    background-color: var(--lt-bg-color);
}

section.productmgmt .tab-mgmt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
}


button.nav-link {
    color: #717580;
}

.nav-tabs {
    border: none !important;
    gap: 0 25px;
}

.nav-tabs .nav-link {
    border: none !important;
}

.nav-tabs .nav-link:hover {
    border-bottom: 2px solid var(--black-color) !important;
    color: var(--black-color);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--black-color);
    border: none !important;
    border-bottom: 2px solid var(--black-color) !important;
    background-color: var(--lt-bg-color) !important;
}

a.exp-prod {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  color: var(--black-color);
  font-size: 16px;
  overflow: hidden;
  padding-left: 20px; /* give space for left icon */
  transition: all 0.3s ease;
}

a.exp-prod .btn-text {
  transition: transform 0.3s ease;
}

a.exp-prod i {
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}

/* ::before for left arrow */
a.exp-prod::before {
  content: "\f061"; /* Font Awesome arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--black-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

/* Hover effect */
a.exp-prod:hover::before {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

a.exp-prod:hover .btn-text {
  transform: translateX(12px);
}

a.exp-prod:hover i {
  transform: translateX(100%);
  opacity: 0;
}


.product-imghov {
    overflow: hidden;
    cursor: pointer;
}

.product-imghov img {
    transition: transform 0.4s ease;
}

.product-imghov:hover img {
    transform: scale(1.1);
}

.procont-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    cursor: pointer;
}
.procont-tab p {
margin: 0;
}

.procont-tab p a{
text-decoration: none;
color: var(--heading-color);
font-weight: 500;
}

.procont-tab small {
    color: #717582;
    font-size: 16px;
}

.line {
    padding: 0 7px;
    margin: 0 10px;
    color: #717582;
    border: 1px solid #717582;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* faq section start  */


.faq-sec .accordion-button::after {
    background-image: url("./img/plus.png");
    transition: all 0.5s;
    padding: 5px;
}

.faq-sec .accordion-button:not(.collapsed)::after {
    background-image: url("./img/minus.png") !important;
    width: 15px;
    height: 15px;
}

.faq-sec .accordion-button::after {
    transition: all 0.5s;
}

section.faq-sec {
    padding: 60px 12px;
}

section.faq-sec .row {
    justify-content: center;
}

section.faq-sec .faq-sec-content {
    padding-right: 50px;
    align-self: center;
}

section.faq-sec .head-sec {
    text-align: left;
    margin-bottom: var(--m30);
}

section.faq-sec .accordion-button {
    padding: 12px 12px 22px 0;
    background: transparent;
    border-radius: 0 !important;
    font-size: 18px;
    color: var(--heading-color);
    border: 0px solid !important;
    box-shadow: 0 0 0;
    font-family: var(--secondary-font);
    font-weight: 600;
}

section.faq-sec .accordion-body {
    padding: 0 30px 30px 0;
    color: #717580;
}

section.faq-sec .accordion-body li {
    font-family: var(--primary-font);
    color: var(--heading-color);
    font-size: var(--f16);
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 400;
    text-align: left;
    list-style: initial;
}

section.faq-sec .accordion-body ul {
    padding-left: 20px;
}

section.faq-sec .accordion-item {
    border: 0px solid;
    border-bottom: 1px solid #e4e4e4;
    border-radius: 0 !important;
    background: transparent;
    /* padding: 12px 12px 22px 0; */
}

.faq-content p {
    color: var(--other-color);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.faq-content h2.faqtp-head {
    font-size: 44px;
    font-weight: 700;
    margin: 10px 0 20px;
}

/* section.faq-sec .faq-sec-img {
    padding-left: 5%;
} */

section.faq-sec .faq-sec-img {
    position: relative;
    padding-left: 5%;
}

.faq-pop img {
    width: 32%;
    border-radius: 5px;
}

section.faq-sec .faq-sec-img .faq-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%;
    right: -64%;
}

.abt-btn.faq-btn {
    padding: 70px 0 40px;
}

section.faq-sec .faq-sec-img img {
    width: 100%;
}

/* 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;
}



/* subscription section start  */


section.subscription {
    padding: 60px 12px;
    background: var(--lt-bg-color);
}

section.subscription .row.subs-align {
    padding: 0 54px;
}

section.subscription .card.subs {
    box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.08);
    border: none;
}

section.subscription .card.subs .card-body {
    padding: 40px 0;
}

section.subscription .subscribe-head {
    padding-bottom: 50px;
}

section.subscription .subscribe-head p {
    text-align: center;
    text-transform: uppercase;
    color: var(--other-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

section.subscription .subscribe-head h2 {
    text-align: center;
    width: 40%;
    margin: auto;
    color: var(--heading-color);
    font-size: 45px;
    font-weight: 700;
}

section.subscription p.substitl {
    text-align: center;
    border: 1px solid #e4e4e4;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
    width: 30%;
    margin: auto;
    border-radius: 25px;
    padding: 7px 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

section.subscription h5.card-title {
    text-align: center;
    font-size: 55px;
    padding: 30px 0 0;
    font-weight: 600;
}

section.subscription h5.card-title sup {
    font-size: 35px;
    font-weight: 600;
}

section.subscription p.card-cont {
    text-align: center;
    width: 60%;
    margin: auto;
    color: #717580;
}

section.subscription a.chospckg {
  text-decoration: none;
  margin: 30px auto 15px;
  display: block;
  background: var(--btn-color);
  color: var(--white-color);
  padding: 18px 26px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  width: 43%;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover effect on text */
section.subscription a.chospckg::after {
  content: "Choose package";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(50%);
  opacity: 0;
  transition: all 0.4s ease;
  color: var(--white-color);
}

/* Hide original text during transition */
section.subscription a.chospckg:hover {
  color: transparent;
}

/* Animate in the :after text on hover */
section.subscription a.chospckg:hover::after {
  transform: translateY(-50%);
  opacity: 1;
}



section.subscription h6 {
    font-size: 13px;
    text-align: center;
    color: #717582;
    margin-bottom: 20px;
}

section.subscription p.srvcprovid-atv {
    text-align: center;
    border-bottom: 1px solid #e4e4e4;
    padding: 10px 0;
    color: #717582;
    font-size: 16px;
}

section.subscription p.srvcprovid-dsbl {
    text-align: center;
    border-bottom: 1px solid #e4e4e4;
    padding: 10px 0;
    color: #71758099;
    font-size: 16px;
}

section.subscription a.get-quotebtn {
    display: flex;
    align-items: center;
    color: var(--heading-color);
    margin-top: 20px;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

section.subscription a.get-quotebtn:hover {
    color: var(--other-color);
}


/* happy customer section start  */


section.hpycstmr {
    padding: 60px 12px 10px;
}


section.hpycstmr .row {
    justify-content: center;
    align-items: center;
    /* border: 2px solid red; */
}

section.hpycstmr .col-lg-4 {
    /* border: 2px solid red; */
}

h4.totlcstmr {
    font-size: 28px;
    font-weight: 600;
}

.hpycnt-sec,
.hpyrtcount {
    display: flex;
}

.hpycstmr-icon i {
    font-size: 22px;
    color: #FD961E;
}

.hpyrtcount {
    padding: 0 0 0 20px;
}

.hpyrtcount h5 {
    font-size: 24px;
    font-weight: 600;
}

.hpyrtcount h5 span {
    border-bottom: 2px solid var(--heading-color);
}


/* review section start */

section.review_sec {
    padding: 0px 100px 20px;    
}

section.review_sec .review {
    padding: 60px 0 40px;    
    cursor: url(./img/cursor-testy.png), auto;
}

.review.inner {
    background-color: transparent;
}

.owl-carousel {
    display: block !important;
    width: 100%;
    z-index: 1;
}

.item {
    border-radius: 5px;
    border:1px solid #e4e4e4;
}

section.review_sec .owl-carousel .owl-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.d-item .rvw-cont {
    padding-bottom: 10px;
}

.rvw-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}

.rvw-cont p {
    width: 100%;
    font-size: 14px;
    padding-left: 20px;
}

.review-nmrt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-top: 1px solid #e4e4e4;
}

.review-nmrt h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
}

.review-nmrt .rating i {
    color: #fd961e;
}


.review-cta {
    justify-content: center;
}

.rvwcta-cont {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* border: 2px solid red; */
}

.rvwcta-cont h6.rvw-hurray {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--black-color);
    padding: 8px 16px;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    font-weight: 600;
}

.rvwcta-cont h5{
    font-size: 18px;
    font-weight: 400;
}

.rvwcta-cont h5 a {
    color: var(--heading-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--heading-color);
    transition: all 0.3s ease;
}

.rvwcta-cont h5 a:hover{
    color: var(--other-color);
    border-bottom: 1px solid var(--other-color);
}

/* review section End */

