
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(.4, 2, .6, 1);
    pointer-events: none;
}

.hero-bg.visible {
    opacity: 1;
    z-index: 1;
}

.hero-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0;
    top: -115px;
}

.hero-section.bg-fade {
    opacity: 0.3;
    transition: opacity 0.4s cubic-bezier(.4, 2, .6, 1);
}

.hero-section:not(.bg-fade) {
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(.4, 2, .6, 1);
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero-headline {
    color: #fff;
    font-size: 4vw;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.hero-section .hero-headline-static {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.headline-panel {
    font-size: 80px;
}

.hero-section .hero-headline-animated {
    font-size: 80px;
    font-weight: 800;
    min-height: 9.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(.4, 2, .6, 1);
    color: white;
}

.rtl .hero-section .hero-headline-animated {
    top: 0;
}

.hero-section .hero-headline-animated.fade {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(.4, 2, .6, 1);
}

.hero-section .headline-slide {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
    white-space: nowrap;
    color: white;
}
.hero-section .headline-slide.active {
    opacity: 1;
    transform: translateX(-50%) scale(1.04);
    color: white;
}

.partner-logos-swiper {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding-bottom: 2.5rem;
    background: transparent;
    padding-left: 15px;
    padding-right: 15px;
}

.partner-logos-swiper .swiper {
    width: 80%;
}

.partner-logos-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logos-swiper img {
    filter: grayscale(1) brightness(2);
    opacity: 0.9;
    height: 150px;
    width: 100%;
    max-width: 220px;
    object-fit: none;
}


.services-section {
    margin-top: 0;
    padding-top: 64px;
    background: #fff;
}

.services-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin-top: 32px;
}

.service-card {
    flex: 0.7 1 0;
    min-width: 120px;
    max-width: 340px;
    height: 380px;
    border-radius: 14px !important;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: all 0.7s cubic-bezier(.4, 2, .6, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card .service-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: filter 0.4s, opacity 0.4s;
    filter: brightness(0.5) grayscale(0.1);
    opacity: 1;
}

.service-card .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.55);
    z-index: 2;
    transition: background 0.4s, opacity 0.4s;
    opacity: 1;
}

.service-card .service-content {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    margin: 0 16px 24px 16px;
    padding: 16px 16px 16px 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: left;
    min-height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card .service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-card .service-desc {
    font-size: 1.05rem;
    color: #454551;
}

.service-card.expanded {
    flex: 2 1 0;
    width: 480px;
    min-width: 480px;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    transform: scale(1.04);
}

.service-card.collapsed {
    flex: 0.5 1 0;
    width: 80px;
    min-width: 80px;
    z-index: 1;
    opacity: 0.85;
}

.service-card.expanded .service-bg {
    filter: brightness(1) grayscale(0);
    opacity: 1;
}

.service-card.expanded .service-overlay {
    background: rgba(44, 62, 80, 0.15);
    opacity: 0.3;
}

.service-card.collapsed .service-bg {
    filter: brightness(0.5) grayscale(0.1);
    opacity: 1;
}

.service-card.collapsed .service-overlay {
    background: rgba(44, 62, 80, 0.55);
    opacity: 1;
}

@media (max-width: 991px) {
    .service-card, .service-card.expanded, .service-card.collapsed {
        max-width: none;
        min-width: auto;
        height: 260px;
        flex: none;
        transform: none !important;
    }

    .service-card .service-bg {
        filter: brightness(1) grayscale(0);
        opacity: 1;
    }

    .service-card .service-overlay {
        background: rgba(44, 62, 80, 0.15);
        opacity: 0.3;
    }
}

.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 300px;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 0;
}

.about-section .col-md-4 {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-section .stat-card {
    border-radius: 24px;
    box-shadow: 0 8px 48px rgba(44, 62, 80, 0.13);
    min-height: 300px;
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 36px 0 28px 0;
}

.about-section .stat-card.featured.with-bg {
    background: none;
    color: #fff;
    min-height: 380px;
    justify-content: center;
}

.stat-bg-img{
    background: #009D89 !important;
}

.about-section .stat-card.featured .stat-icon,
.about-section .stat-card.featured .stat-number,
.about-section .stat-card.featured .stat-desc {
    color: #fff !important;
    fill: #fff !important;
    z-index: 2;
    position: relative;
}

.about-section .stat-card .stat-icon {
    height: 56px;
    width: 56px;
    margin-bottom: 18px;
    z-index: 2;
    position: relative;
}

.about-section .stat-card .stat-number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 0.25rem;
    z-index: 2;
    position: relative;
}

.about-section .stat-card .stat-desc {
    font-size: 1.1rem;
    font-weight: 500;
    z-index: 2;
    position: relative;
    padding: 0 10px;
    text-align: center;
    color: #454551;
}

.about-section .stat-card.image-only {
    background: url('/images/about-imageonly.webp') center/cover no-repeat;
    min-height: 300px;
    height: 300px;
    box-shadow: 0 8px 48px rgba(44, 62, 80, 0.13);
}

.about-section .stat-card:hover {
    box-shadow: 0 16px 64px rgba(44, 62, 80, 0.18);
    transform: scale(1.0);
    z-index: 2;
}

@media (max-width: 991px) {
    .stat-number {
        font-size: 25px !important;
    }
    .stat-desc {
        font-size: 12px !important;
    }
    .about-section .stat-card.image-only {
        min-height: 165px;
        height: 165px;
    }
    .about-section .about-stats {
        gap: 18px 0;
    }

    .about-section .col-md-4 {
        gap: 18px;
    }

    .about-section .stat-card{
        min-height: 160px;
        padding: 18px 0 12px 0;
        border-radius: 10px;
    }

    .about-section .stat-card.featured.with-bg {
        min-height: 300px;
        padding: 18px 0 12px 0;
    }
    .stat-group {
        margin-top:  0px !important;
    }
    .stat-bg-overlay {
        border-radius: 10px;
    }
}

.partners-swiper .swiper-wrapper {
    align-items: stretch;
}

.partners-swiper .swiper-slide {
    transition: opacity 0.3s, transform 0.3s;
    filter: grayscale(0.2);
    display: flex;
    align-items: stretch;
    height: auto;
    justify-content: center;
}

.partners-swiper .swiper-slide.swiper-slide-active {
    opacity: 1;
    z-index: 2;
    filter: none;
}

.partners-swiper .swiper-slide.swiper-slide-next,
.partners-swiper .swiper-slide.swiper-slide-prev {
    opacity: 0.7;
    z-index: 1;
    filter: grayscale(0.1);
}

.partner-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 370px;
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(24, 28, 36, 0.55) 60%, rgba(24, 28, 36, 0.95) 100%);
    z-index: 2;
    border-radius: 24px;
}

