/* ===== FLEXBOX UTILITIES ===== */
.d-flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column {
    flex-direction: column;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.m-0 {
    margin: 0;
}

.p-0 {
    padding: 0;
}

/* ===== FLEXBOX UTILITIES ENDS ===== */

:root {
    --primary-text-color: #FAFAFA;
    --secondary-text-color: #E5E5E5;
    --border-color: #292929;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0 !important;
    margin: 0 !important;
}

body {
    background-color: #FFFFFF !important;
}

.cfibreOrangeBtn {
    margin: 0 !important;
    font-family: 'Poppins-medium' !important;
}

.transparent-btn {
    background-color: transparent !important;
    border-color: #0f0f0f !important;
    color: #141414 !important;
}

h1 {
    color: aquamarine;
    font-size: 30px;
}

/* common */
.horizontal-section-breaker {
    background-color: rgb(41 41 41 / 20%);
    width: 80%;
    height: 1px;
    border: none;
    padding: 0;
    margin: 0 auto;
}

/* ---------------------------- hero section start -------------------------- */
.hero-banner {
    margin: 56px 24px;
    margin-top: calc(128px + 48px);
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Cover full element */
    padding: 2px;
    /* Border thickness */
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
    /* So clicks go through */
}

.hero-banner {
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    background: url('/cellc/img/business/fttb/hero-banner.webp') center/cover no-repeat;
    z-index: 0;
    min-height: 768px;
    padding: 80px 256px 80px 80px;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-banner .hero-banner__content {
    display: flex;
    flex-direction: column;
}

.hero-banner .hero-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(2, 2, 2, 0.3), rgba(2, 2, 2, 0.3));
}

.hero-banner h1 {
    font-family: 'CellCSans-bold';
    font-weight: 400;
    font-size: 86px;
    line-height: 110%;
    color: #FAFAFA;
    z-index: 2;
    margin-bottom: 12px !important;
}

.hero-banner h6 {
    font-family: 'Cell C Sans';
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    color: #FAFAFA;
    margin-bottom: 24px !important;
    z-index: 2;
}

.hero-banner .cfibreOrangeBtn {
    z-index: 2;
}

/* ---------------------------- hero section ends -------------------------- */

/* ---------------------------- Advantages section starts -------------------------- */
.advantages {
    padding: 56px 25px 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.advantages .advantages__header {
    text-align: center;
    color: #1e1e1e;
    font-family: 'CellCSans-semibold';
    font-size: 54px;
    line-height: 130%;
}

.advantages .advantages__cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.advantages .advantages__cards .advantages__card {
    width: 450px;
    height: 607px;
    border-radius: 16px;
    background-color: #292929;
    position: relative;
    overflow: hidden;
    border: 1.8px solid #d6d6dd;

    /* display: flex;
    padding: 24px 32px;
    align-items: flex-end; */
}

.advantages .advantages__cards .advantages__card .advantages__card--background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages .advantages__cards .advantages__card .advantages__card--overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 23.18%, rgba(255, 255, 255, 0.8) 77.26%);
}

.advantages .advantages__cards .advantages__card .advantages__card--people_count {
    position: absolute;
    top: 32px;
    left: 24px;
    border: 1.79px solid #0F0F0F;
    background-color: #FDFDFD;
    padding: 3.58px 14.32px;
    color: #141414;
    font-family: 'Poppins-medium';
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    border-radius: 7.16px;
}

