@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --primary: #0075FF;
    --gray: #101828;
    --text-gray: #344054;
    --gradient-blue: linear-gradient(90deg, #344054 0%, #0055DC 100%);
    --light-gray: #667085;
    --white: #ffffff;
    --hover-blue: #1e87ff;
    --gradient-white: linear-gradient(90deg, #FFFFFF 0%, #E4E7EC 23.5%, #E4E7EC 74.5%, #FFFFFF 100%);
    --half-blue-gray: linear-gradient(90deg, rgba(0, 117, 255, 1) 50%, rgba(242, 244, 247, 1) 50%);
    --radial-blue: radial-gradient(82.19% 82.19% at 130.48% 68.49%, #4FFFF4 12.38%, #007FF5 100%);
    --grayish-white: #F9FAFB;
    --mobile-blue: #459AFF;
}

* {
    padding: 0;
    margin: 0 !important;
    box-sizing: border-box;
    /*scroll-behavior: smooth;*/
    font-family: "Plus Jakarta Sans", sans-serif;
    text-spacing-trim: normal;
}

@font-face {
    font-family: futura md BT;
    src: url(../fonts/futuramdbt_bold.otf);
}

/* Base styling for lines */
.line {
    transition: all 0.3s ease-in-out;
}

/* Rotations for each line in the X state */
.toggler-active .line1 {
    transform: translateY(-2px) translateX(2px) rotate(45deg);
}

.toggler-active .line2 {
    opacity: 0;
}

.toggler-active .line3 {
    transform: translateY(10px) translateX(-15px) rotate(-45deg);
}

.container,
.container-fluid {
    padding: 0 !important;
}

.logo-img {
    width: 220px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    transition: background 0.3s linear;
}

.primary-btn:hover {
    background: var(--hover-blue);
}

.navbar-nav li a.nav-link {
    color: var(--text-gray);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding: 4px 0 !important;
}

.navbar-nav li a.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 50px;
    background: var(--primary);
    transition: 0.3s linear;
}

.navbar-nav li a.nav-link:hover::before {
    width: 100%;
}

.text-change {
    background: var(--gray);
}

.text-span {
    display: flex;
    flex-direction: column;
}

.text-span span {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    user-select:none;
}

#changeText {
    transition: opacity 0.3s ease-in-out;
}

[data-scroll-container] {
    overflow: hidden;
}

.laptopImg-1 {
    width: 100%;
}

.headingTwo {
    color: var(--gray);
    font-weight: 800;
}

.headingFive {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray);
}

.headingThree {
    font-weight: 700;
    color: var(--text-gray);
}

.youtube,
.store,
.Kooliya,
.orangebox,
.byju,
.excel,
.power-point,
.brave,
.insta,
.n-img,
.canva,
.duolingo,
.test-book,
.bgmi,
.pw,
.freefire,
.subwaysurfer,
.ms-word,
.file-manager,
.rozgaar {
    z-index: 0;
    position: absolute;
}

.meet-btn {
    position: relative;
    border: none;
    background: transparent;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 13px 0;
    color: var(--light-gray);
    transition: 0.3s ease;
}

.meet-btn svg {
    width: 23px;
}

.meet-btn svg path {
    fill: var(--light-gray);
}

.meet-btn::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background: var(--gradient-white);
    height: 2px;
    width: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    z-index: 1;
}

.meet-btn::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    /* background: rgba(0, 117, 255, 1); */
    height: 4px;
    width: var(--progress-width, 0%);
    border-radius: 10px;
    transition: width 0.3s ease;
    z-index: 2;
}

.meet-btn.active::before {
    height: 4px;
    background: rgb(247, 242, 242);
}

.meet-btn.active::after {
    background: rgba(0, 117, 255, 1);
    width: var(--progress-width, 0%);
}

.meet-btn.active {
    color: var(--text-gray);
    padding: 0 0 18px 0;
}

.meet-btn.active svg path {
    fill: var(--primary);
}