.partner-tag {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 3;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 8px 24px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.13);
    background: #007aff;
    color: #fff;
    letter-spacing: 0.02em;
}

.partner-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 0 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partner-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    text-align: left;
    line-height: 1.2;
}

.partner-desc {
    color: #e6e6e6;
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.3;
}

.partner-btn {
    align-self: flex-end;
    border-radius: 14px;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 0.7rem 2.2rem;
    background: #20c997;
    color: #fff;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.partner-btn:hover {
    background: #17a589;
    color: #fff;
}


.swiper-button-next.partner-arrow {
    right: 16px;
}

.swiper-button-next.partner-arrow:after {
    content: "\f285";
}
@media (max-width: 991px) {
    .partner-content {
        padding: 0 12px 18px 12px;
    }

    .partner-title {
        font-size: 1.1rem;
    }

    .partner-desc {
        font-size: 0.98rem;
    }

    .partner-btn {
        font-size: 0.98rem;
        padding: 0.5rem 1.2rem;
    }

    .swiper-button-next.partner-arrow {
        right: 2px;
    }
}

.app-badges img {
    height: 48px;
    margin-right: 12px;
}

.services-swiper .swiper-slide {
    width: auto;
}

.service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, width 0.3s ease;
    width: 220px;
}

.service-card:hover {
    transform: scale(1.0);
    width: 340px;
    z-index: 10;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: filter 0.3s ease;
}

