/* hero section */

.hero-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;border-radius: 15px 15px 0 0;
        border-top: 1px solid #434343;
        border-right: 1px solid #434343;
        border-left: 1px solid #434343;}
.hero-section-wrapper .hero-section-left,
.hero-section-wrapper .hero-section-right {
    flex: 0 0 auto;
    width: 100%;
}
.hero-section-wrapper .hero-section-left {
    padding: 30px 20px 40px;
}.hero-section-wrapper .hero-section-left .heading-block strong {
    font-weight: inherit;
    color: var(--pe-color-primary);
}.hero-section-wrapper .hero-section-right .image-block img {
    aspect-ratio: 1/1.2;
}
@media (min-width: 992px) {
    .hero-section-wrapper {
        flex-direction: row;
        gap: 50px;
        padding-inline: 50px;
    }
    .hero-section-wrapper .hero-section-left {
        padding: 30px 0;
        flex: 0 0 auto;
        width: 62.8%;
        align-self: center;
        order: -1;
    }
    .hero-section-wrapper .hero-section-right {
        flex: 0 0 auto;
        width: calc(37.2% - 50px);
        /* aspect-ratio: 1/1.6212; */
        height: calc(100vh - var(--bs-total-header-height));
    }
    .hero-section-wrapper .hero-section-right > .group-block,
    .hero-section-wrapper .hero-section-right .swiper-wrapper__custom ,
    .hero-section-wrapper .hero-section-right swiper-container {
        height: 100%;
    }
}

/* Ticker / marquee animation variables */
.ticker-1 {
    --pe-smooth-scroll-time: 20s;
    --pe-animation-name: marqueeRTL;
}
@media (min-width: 992px) {
    .ticker-1 {
        --pe-animation-name: marqueeBTT;
    }
}

.ticker-2 {
    --pe-smooth-scroll-time: 20s;
    --pe-animation-name: marqueeLTR;
}
@media (min-width: 992px) {
    .ticker-2 {
        --pe-animation-name: marqueeTTB;
    }
}

.brand-ticker-2 {
    --pe-smooth-scroll-time: 30s;
    --pe-animation-name: marqueeRTL;
}