.advantages .advantages__cards .advantages__card .advantages__card__content {
    position: absolute;
    bottom: 32px;
    left: 24px;
    right: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.advantages .advantages__cards .advantages__card .advantages__card__content .cfibreOrangeBtn {
    width: 100%;
}

.advantages .advantages__cards .advantages__card .advantages__card__content .pricing-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.advantages .advantages__cards .advantages__card .advantages__card__content .pricing-section h2 {
    color: #1e1e1e;
    font-family: 'CellCSans-bold';
    font-size: 44px;
    line-height: 130%;
}

.advantages .advantages__cards .advantages__card .advantages__card__content .pricing-section .price-card {
    height: 107px;
    width: 187px;
    background-color: #ED6920;
    border-radius: 12px;
    padding: 2.25px;
}

.price-top {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    background-color: #FDFDFD;
    height: 81px;
    padding: 8px;
}

.from {
    font-size: 16px;
    color: #8D8D8D;
    font-family: 'Poppins';
}

.price-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.price {
    font-size: 36px;
    color: #1e1e1e;
    font-family: 'CellCSans-bold';
    font-size: 36px;
    line-height: 130%;
}

.meta {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #424242;
    font-family: 'Poppins';
}

.price-speed {
    display: flex;
    flex-direction: row;
    gap: 15.8px;
    margin-top: 1.5px;
    align-items: center;
}

.price-speed .high-speed,
.price-speed .low-speed {
    display: flex;
    gap: 2.8px;
    color: #1e1e1e;
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 145%;
}


.price-speed .vertical-line {
    width: 1.5px;
    height: 16px;
    background-color: #FDD1B9;
}

.horizontal-breaker {
    width: 100%;
    height: 1.79px;
    background-color: #A3A3A3;
    border-radius: 1.79px;
    margin: 24px 0;
}

.advantages__card__content--description {
    padding-right: 87px;
    margin-bottom: 12px;
}

.advantages__card__content--description p {
    color: #1e1e1e;
    font-family: 'Cell C Sans';
    font-size: 22px;
    line-height: 120%;
}

/* ---------------------------- Advantages section ends -------------------------- */

/* ---------------------------- Why section starts -------------------------- */
/* Section */
.why {
    background: #FDFDFD;
    text-align: center;
}

.why__container {
    margin: 0 auto;
}

/* Title */
.why__title {
    color: #1e1e1e;
    font-family: 'CellCSans-semibold';
    font-size: 54px;
    line-height: 130%;
    text-align: center;
    margin-top: 56px !important;
}

/* Features row */
.why__features {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin: 48px 40px 64px;
}

/* Individual feature */
.why__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    text-align: left;
}

/* Icon */
.why__icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Text content */
.why__heading {
    color: #1e1e1e;
    font-family: 'Cell C Sans';
    font-size: 37px;
    line-height: 130%;
    margin-bottom: 8px !important;
}

.why__text {
    color: #424242;
    font-family: 'Cell C Sans';
    font-size: 22px;
    line-height: 120%;
}

/* Brands image */
.why__brands {
    margin-top: 100px;
    margin-bottom: 24px;
    display: flex;
    width: 100%;
    gap: 40px;
    height: 100px;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
}

.why__brands img {
    width: auto;
    height: 100%;
    max-width: 332px;
    object-fit: contain;
    max-height: 60%;
}

/* Bottom text */
.why__partners-text {
    color: #ED6920;
    margin-bottom: 64px !important;
    font-family: 'Cell C Sans';
    font-size: 26px;
    line-height: 120%;
    text-align: center;
}

/* ---------------------------- Why section ends -------------------------- */

/* ---------------------------- included section starts -------------------------- */

.included {
    padding: 56px 40px 64px;
    background-color: #090909;
    display: flex;
    flex-direction: column;
}

.included__title {
    color: #FAFAFA;
    font-family: 'CellCSans-semibold';
    font-size: 54px;
    line-height: 130%;
    text-align: center;
    margin-bottom: 64px !important;
}

.included__product {
    display: flex;
    gap: 72px;
    justify-content: center;
}

.included__product--image {
    max-height: 204px;
}

.included__product__info {
    border: 1px solid #D6D6D6;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 483px;
    border-radius: 12px;
}

.included__product__info__card {
    display: flex;
    padding: 0 12px;
    gap: 12px;
    align-items: center;
}

.included__product__info__card h6 {
    color: #E5E5E5;
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 140%;
}

.included__product__info__card p {
    color: #A3A3A3;
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 140%;
    text-decoration: line-through;
}

/* === More info truncation enhancement === */
 
/* wrapper spacing (matches hero layout) */
.included_product__description {
  position: relative;
}
 
/* truncated state (default) */
.included_product__description p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;   /* 👈 number of visible lines */
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}
 
/* expanded state */
.included_product__description p.is-expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}
 
/* more info link styling */
.more-info-link {
  margin-top: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
 
  font-family: 'Poppins';
  font-size: 14px;
  color: #ffffff;
  text-decoration: underline;
  width: fit-content;
}
 

.included_product__description {
  position: relative;
}
 
/* truncated state (default) */
.included_product__description p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;   /* 👈 number of visible lines */
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}
 
/* expanded state */
.included_product__description p.is-expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}
 
/* more info link styling */
.more-info-link {
  margin-top: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
 
  font-family: 'Poppins';
  font-size: 14px;
  color: #ffffff;
  text-decoration: underline;
  width: fit-content;
}