.gradientText {
    font-weight: 700;
    font-size: 6.6em;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.description-box {
    background: var(--radial-blue);
    border-radius: 12px;
    padding: 1px;
}

.desc-content {
    background: var(--white);
    width: 100%;
    height: 100%;
    border-radius: 11px;
}

.desc-content p {
    font-weight: 400;
    color: var(--text-gray);
    font-size: 14px !important;
}

.content-show img {
    position: absolute;
    top: -34px;
    left: 0;
    right: 0;
    width: 100%;
}

.stats img {
    width: 50px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.stats h4 {
    font-size: 26px;
    font-weight: 600;
    color: var(--gray);
    line-height: 18px;
}

.stats p {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
    margin: 0;
    line-height: 23px;
}

.image-container {
    perspective: 1000px;
    margin-bottom: 20px;
}

.linear-x-image {
    width: 100%;
    height: auto;
}

.slider-line {
    background: var(--gradient-white);
    width: 60%;
    height: 3px;
    position: relative;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 25px;
    border-radius: 31px;
    color: var(--white);
    background: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}

.slider-arrow-left,
.slider-arrow-right {
    display: flex;
    align-items: center;
}

.slider-value {
    margin: 0 5px;
}

.features-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-card img {
    width: 100%;
}

.features-card h5 {
    font-size: 1.3em;
    color: var(--text-gray);
    font-weight: 700;
    padding-top: 5px;
    white-space: nowrap;
}

.features-card p {
    color: var(--light-gray);
    font-size: 15px;
    line-height: 24px;
}

.features-card p span {
    color: var(--text-gray);
}

.desktop-prev-btn,
.desktop-next-btn,
.swiper-button-next-second,
.swiper-button-prev-second,
.mob-prev,
.mob-next {
    background: var(--grayish-white) !important;
    color: var(--text-gray) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 100% !important;
}

.desktop-prev-btn::after,
.desktop-next-btn::after,
.swiper-button-next-second::after,
.swiper-button-prev-second::after,
.mob-prev::after,
.mob-next::after {
    font-size: 14px !important;
    font-weight: 900;
}

.cost-effect-box {
    background: var(--white);
    box-shadow: 0px 4px 8.1px 0px #00000014;
    border-radius: 12px;
    height: 100%;
}

.cost-effect-box div svg {
    padding-top: 5px !important;
    width: 50px;
    height: 50px;
}

.cost-effect-box h5 {
    color: var(--text-gray);
    font-weight: 700;
}

.cost-effect-box p {
    padding-top: 7px;
    color: var(--text-gray);
}

.accordion-button {
    color: var(--text-gray) !important;
    font-weight: 700;
    padding: 18px 0 !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body {
    color: var(--text-gray);
    padding: 0 0 15px 0 !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
}

.accordion-item {
    border: none !important;
    border-bottom: 2px solid !important;
    border-image: var(--gradient-white) 1 !important;
    border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

footer {
    background: var(--gray);
}

.footer-option {
    color: var(--white);
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 20px;
}

.footer-nav-option a {
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
    padding-bottom: 18px;
}

.footer-nav-option a svg {
    width: 20px;
    height: 20px;
}

.customer-support div p {
    color: var(--white);
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 400;
    text-align: end;
}

.customer-support div h5 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

.footer-logo img {
    width: 190px;
}

.footer-line {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.footer-line svg {
    width: 15px;
    height: 15px;
}

.social-icons a {
    text-decoration: none;
}

.social-icons a svg {
    width: 32px;
    height: 32px;
}

.service-title {
    color: var(--text-gray);
    font-weight: 800;
    font-size: 50px;
    white-space: nowrap;
}

.service-content {
    color: var(--text-gray);
    font-size: 16px;
}

.promise-section {
    background: var(--grayish-white);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
    padding: 18px;
}

.promise-section svg {
    width: 50px;
    height: 50px;
}

.promise-section h5 {
    color: var(--text-gray);
    font-weight: 800;
    white-space: nowrap;
}

.promise-section p {
    color: var(--text-gray);
    font-size: 15px;
}

.swiper-container-second {
    overflow: hidden;
}

.swiper-container-second .swiper-wrapper .swiper-slide,
.row-1 .swiper-wrapper .swiper-slide,
.row-2 .swiper-wrapper .swiper-slide {
    padding: 0 10px;
    margin-right: 10px !important;
}

.swiper-button-next-second {
    background: var(--grayish-white);
    color: var(--gray);
}

.news-section {
    background: var(--grayish-white);
}

.news-card {
    background: var(--white);
    width: 272px;
    padding: 13px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    box-shadow: 0px 4px 25.5px 0px #CCD3DB29;
    flex: 0 0 auto;
}

.row-1 {
    width: 100%;
    display: flex;
    animation: infinite-scroll 12s linear infinite;
    animation-timing-function: linear;
}

.row-1:hover {
    animation-play-state: paused;
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(-10%); /* Starts from the initial position */
    }
    
    100% {
        transform: translateX(-90%); /* Scrolls the element completely */
    }
}

.row-2 {
    width: 100%;
    display: flex;
    animation: infinite-scroll-reverse 12s linear infinite;
    animation-timing-function: linear;
}

.row-2:hover {
    animation-play-state: paused;
}

@keyframes infinite-scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(50%);
    }
}

.news-card img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    aspect-ratio: 3 / 2;
}

.news-card h6 {
    color: var(--text-gray);
    font-weight: 700;
}

.news-card p {
    color: var(--text-gray);
    font-weight: 400;
    font-size: 13px;
    margin: 0;
    line-height: 18px;
}

.video-fluid {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.mobile-tab {
    border: none;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 22px;
    color: var(--text-gray);
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0px 5px 11px 0px #0000000D;
    height:100%;
}

.mobile-tab svg {
    width: 26px;
    height: 26px;
}

.mobile-tab svg path {
    fill: #667085;
}

.mobile-tab p {
    color: var(--text-gray);
    font-weight: 400;
    text-align: start;
    font-size: 14px;
}

.mobile-tab.active {
    border: 2px solid #007FF5;
    box-shadow: none;
}

.mobile-tab.active svg path {
    fill: #0075FF;
}

.hero-section {
    height: 80dvh;
}

#scrollImage {
    width: 110dvh;
}

.image-change-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0.3;
    transform: translate(-50%, 0) scale(0);
    transform-origin: center;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.primebook {
    position: absolute;
    bottom: -10%;
    left: 0;
    right: 0;
}

#gurkha-suv {
    width: 100%;
    height: 470px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: grab;
}