/* Shared marquee scroll layout (used by ticker-1, ticker-2, brand-ticker-2) */
@media (min-width: 992px) {
    .custom-auto-scroll-loop,
    .custom-auto-scroll-parent {
        gap: 20px;
    }
    .image-marquee-block {
        aspect-ratio: 1 / 1.195 !important;
        position: relative !important;
        width: 100% !important;
    }
    .image-marquee-block img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 991px) {
    .custom-auto-scroll-loop,
    .custom-auto-scroll-parent {
        gap: 20px;
    }
    .image-marquee-block {
        width: 200px !important;
        aspect-ratio: 1 / 1.2 !important;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .hero-section-right > .group-block {
        gap: 20px !important;
    }
}

@media (max-width: 767px) {
    .custom-auto-scroll-loop,
    .custom-auto-scroll-parent {
        gap: 10px;
    }
    .image-marquee-block {
        width: 140px !important;
        aspect-ratio: 1 / 1.2 !important;
    }
}
/* end hero section */

/* trusted brands section */

.trusted-brands-container-inner {
    border: 1px solid #d0d0d0;
    border-radius: 15px;
}
.trusted-brands-container-inner {
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
.heading-block strong {
    font-weight: inherit; 
}
.trusted-brands-section[data-animate="true"] .heading-block h2 {
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}
.trusted-brands-section[data-animate="true"] .group-block > .group-block:last-child {
    opacity: 0;
    visibility: hidden;
}@media (max-width: 767px) {
    .trusted-brands-container-inner .group-block > .group-block.d-block.d-md-none .heading-block h2 {
        margin-bottom: 33px;
    }
    .trusted-brands-container-inner .group-block > .group-block.d-block.d-md-none .heading-block h2:last-child {
        margin-bottom: 0;
    }
    .trusted-brands-container-inner .group-block > .group-block.d-block.d-md-none .heading-block {
        overflow: hidden;
    }
}






[class*=main-title-] h2 {
    margin-bottom: 0;
}
[class*=expert-info-block-] {
    border-radius: 15px;
    margin-bottom: 39px;
    position: relative;
    background: transparent;
    background: linear-gradient(3deg, #FD5227 -37.26%, #FDF6E3 173.44%);
}
[class*=expert-info-block-]:last-child {
    margin-bottom: 0;
}
.expert-info-content-outer {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding: 49px 50px;
    transition: all 0.25s ease-in-out;
    background-color: var(--pe-body-bg);
    outline: 1px solid var(--pe-color-gray-200);
}
[class*=expert-info-block-]:hover .expert-info-content-outer {
    transform: translate(10px, -10px);
    outline: none;
}
[class*=expert-info-block-] picture {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    clip-path: inset(0 round 15px);
}
[class*=expert-info-block-] picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2.5px);
}
[class*=expert-info-block-] picture:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
[class*=expert-info-block-]:hover picture {
    opacity: 1;
    visibility: visible;
}
[class*=expert-info-block-] .expert-info-text {
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.02em;
    max-width: 383px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 51px;
}
[class*=expert-info-block-]:hover .expert-info-text {
    color: var(--pe-color-white);
}
.expert-info-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.03em;
    color: var(--pe-color-carbon-black);
    stroke: var(--pe-color-carbon-black);
    font-family: var(--pe-body-font-family);
}
[class*=expert-info-block-]:hover .expert-info-link {
    color: var(--pe-color-white);
    stroke: var(--pe-color-white);
}
.expert-info-link svg {
    position: relative;
    transition: all 0.5s ease-in-out;
    top: 1px;
}
.expert-info-link:hover svg {
    transform: translateX(6px);
}
.expert-info-sticky-content-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    position: relative;
}
.expert-info-sticky-content-inner [class*=main-title-] {
    opacity: 0;
    grid-area: 1 / 1 / 2 / 2;
    transition: opacity 0.3s ease-in-out;
}
.expert-info-sticky-content-inner [class*=main-title-]:first-child {
    opacity: 1;
}
.expert-info-thumbs-gallery .expert-info-main-swiper swiper-slide {
    padding-top: 44px;
}
.expert-info-thumbs-swiper swiper-slide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.expert-info-thumbs-swiper swiper-slide-active {
    opacity: 1;
}

.expert-info-block-mobile {
    aspect-ratio: 1/1.351351351;
    border: none;
}
.expert-info-block-mobile picture {
    opacity: 1;
    visibility: visible;
}
.expert-info-block-mobile .expert-info-mobile-outer {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: all .5s ease-in-out;
}
.expert-info-block-mobile .expert-info-mobile-outer {
    display: flex;
    align-items: flex-end;
}
.swiper-slide-active .expert-info-block-mobile .expert-info-mobile-outer {
    transform: translate(10px, -10px);
}
.expert-info-block-mobile .expert-info-text {
    color: var(--pe-color-white);
    margin-bottom: 25px;
}
.expert-info-mobile-inner {
    padding: 28px 20px;
}
.expert-info-mobile-inner .expert-info-link {
    color: var(--pe-color-white);
    stroke: var(--pe-color-white);
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}
.expert-info-main-swiper {
    margin-right: calc(var(--pe-container-x-padding) * -1);
}
@media (min-width: 768px) {
    .expert-info-sticky-content {
        position: sticky;
        top: 153px;
        padding-top: 42px;
        padding-left: 35px;
    }
}
@media (max-width: 767px) {
    [class*=expert-info-block-] .expert-info-text p br {
        display: none;
    }
}