.included_product__description {
    padding: 0 64px;
    margin-top: 56px !important;
    color: #E5E5E5;
}

.included_product__description h5 {
    font-family: 'CellCSans-semibold';
    font-size: 26px;
    line-height: 130%;
    color: #E5E5E5;
}

.included_product__description p {
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 140%;
    color: #E5E5E5;
}


/* ---------------------------- included section ends -------------------------- */


/* testimonial section starts */
.testimonials {
    padding: 56px 189px 64px 189px;
    gap: 60px;
    background-color: #090909;
}

.testimonials .testimonials-header {
    font-size: 56px;
    text-align: center;
    color: #FAFAFA;
    line-height: 120%;
    font-family: 'CellCSans-semibold';
}

.carousel-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-stack {
    position: relative;
    max-width: 838px;
    width: 100%;
    height: 280px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    height: 280px;
    background: url('/cellc/img/stars-n-bars/testimonials-curves.svg') center/cover no-repeat;
    background-position-x: 169px;
    background-color: #0f0f0f;
    border: 2px solid #292929;
    border-radius: 16px;
    padding: 0 30px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 15px;
    transition: transform 520ms ease-out, opacity 520ms ease;
    pointer-events: auto;
}

.testimonial-card .date-badge {
    background-color: #292929;
    border: 1px solid #525252;
    border-radius: 4px;
    padding: 2px 8px;
    color: #F5F5F5;
    font-family: 'Inter';
    font-size: 12px;
    width: max-content;
}

.customer-name {
    color: #ED6920;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-left: 19px !important;
}

.testimonial-text {
    color: #E5E5E5;
    font-weight: 400;
}

/* Stack positions - visible from TOP, cards above the main one */
.card-0 {
    transform: translateY(0px) scale(1);
    z-index: 30;
}

.card-1 {
    transform: translateY(-20px) scale(0.96);
    z-index: 20;
    background-color: #141414;
    border: none;
    width: 95%;
    opacity: .8;
}

.card-2 {
    transform: translateY(-43px) scale(0.92);
    z-index: 10;
    background-color: #141414;
    border: none;
    opacity: .6;
    width: 85%;
}

.card-3 {
    transform: translateY(-60px) scale(0.88);
    z-index: 5;
    pointer-events: none;
}


.animate-right {
    animation: rightAndFade 800ms ease-out forwards;
}

@keyframes rightAndFade {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        z-index: 30;
    }

    250% {
        transform: translate(475px, 10px) scale(0.96) rotate(-2.5deg);
    }

    50% {
        transform: translate(950px, 10px) scale(0.9) rotate(-5deg);
        filter: blur(0.5px);
        opacity: .9;
    }

    75% {
        transform: translate(475px, 10px) scale(0.5) rotate(-2.5deg);
        opacity: .5;
    }

    100% {
        transform: translate(0px, 0) scale(0.5) rotate(0deg);
        ;
        z-index: 5;
        opacity: 0;
    }
}

/* Card slides LEFT and up smoothly */
.animate-left {
    animation: leftAndEnter 800ms ease-out forwards;
}

@keyframes leftAndEnter {
    0% {
        transform: translate(0, 0) scale(.92) rotate(0deg);
    }

    50% {
        transform: translate(-950px, 20px) scale(0.85) rotate(5deg);
    }

    75% {
        z-index: 40;
        opacity: 1;
        transform: translate(-475px, 20px) scale(1) rotate(2.5deg);
    }

    100% {
        transform: translate(-60px, 0) scale(1) rotate(0deg);
        z-index: 30;
    }
}

/* Nav buttons */
.nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: calc(100%);
    pointer-events: none;
}

.nav-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    pointer-events: auto;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* testimonial section ends */