.slider-line,
.slider-thumb {
    user-select: none;
    /* Standard syntax */
    -webkit-user-select: none;
    /* Chrome/Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    -o-user-select: none;
    /* Opera */
}

/* Progress bar styles for both mobile and desktop */
.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    background: #667085 !important;
    border-radius: 50% !important;
    transition: width 0.5s ease;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 110px !important;
    height: 14px !important;
    background: #0075FF !important;
    border-radius: 50px !important;
    transition: width 0.5s ease;
}

.swiper-pagination-bullet.swiper-pagination-progress {
    position: relative;
    overflow: hidden;
    --progress-width: 0%; /* Default value */
}

.swiper-pagination-bullet.swiper-pagination-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #0075FF;
    width: var(--progress-width);
    transition: width linear;
}


.mob-pagination {
    padding-bottom: 11px;
}

.width-set {
    width: 100%;
}

.animationContainer {
    opacity: 0;
    display: inline-block;
}

section.text-change {
    width: 100%;
}

#pinnedsection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
}

.heroDiv {
    /*overflow: hidden;*/
}

#mobile-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

/* Default dot style */
.custom-dot {
    width: 12px;
    height: 12px;
    background-color: #F7F2F2; /* Default color for inactive dots */
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: width 0.5s ease, background-color 0.3s ease;
}

/* Active dot style */
.active-dot {
    width: 120px; /* The expanded width for active dot */
    height: 12px;
    background-color: #F7F2F2;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

/* Progress bar inside the active dot */
.active-dot .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #0075FF; /* Color of the progress bar */
    width: 0%; /* Initial width (progress) of the bar */
    transition: width 0.5s linear; /* Smooth progress */
}


.border-top-bottom {
    border-top: 1px solid #F2F4F7;
    border-bottom: 1px solid #F2F4F7;
}

.border-bottom-nav {
    border-bottom: 1px solid #F2F4F7;
}

.cost-effect-button {
    background: var(--white);
    border-radius: 13px;
    border: 2px solid transparent;
}

.tab .cost-effect-button.active {
    border: 2px solid var(--primary);
}

.tabcontent {
    display: none;
    box-shadow: 0px 4px 8.1px 0px #00000014;
    background: var(--white);
    border-radius: 13px;
    padding: 14px 20px;

}

.text_limiter_2{
    line-height: 23px;
    display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits the text to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text_limiter_4{
display: -webkit-box;
  -webkit-line-clamp: 4; /* Limits the text to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card p{
    display: -webkit-box;
  -webkit-line-clamp: 4; /* Limits the text to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*.mobile-tab {*/
/*    pointer-events: none;*/
/*}*/

      .ww-icon-link i {
    z-index: 1;
    border-radius: 50px;
    cursor: pointer;
    color: #fff;
    font-size: 40px;
}
.ww-icon-link {
    padding: 5px;
    box-sizing: border-box;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 40%) 2px 2px 6px;
    transition: all 0.5s ease 0s;
    position: fixed;
    z-index: 9;
    height: 60px;
    width: 60px;
    background: rgb(77, 194, 71) !important;
    text-decoration: none !important;
    right: 20px;
    bottom: 20px;
    display: inline-flex
;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
}