.service-plan-section__content p:last-child {
    margin-bottom: 0;
}
.service-plan-section .tabs .tablink {
    margin-bottom: 0;
}
.service-plan-section__plans .service-plan-card {
    flex: 1;
}
.service-plan-section__plans .service-plan-card_inner {
    text-align: left;
    outline: 1px solid #434343;
    background: #141414;
    padding: 20px;
    color: #f7f7f7;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-plan-card .service-plan-card__price strong {
    text-transform: none;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-size: 78.5%;
}
.service-plan-card__features p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 8px;
}
.service-plan-card__features p:last-child {
    margin-bottom: 0;
}
.service-plan-card__features p svg {
    margin-top: 5px;
}
.service-plan-section__header {
    text-align: center;
}
.service-plan-section__plans {
    gap: 25px;
    flex-direction: column;
}
@media (min-width: 768px) {
    .service-plan-section__plans {
        gap: 31px;
        flex-direction: row;
    }
    .service-plan-section__plans .service-plan-card_inner {
        padding: 30px;
    }
    .service-plan-card__features p {
        gap: 12px;
    }
    .service-plan-card .service-plan-card__price strong {
        font-size: 61%;
    }
}
@media (min-width: 1200px) {
    .service-plan-section__header {
        padding-top: 93px;
        padding-right: 30px;
        text-align: left;
    }
    .service-plan-section__plans .service-plan-card_inner {
        transition: all 0.25s ease-in-out;
    }
    .service-plan-card:hover .service-plan-card_inner {
        transform: translate(10px, -10px);
    }
}







.comparison-section .tabs {
    border: none;
    gap: 0;
    border-radius: 0;
}
.comparison-section .tabs .tablink {
    margin: 0;
    flex: 1;
    border-radius: 0;
    border: 1px solid var(--pe-color-gray-800);
    border-bottom: none;
    padding: 6px 19px;
}
.comparison-section .tabs .tablink:first-child {
    border-top-left-radius: 15px;
}
.comparison-section .tabs .tablink:last-child {
    border-top-right-radius: 15px;
}
.comparison-section .tabs .tablink.active {
    color: var(--pe-color-seasalt);
    border-color: var(--pe-color-primary-600);
    background-color: var(--pe-color-primary-1000);
}
.comparison-section .tab-pane .block-content {
    border: 1px solid var(--pe-color-primary-600);
    padding-inline: 20px;
    border-radius: 0 0 15px 15px;
}

.comparison-section table {
    width: 100%;
    color: var(--pe-color-seasalt);
    text-align: center;
}
.comparison-section table thead th {
    padding-inline: 19px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.02em;
    padding-block: 20px 1px;
}
.comparison-section table tbody td {
    padding: 6.5px 31px;
}
.comparison-section table tbody td:first-child {
    text-align: left;
    padding-left: 0;
    min-width: 200px;
}
.comparison-section table tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--pe-color-gray-900);
}
.comparison-section table tbody tr:last-child td {
    padding-bottom: 18px;
}
.comparison-section .icon-tick {
    height: 12px;
    width: 16px;
    color: var(--pe-color-primary-600);
}
.comparison-section .icon-cross {
    height: 12px;
    width: 12px;
}
@media (min-width: 992px) {
    .comparison-section .tabs .tablink {
        padding: 9px 19px;
    }
    .comparison-section .tab-pane .block-content {
        padding-inline: 40px;
    }
    .comparison-section table tbody td {
        padding: 9.5px 10px;
    }
    .comparison-section table thead th {
        padding-inline: 52px;
        padding-block: 30px 10px;
        font-size: 18px;
    }
    .comparison-section table thead th:not(:first-child) {
        width: 20%;
    }
    .comparison-section table tbody tr:last-child td {
        padding-bottom: 38px;
    }
    .comparison-section .icon-tick {
        height: 14px;
        width: 18px;
    }
    .comparison-section .icon-cross {
        height: 14px;
        width: 14px;
    }
}
@media (max-width: 767px) {
    .comparison-section .tab-content {
        overflow-x: auto;
        overflow-y: hidden;
        margin-inline: -20px;
        padding-inline: 20px;
        scrollbar-width: 0;
        -ms-overflow-style: none;
        &::-webkit-scrollbar {
            display: none;
        }
    }
    .comparison-section .tab-pane {
        width: fit-content;
    }
}