/* ----------------- help need section starts */
.help-needed {
    padding: 56px 0 0;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.help-needed__heading {
    color: #1e1e1e;
    font-family: 'CellCSans-semibold';
    font-size: 54px;
    line-height: 130%;
    text-align: center;
}

.help-needed__content {
    display: flex;
    padding: 0 30px 156px;
    justify-content: center;
    max-width: 100vw;
    overflow: hidden;
}

.content-card {
    width: 312px;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

/* ===== Image Wrapper ===== */
.content-card__image-wrapper {
    position: relative;
    height: 420px;
    display: flex;
}

/* Background image */
.content-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Overlay (60%) ===== */
.content-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* ===== Body ===== */
.content-card__body {
    position: absolute;
    inset: 0;
    padding: 39px 14.33px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Title */
.content-card__title {
    color: #FDFDFD;
    font-family: 'CellCSans-bold';
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 10px !important;
}

/* Description */
.content-card__description {
    color: #FDFDFD;
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 140%;
}

/* ===== Meta ===== */
.content-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 14.35px;
    bottom: 14.35px;
}

.content-card__clock-icon {
    width: 16px;
    height: 16px;
}

.content-card__read-time {
    color: #FDFDFD;
    font-family: 'Poppins';
    font-size: 16px;
    line-height: 140%;
}

/* ===== Footer ===== */
.content-card__footer {
    background: #141414;
    padding: 14.34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* CTA text */
.content-card__cta-text {
    color: #E5E5E5;
    font-family: 'Cell C Sans';
    font-size: 22px;
    line-height: 120%;
}

/* CTA button */
.content-card__cta-btn {
    width: 43px;
    height: 43px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.content-card__cta-btn img {
    width: 100%;
    height: 100%;
}

/* ----------------- help need section ends */

/* swiper related css */

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    z-index: 10;
}

.usersSlider-swiper .swiper-button-prev {
    background-image: url(/cellc/img/quickLinks/sl-left.png);
    right: auto;
    top: auto;
    bottom: 90px;
    height: 25px;
    background-repeat: no-repeat;
    left: 30%;
}

.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after,
.usersSlider-swiper .swiper-button-prev::after,
.usersSlider-swiper .swiper-button-next::after {
    display: none;
}

.swiper .swiper-button-prev {
    background-image: url(/cellc/img/quickLinks/sl-left.png);
    right: auto;
    top: auto;
    bottom: -2px;
    height: 25px;
    background-repeat: no-repeat;
    left: 27%;


}

.swiper .swiper-button-next {
    right: 40px;
    background-image: url(/cellc/img/quickLinks/sl-right.png);
    top: auto;
    bottom: -2px;
    height: 25px;
    background-repeat: no-repeat;
    right: 30%;
    background-color: #fff;
}

@media screen and (min-width: 1920px) {
    .swiper .swiper-button-prev {
        background-image: url(/cellc/img/quickLinks/sl-left.png);
        right: auto;
        top: auto;
        bottom: -2px;
        height: 25px;
        background-repeat: no-repeat;
        left: 32%;

    }


}

@media screen and (min-width: 1920px) {

    .swiper .swiper-button-next {
        right: 40px;
        background-image: url(/cellc/img/quickLinks/sl-right.png);
        top: auto;
        bottom: -2px;
        height: 25px;
        background-repeat: no-repeat;
        right: 33%;

    }
}

@media screen and (min-width: 1600px) {
    .plan-details.lastSlide {
        height: 500px;
    }

}


.usersSlider-swiper .swiper-button-next {
    right: 40px;
    background-image: url(/cellc/img/quickLinks/sl-right.png);
    top: auto;
    bottom: 90px;
    height: 25px;
    background-repeat: no-repeat;
    right: 30%;
}


.digital-img {
    width: auto !important;
}

.digital-bottom-desc {
    text-align: center;
    color: #737373;
    font-family: 'Poppins';
    margin-bottom: 40px;
    margin-top: 20px;
}



.usersSection {
    margin: 20px;
    margin-bottom: -118px;
}

.usersSlider .slick-arrow {
    top: auto;
    bottom: -132px;
    border-radius: 50%;
    width: 57px;
    height: 57px;
    background: none;
    position: absolute;
    background-repeat: no-repeat !important;
    box-sizing: border-box;
    background-position: center !important;

    margin-left: 301px;
    margin-right: 250px;
    border: none;
}


.usersSlider-swiper>.swiper-scrollbar {
    height: 12px;
    width: 450px;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E5E5E5;

}

.swiper>.swiper-scrollbar {
    height: 12px;
    width: 420px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E5E5E5;

}

.usersSlider-swiper>.swiper-scrollbar {
    width: 370px;
}

.swiper>.swiper-scrollbar-container {
    border-radius: 8px;
    height: 12px;
    width: 440px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e1e1e;
    position: absolute;

}

.usersSlider-swiper>.swiper-scrollbar-container {
    border-radius: 8px;
    height: 12px;
    width: 400px;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E5E5E5;
    position: absolute;
}

.swiper-scrollbar-drag {
    background-color: #EA5B0C;
    border-radius: 999px;
    height: 4px;
    top: 4px;
}

/* swiper related css ends */