.service-card:hover .service-bg {
    filter: brightness(1) grayscale(0);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: background 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.service-card.auction .service-overlay {
    background: rgba(0, 123, 255, 0.7);
}

.service-card.assist .service-overlay {
    background: rgba(0, 174, 239, 0.7);
}

.service-card.autocare .service-overlay {
    background: rgba(255, 102, 0, 0.7);
}

.service-card.claims .service-overlay {
    background: rgba(0, 174, 139, 0.7);
}

.service-card:hover .service-overlay {
    opacity: 0.3;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 16px 16px 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    z-index: 3;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.service-title {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.3;
    color: #222;
}

.services-swiper .swiper-slide-active .service-card {
    transform: scale(1.00);
}

.services-swiper .swiper-pagination-bullet-active {
    background: #009D89;
}

@media (max-width: 991px) {
    .service-card:hover {
        transform: none;
        width: auto;
    }

    .service-card:hover .service-bg {
        filter: none;
    }

    .service-card:hover .service-overlay {
        opacity: 1;
    }

    .service-card {
        width: 100% !important;
        margin-bottom: 1rem;
        border-radius: 16px;
    }

    .services-swiper .swiper-wrapper {
        padding-bottom: 1rem;
    }

    .service-content {
        width: calc(100% - 24px) !important;
        margin: 0 12px 12px 12px !important;
        border-radius: 16px 16px 16px 16px;
    }
}

.services-swiper .swiper-wrapper {
    display: flex;
}

.services-swiper .swiper-slide {
    flex: 1 1 0;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}

.service-card {
    width: 100%;
    max-width: 350px;
    min-width: 220px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.services-swiper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .service-card {
        max-width: 90vw;
        min-width: 300px;
    }
    .partner-logos-swiper img {
        object-fit: cover;
    }
}

@media (max-width: 575px) {
    .service-card {
        max-width: 98vw;
        min-width: 140px;
    }
    .swiper-next {
        display: none;
    }
    .swiper-prev {
        display: none;
    }
}

.timeline-line {
    content: "";
    position: absolute;
    left: 140px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #009D89;
    z-index: 1;
}

.timeline-section {
    background: #CAE8E4;
}
.timeline {
    display: flex;
    position: relative;
    margin: 2rem 0;
}

.timeline-nav {
    flex: 0 0 100px;
}

.timeline-nav .nav-item {
    padding: 15px 10px 15px 10px;
    color: #767676;
    cursor: pointer;
    transition: color .2s, font-weight .2s;
    font-size: 24px;
    opacity: 0.4;
    font-weight: 600;
}

.timeline-nav .nav-item.active {
    color: #009D89;
    font-weight: 600;
    opacity: 1;
}

.timeline-content {
    flex: 1;
    position: relative;
    max-height: 60vh;
    overflow-y: auto;
    padding-left: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.timeline-content::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.timeline-event {
    position: relative;
    margin-bottom: 30px;
}

.timeline-event.active {
    opacity: 1;
}

.timeline-event .icon {
    width: 100%;
    height: 100%;
    background: #65CBC2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: .4;
    transition: transform .3s, background .3s, opacity .3s;
    z-index: 3;
}

.timeline-event.active .outer-icon {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
    background: #009D89;
}

.timeline-event.active h5 {
    opacity: 1;
}

.timeline-event.active p {
    opacity: 1;
}

.timeline-event.active .outer-icon {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
    background: #009D89;
}

.timeline-event.active .icon {
    opacity: 1;
    background: #009D89;
}

.timeline-event h5 {
    margin-top: 0;
    font-weight: 600;
    font-size: 24px;
    color: #000;
    opacity: 0.4;
}

.timeline-event p {
    margin: .25rem 0 0;
    color: #454551;
    line-height: 1.5;
    font-size: 16px;
    opacity: 0.4;
}


@media (max-width: 991px) {
    .services-swiper .swiper-wrapper {
        display: flex;
        flex-direction: column;
    }

    .services-swiper .swiper-slide {
        margin-bottom: 20px !important;
    }
    .service-card {
        width: 100% !important;
        max-width: 95vw;
        min-width: 140px;
        margin: 0 auto 1rem auto;
        border-radius: 16px;
        height: auto;
    }
}

.service-card {
    min-height: 340px;
    max-height: 480px;
    height: auto;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: scale(1.0);
    z-index: 10;
}

@media (min-width: 992px) {
    .services-section {
        margin-top: -30px !important;
        padding-top: 0px;
    }

    .partners-swiper .partner-image {
        position: relative;
        z-index: 1;
        cursor: pointer;
        transition: transform 0.3s ease, filter 0.3s ease;
    }
    .partners-swiper .swiper-wrapper{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.partner-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.partner-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.partner-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.partner-image {
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.9);
    transform: scale(1);
    z-index: 1;
}

.partner-card:hover .partner-image {
    transform: scale(1.1);
    filter: brightness(1);
    z-index: 10;
}

.partner-card:hover .partner-body {
    background: #FFF;
}

.partner-image {
    position: relative;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.partner-image .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.partner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
    max-height: 100px;
}

.partner-body {
    padding: 1rem;
    background: #F6F6F6;
    height: 100%;
}

.partner-title {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.partner-text {
    margin: 0;
    margin-top: 6px;
    font-size: 10px;
    color: #454551;
    line-height: 1.4;
}

.card {
    background: #fff;
    border-radius: 16px !important;
    border: 0 !important;
    padding: 0 !important;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    opacity: .5;
}

.service-badge {
    background: #fff;
    border: 1px solid #72579C;
    color: #72579C !important;
    font-size: 0.75rem;
    padding: 0.5em 1em !important;
    border-radius: 50px !important;
    width: fit-content;
    font-weight: 400 !important;
    margin-bottom: 4px;
}

.card-1 .service-badge, .card-5 .service-badge , .card-6 .service-badge , .card-8 .service-badge {
    color: #00AFA0 !important;
    border-color: #00AFA0 !important;
}
.bi-star-fill {
    font-size: 20px;
    color: #009D89;
}

.service-cards {
    display: flex;
}

.service-card {
    flex: 1;
    transition: flex 0.8s ease-in-out;
}

@media (hover: hover) and (min-width: 992px) {
    .service-cards:hover .service-card {
        flex: 0.8;
    }

    .service-cards:hover .service-card:hover {
        flex: 2;
    }
}

@media (min-width: 992px) {
    .service-card.assist {
        flex: 2;
    }
}

.card .review {
    font-size: 12px;
    color: #454551;
}


@media (min-width: 991px) {
    .review-container {
        padding-top: 110px;
    }

    .card-2, .card-4, .card-6, .card-8 {
        margin-top: -100px
    }

    .hero-section .hero-headline-animated {
        top: -30px;
    }
}

.download-section {
    background: #fff;

}
.download-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}
.download-section p {
    font-size: 1rem;
    color: #6c757d;
}

.app-buttons img {
    height: 40px;
    max-width: 100%;
}
.app-buttons {
    justify-content: center;
}
.device-images {
    position: relative;
    width: 100%;
    padding-top: 120%;
}
.device-images .device {
    position: absolute;
    max-width: 45%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-radius: 20px;
}

.device-1 {
    top: 10%;
    left:  5%;
    transform: rotate(-15deg);
}
.device-2 {
    top:  0%;
    left: 35%;
    transform: rotate(5deg);
}
.device-3 {
    top: 25%;
    left: 65%;
    transform: rotate(-5deg);
}

@media (max-width: 767px) {
    .device-images { padding-top: 200%; }
    .device-images .device { max-width: 60%; }
    .device-1 { top: 5%; left: 5%; }
    .device-2 { top: 20%; left: 20%; }
    .device-3 { top: 40%; left: 40%; }
    .partner-logos-swiper .swiper {
        width: 100% !important;
    }
    .review-slider .swiper-slide {
        min-height: 320px !important;
        height: 320px !important;
    }
    .review-slider {
        padding-bottom: 20px;
    }
    .review-slider .swiper-wrapper {
        padding-bottom: 50px;
    }

    .services-section {
        margin-bottom: 0px !important;
    }


    .hero-0 {
        background-position: -656px !important;
    }

    .hero-1 {
        background-size: cover !important;
        background-position: -856px !important;
    }
    .partners-swiper {
        padding-bottom: 60px !important;
    }
    #partners {
        padding-bottom: 40px !important;
    }
    .stat-group {
        padding-right: 0 !important;
    }
    .rtl .stat-group {
        padding-right: 0 !important;
        padding-left: 10px !important;
    }
    .hero-section .hero-headline-animated {
        min-height: 12.2rem;
    }
}

.btns-install .assist{
    margin-left: 10px;
}
.rtl .btns-install .assist{
    margin-right: 10px;
}
.btns-install {
    align-items: center;
    justify-content: center;
    display: flex;
}
.btn-group {
    display: inline-flex;
    gap: 0.5rem;
}
.app-toggle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border: 1px solid #6f42c1 !important;
    border-radius: 50px;
    background-color: #fff;
    color: #6f42c1 !important;
    transition:
            background-color 0.2s ease,
            color 0.2s ease,
            border-color 0.2s ease;
    height: 36px !important;
}

.app-toggle[data-app="auction"] {
    border: 1px solid #6f42c1 !important;
}
.app-toggle[data-app="assist"] {
    border: 1px solid #007DAC !important;
    color: #007DAC !important;
}

.app-toggle.active[data-app="auction"] {
    background-color: #6f42c1 !important;
    border-color:    #6f42c1 !important;
    color:           #fff !important;
}
.app-toggle.active[data-app="assist"] {
    background-color: #007DAC !important;
    border-color:    #007DAC !important;
    color:           #fff !important;
}

.app-toggle:not(.active):hover {
    background-color: rgba(111, 66, 193, 0.1) !important;
}

.app-toggle:focus {
    box-shadow: none !important;
    outline: none;
}
.download-section .app-image{
    width: 100%;
    max-height: 500px;
    object-fit: scale-down;
}
.stat-number{
    color: #009D89;
}


@media (min-width: 992px) {
    .services-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 24px;
    }

    .services-swiper .swiper-slide {
        flex: 1 1 0;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        justify-content: center;
        align-items: stretch;
        height: auto;
    }

    .services-swiper {
        overflow: visible !important;
    }
}

@media (max-width: 991px) {

    .services-section {
        margin-top: -140px !important;
    }

    .hero-section {
        min-height: 80vh;
        height: 80vh;
    }

    .hero-section .hero-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-section .hero-headline-static, .hero-section .hero-headline-animated , .headline-panel{
        font-size: 50px;
        line-height: 60px;
    }
    .hero-headline-static {
        margin-top: -100px;
    }

    .partner-logos-swiper img {
        height: 80px;
        max-width: 120px;
    }

    .partner-logos-swiper {
        padding-left: 15px;
        padding-right: 15px;
    }
    .timeline::before{ display: none;}
    .timeline-event {
        padding-bottom: 10px;
    }
    .timeline-event h5{
        font-size: 18px;
    }
    .timeline-event p{
        font-size: 12px;
    }
    .timeline-nav {
         flex: 0 0 70px;
     }
}
.card-container {
    padding-top: 0;
    padding-left: 15px;
    right: 15px;
    margin-top: 20px !important;
}
.review-container {
    margin-top: 50px;
}
.avatar-circle span {
    font-size: 24px;
    margin-top: 0;
}
.rtl .avatar-circle span {
    margin-top: -10px !important;
}

.btn-section .main-container-description {
    margin-bottom: 10px;
}
.partner-card {
    width: 100%;
}

.timeline-content {
    overflow-y: auto;
    max-height: 70vh;
    position: relative;
}
.fade-container {
    position: relative;
    max-height: 14000px;
    overflow-y: auto;
    padding-bottom: 0;
}


.fade-content {
    position: relative;
    padding: 1rem;
    color: #333;
    font-family: sans-serif;
    z-index: 1;
}

.hero-headline-animated {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.hero-headline-animated span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.4s;
    opacity: 0;
}

.hero-headline-animated span.active {
    opacity: 1;
}
.swiper-next{
    position: absolute;
    right: 120px;
    bottom: 11rem;
}
.swiper-prev{
    position: absolute;
    left: 120px;
    bottom: 11rem;
}
.hover-effect:hover { cursor: pointer; }
.partners-swiper .swiper-slide.swiper-slide-next, .partners-swiper .swiper-slide.swiper-slide-prev {
    opacity: 1;
}
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;

    width: 10px !important;
    height: 10px!important;
}
.swiper-pagination-bullet-active {
    background: #2ca58d !important;

    width: 10px!important;
    height: 10px!important;
}

.rtl .timeline-event h5{
    font-size: 20px !important;
}
.rtl .timeline-event p{
    font-size: 14px;
}
.partner-image-container {
    overflow: hidden;
}