.spectrum-item .spectrum-item-title {
    font-size: 15px;
    font-family: var(--pe-font-family-heading-secondary);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.spectrum-item {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    background: #141414;
}
.spectrum-item img {
    margin-top: auto;
    align-self: flex-end;
}
.spectrum-array-section .animation-image {
    position: absolute;
    top: 40.5%;
    left: 0;
    right: 0;
    width: 51.62%;
    margin: 0 auto;
    display: none;
}
@media (min-width: 768px) {
    .spectrum-item .spectrum-item-title {
        font-size: 16px;
    }
    .spectrum-item {
        aspect-ratio: 1/0.9027777777777778;
    }
    .spectrum-item .spectrum-item,
    .spectrum-array-section .btn {
        opacity: 0;
        visibility: hidden;
    }
}
@media (min-width: 1200px) {
    .spectrum-array-section .animation-image {
        display: block;
    }
}






.masonry-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  /* Card style (same as screenshot) */
  .testimonial-card {
    background: #f7f7f7;
    border: 1px solid #d0d0d0;
    padding: 19px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    color: #141414;
  }

  .testimonial-card > p {
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp);
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--pe-testimonial-margin);
  }
  .author-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
}
.author-meta {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.brand-logo {
  max-height: 20px;
  width: auto;
  height: auto;
}
.mobile-testimonial-slider {
  margin-inline: calc(var(--pe-container-x-padding) * -1);
}
.testimonial-card .author-block {
  margin-top: auto;
}
.mobile-testimonial-slider .testimonial-card {
  min-height: 293px !important;
}

/* Fade-out animation for testimonial cards */
@keyframes testimonialFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* Fade-in animation for testimonial cards */
@keyframes testimonialFadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

.testimonial-card.animate-fade-out {
  animation: testimonialFadeOut 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform: translateZ(0);
  will-change: opacity;
}

.testimonial-card.animate-fade-in {
  animation: testimonialFadeIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform: translateZ(0);
  will-change: opacity;
}


@media (min-width: 992px) {
  .desktop-testimonial-slider {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .testimonial-card {
    flex: 0 0 auto !important;
  }
  .testimonial-card.small-block {
    height: 158px;
  }
  .testimonial-card.medium-block {
    height: 222px;
  }
  .testimonial-card.large-block {
    height: 286px;
  }
}




.contact-us-inner {
    background: #141414;
    margin-inline: calc(var(--pe-container-x-padding) * -1);
    /* padding: 40px var(--pe-container-x-padding); */
    padding-inline: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 0;
}
.contact-us-inner > picture {
    display: none;
}
.contact-us-content-text p:last-child {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .contact-us-inner {
        border-radius: 15px;
        margin-inline: 0;
        /* padding: 6.3% 9.3% 4.8% 7.1%; */
        flex-direction: row;
        gap: 7%;
        align-items: flex-start;
    }
    .contact-us-content {
        padding-top: 20px;
        flex: 0 0 auto;
        width: 37.171%;
        transition: all 0.6s cubic-bezier(.25, 1.50, .40, 1);
    }
    .global-contact-us-section .contact-us-inner.hover-effect .contact-us-content {
        transform: translateX(20px);
    }
    .contact-us-liquid {
        flex: 1;
    }
    .contact-us-inner > picture {
        position: absolute;
        display: block;
        bottom: 41px;
        left: 40px;
        z-index: -1;
    }
    .contact-us-liquid-inner{
        transition: all 0.6s cubic-bezier(.25, 1.50, .40, 1);
    }
    .global-contact-us-section .contact-us-inner.hover-effect .contact-us-liquid-inner{
        transform: translate(10px, -10px);
    }
}
@media (min-width: 992px) {
    .contact-us-inner {
        padding-inline: 116px;
    }
}




.auto-scroll-loop {
    --pe-smooth-scroll-time: 20s;
    -webkit-animation: scroll-left var(--pe-smooth-scroll-time) linear infinite;
    animation: scroll-left var(--pe-smooth-scroll-time) linear infinite;
    white-space: nowrap;
    flex-shrink:0;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.auto-scroll-loop .image-block img{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@-webkit-keyframes scroll-left {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes scroll-left {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}