/**========================================================== HEADER CSS START ==========================================================**/
.head {
    padding: 15px 0;
}

.header-mobile {
    display: none;
}

.head .navbar {
    position: relative;
}

button.navbar-toggler {
    background-color: var(--red-bg);
    padding: 15px 15px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

button.navbar-toggler img {
    max-width: 30px;
}

.head .navbar-nav {
    gap: 18px;
}

.head .navbar-nav li.nav-item a {
    font-size: 16px;
    color: var(--text-white);
    font-weight: var(--font-weight-medium);
}

.head .navbar-nav .nav-item.dropdown {
    position: static;
}

/** DROPDOWN CSS START **/
.dropdown-menu.fullwidth {
    width: clamp(320px, 95vw, 1320px);
    padding: 20px 40px;
    border-radius: 0 0 30px 30px;
    border: none;
    right: 0 !important;
    left: 0;
    margin-left: auto;
    margin-right: auto;
}

.dropdown-main-box .dropdown-heading {
    margin-bottom: 20px;
}

/* DROPDOWN CATEGORY CSS START */
.dropdown-category-tab {
    gap: 20px;
}

.dropdown-category-tab .nav-link {
    display: flex;
    gap: 25px;
    padding: 20px 20px !important;
    border-radius: 20px;
    background-color: var(--white-bg);
    border: 0.5px solid var(--border-grey);
}

.dropdown-category-tab .nav-link.active {
    background-color: var(--head-dropdown-active-bg);
    border-color: var(--head-dropdown-active-border);
}

.dropdown-category-tab .nav-link .dropdown-icon-box img {
    width: 50px;
}

.dropdown-category-tab .nav-link .dropdown-content-box h6 {
    font-weight: var(--font-weight-semibold);
    color: var(--text-black);
}

.dropdown-category-tab .nav-link.active .dropdown-content-box h6 {
    color: var(--text-cyan-blue);
}

.dropdown-category-tab .nav-link .dropdown-content-box h6 span {
    opacity: 0;
    visibility: hidden;
}

.dropdown-category-tab .nav-link.active .dropdown-content-box h6 span {
    opacity: 1;
    visibility: visible;
}

.dropdown-category-tab .nav-link .dropdown-content-box span {
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    color: var(--text-black-two);
    line-height: 28px;
    display: inline-block;
}

.dropdown-category-tab .nav-link.active .dropdown-content-box span {
    color: var(--text-black);
}

/* DROPDOWN SUB CATEGORY CSS START */
.dropdown-category-tab.dropdown-sub-category-tab .nav-link {
    background: var(--white-bg);
    border: none;
    padding: 5px 5px !important;
}

.dropdown-sub-category-content {
    height: 100%;
}

.dropdown-sub-category-content .tab-pane {
    height: 100%;
}

.dropdown-sub-category-content .tab-pane .dropdown-list-box {
    background-color: var(--grey-bg);
    padding: 30px 30px;
    border-radius: 20px;
    height: 80%;
}

.dropdown-list-box .dropdown-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dropdown-list-box .dropdown-link-list li {
    position: relative;
}

.dropdown-list-box .dropdown-link-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -24px;
    width: 10px;
    height: 10px;
    background-color: var(--black-bg);
    border-radius: 36px;
}

.dropdown-list-box .dropdown-link-list li a {
    text-decoration: none;
    color: var(--text-black) !important;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
}

/* DROPDOWN SUB CATEGORY CSS FINISH */
.vertical-tab-box .vertical-tab-list {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.vertical-tab-box .vertical-tab-list li a .vertical-link-box {
    display: flex;
    gap: 10px;
    padding: 25px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vertical-tab-box .vertical-tab-list li a .vertical-link-box .link-icon img {
    width: 30px;
}

.vertical-tab-box .vertical-tab-list li a .vertical-link-box:hover {
    background-color: var(--head-dropdown-active-bg);
    border-color: var(--head-dropdown-active-border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vertical-tab-box .vertical-tab-list li a .vertical-link-box .link-icon svg {
    width: 30px;
}

.vertical-tab-box .vertical-tab-list li a .vertical-link-box .link-info h6 {
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-black);
}

.vertical-tab-box .vertical-tab-list li a .vertical-link-box .link-info span {
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    color: var(--text-black-two);
    line-height: 28px;
    display: inline-block;
}

/**========================================================== HEADER CSS FINISH ==========================================================**/

/**========================================================== MOBILE HEADER CSS START ==========================================================**/

.nav-dropdown-accordion .nav-dropdown-main-item {
    background: transparent;
}

.nav-dropdown-accordion .nav-dropdown-main-item .accordion-header {
    color: var(--text-white);
    padding: 0.5rem 0;
    font-weight: var(--font-weight-medium);
}

.nav-dropdown-accordion .nav-dropdown-main-item .accordion-button::after {
    background-image: url(../images/icons/chevron-white-down-icon.svg);
    width: 12px;
    margin-right: auto;
    background-size: contain;
    margin-left: 20px;
    height: 8px;
    background-size: contain;
}

.nav-dropdown-accordion .nav-dropdown-main-item .accordion-body {
    background-color: var(--white-bg);
    border-radius: 4px;
    padding: 15px 10px;
}

.nav-dropdown-accordion .nav-dropdown-main-item .vertical-accordion-body {
    max-height: 385px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

.dropdown-category-accordion .dropdown-category-accordion-item .accordion-header {
    color: var(--text-black);
    padding: 10px 10px;
    background-color: var(--white-bg);
    border: 1px solid var(--border-white);
    border-radius: 5px;
    font-size: 15px;
}

.dropdown-category-accordion .dropdown-category-accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--head-dropdown-active-bg);
    border: 1px solid var(--head-dropdown-active-border);
    color: var(--text-cyan-blue);
}

.dropdown-category-accordion .dropdown-category-accordion-item .accordion-body {
    padding: 0;
    margin-top: 10px;
    margin-left: 10px;
}

.dropdown-category-accordion .dropdown-category-accordion-item .accordion-button::after {
    background-image: url(../images/icons/chevron-black-down-icon.svg);
    width: 12px;
    margin-right: 5px;
    background-size: contain;
    margin-left: auto;
    height: 8px;
    background-size: contain;
}

.dropdown-subcategory-accordion .dropdown-subcategory-accordion-item {
    margin-bottom: 5px;
}

.dropdown-subcategory-accordion .dropdown-subcategory-accordion-item .accordion-header {
    padding-left: 10px;
}

.dropdown-subcategory-accordion .dropdown-subcategory-accordion-item .accordion-body {
    background-color: var(--grey-bg);
    padding: 15px 15px;
    border: 10px;
    margin-left: 0;
}

/**========================================================== MOBILE HEADER CSS FINISH ==========================================================**/

/**========================================================== HOME PAGE CSS START ==========================================================**/

/**==== HOME BANNER SEC CSS START =====**/
.banner-video-box video.home-banner-video {
    width: 100%;
}

.home-banner-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b5;
}

.home-banner-sec .home-banner-top-row {
    margin-bottom: 90px;
}

.home-banner-sec .home-banner-bottom-row {
    align-items: center;
}

.bottom-banner-content span {
    line-height: 35px;
}

.border-box {
    background-color: var(--light-white-bg);
    width: 100%;
    height: 1px;
}

.project-box {
    text-align: center;
    background: var(--gradient-bg);
    background-color: var(--white-bg);
    border: 0.5px solid var(--border-grey-two);
    padding: 25px 25px;
    border-radius: 100px;
}

/**==== OUR PARTNER SEC CSS START ====**/
.partner-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.partner-main-box {
    background-color: var(--grey-bg-two);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid var(--border-grey-three);
}

.partner-hover-box {
    background-color: var(--white-bg);
}

.partner-hover-box:hover {
    background-color: var(--grey-bg-three);
}

.partner-hover-box .empty-box-text {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.partner-hover-box:hover .empty-box-text {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-hover-box .empty-box-text span {
    display: flex;
    align-items: center;
    gap: 10px;
}

/**==== OUR SERVICES SEC CSS START ====**/
.service-main-box {
    position: relative;
    min-height: 400px;
    padding: 20px 20px;
    gap: 30px;
    border-radius: 14px;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.service-main-box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/home/service-hover-bg-layer.svg") center / cover no-repeat;
    background-color: var(--black-bg);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-main-box:hover::before {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
}

.service-main-box .service-icon .service-hover-icon {
    display: none;
}

.service-main-box:hover .service-icon .service-hover-icon {
    display: block;
}

.service-main-box:hover .service-icon .service-main-icon {
    display: none;
}

.service-main-box:hover .service-content h3 {
    color: var(--text-white);
}

.service-main-box .service-content p {
    margin-top: 10px;
    line-height: 30px;
    display: none;
}

.service-main-box:hover .service-content p {
    display: block;
}

/**==== THREE MINDS BEHIND SEC CSS FINISH ====**/
.mind-tabs-box {
    gap: 50px;
    margin-top: 50px;
}

.mind-tabs-box .nav {
    gap: 20px;
}

.mind-tabs-box .nav .nav-link {
    color: var(--text-dull-white);
    font-weight: var(--font-weight-extralight);
}

.mind-tabs-box .nav .nav-link.active {
    color: var(--text-white);
    font-weight: var(--font-weight-regular);
}

.mind-tabs-box .tabs-info-content {
    padding: 15px 15px;
    padding-right: 85px;
}

.mind-tabs-box .tabs-info-content h6 {
    line-height: 35px;
}

.mind-tabs-box .tabs-info-content .mind-explore-button {
    gap: 7px;
}

/**==== OUR CLIENT SEC CSS START ====**/
.our-client-inner-row {
    align-items: end;
}

.case-study-heading {
    gap: 10px;
    margin-bottom: 25px;
}

.client-image-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.client-image-video-box .play-box {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.client-image-video-box .play-box button.video-btn {
    border-radius: 54px;
    background: var(--light-white-bg-two);
    backdrop-filter: blur(2.5px);
    width: 70px;
    height: 70px;
    border: none;
}

.client-image-video-box .play-box button.video-btn:focus-visible {
    outline: none;
}

.client-info-box {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.client-info-text {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.client-name h4 span {
    color: var(--text-grey-three);
}

.client-action-btn {
    border: none;
    background-color: var(--black-bg);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 46px;
    outline: none;
    margin-left: 30px;
    margin-top: 140px;
}

/**==== DIGITAL SOLUTION SEC CSS START ====**/
.digital-solution-sec .row.heading-row {
    align-items: center;
    justify-content: space-between;
}

.digital-solution-sec .digital-heading-box {
    padding: 25px 25px;
    padding-bottom: 0;
    margin-top: 22px;
}

.digital-solution-slider {
    padding-bottom: 100px;
    padding-top: 30px;
    position: relative;
}

.digital-solution-slider .swiper-wrapper .swiper-slide {
    padding: 35px 60px;
    opacity: 0.5;
    border-radius: 14px;
    overflow: hidden;
}

.digital-solution-slider .swiper-wrapper .swiper-slide.swiper-slide-active {
    opacity: 1;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-grey-three);
}

.digital-solution-slider .swiper-wrapper .swiper-slide .digital-solution-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.digital-solution-slider .swiper-wrapper .swiper-slide .digital-solution-box .digital-icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.digital-solution-slider .swiper-wrapper .swiper-slide .digital-solution-box .digital-solution-content {
    text-align: center;
}

.digital-solution-slider .swiper-wrapper .swiper-slide .digital-solution-box .digital-solution-content h3 {
    margin-bottom: 10px;
}

.digital-solution-slider .swiper-main-button-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    gap: 20px;
}

.digital-solution-slider .swiper-main-button-box .digital-solution-button-prev,
.digital-solution-button-next {
    position: static ;
    width: 70px !important;
    height: 70px !important;
    background: var(--black-bg);
    border-radius: 60px;
    border: 1px solid var(--border-black);
}

.digital-solution-slider .swiper-main-button-box svg.navigation-icon {
    width: 35px;
    fill: var(--text-white);
}

.digital-solution-slider .swiper-main-button-box .swiper-button-disabled {
    background-color: var(--white-bg);
    border-color: var(--border-grey-four);
}

.digital-solution-slider .swiper-main-button-box .swiper-button-disabled svg.navigation-icon {
    fill: var(--text-grey-three);
}

/**==== OUR STATE SEC CSS START ====**/
.our-state-sec {
    background: url(../images/home/our-state-bg.webp) center / cover no-repeat;
}

.our-state-content {
    margin-top: 50px;
    margin-bottom: 30px;
    padding-right: 40px;
}

.our-state-content h3 {
    margin-bottom: 15px;
}

.our-state-explore-button-box .our-state-explore {
    background-color: var(--white-bg);
    color: var(--text-black);
    gap: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.our-state-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.our-state-grid .state-count-box {
    background-color: var(--light-white-bg-three);
    border: 0.7px solid var(--border-light-white);
    padding: 40px 30px;
    border-radius: 14px;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
}

/**==== OUR PROJECT SEC CSS START ====**/
.project-inner-wrapper {
    max-height: 1290px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

.project-wrapper-box {
    padding: 30px 0px;
    background-color: var(--white-bg);
    border-top: 0.6px solid var(--border-grey-five);
    border-bottom: 0.6px solid var(--border-grey-five);
    position: relative;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.project-wrapper-box:last-child {
    margin-bottom: 0;
}

.project-wrapper-box:hover {
    background-color: var(--black-bg);
    transition: all 0.4s ease;
}

.project-wrapper-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: -30%;
    width: 8px;
    height: 320px;
    border-radius: 0 8px 8px 0;
    background-color: var(--black-bg);
    transform: translateY(50%);
}

.project-wrapper-box:hover::before {
    background-color: var(--white-bg);
}

.project-image {
    text-align: center;
}

.project-image img {
    border-radius: 20px;
}

.project-info-box {
    padding: 0 30px;
}

.project-name-info {
    margin-bottom: 20px;
}

.project-name-info h3 {
    margin-bottom: 12px;
}

.project-wrapper-box:hover .project-name-info h3 {
    color: var(--text-white);
}

.project-wrapper-box:hover .project-name-info span {
    color: var(--text-white);
}

.project-key-points ul.key-points-list {
    gap: 20px;
    padding-left: 20px;
}

.project-key-points ul.key-points-list li {
    margin-bottom: 12px;
}

.project-key-points ul.key-points-list li::marker {
    color: var(--text-black);
}

.project-key-points ul.key-points-list li:last-child {
    margin-bottom: 0;
}

.project-wrapper-box:hover .project-key-points ul.key-points-list li p {
    color: var(--text-white);
}

.project-wrapper-box:hover .project-key-points ul.key-points-list li::marker {
    color: var(--text-white);
}

.project-action-button-box {
    padding-right: 10px;
}

.project-action-button-box button.project-action-btn {
    width: 60px;
    height: 60px;
    background-color: var(--white-bg);
    border: 1px solid var(--border-grey-four);
    border-radius: 50px;
    margin-left: auto;
}

/**==== OUR SMART SOLUTION CSS START ====**/
.smart-solution-content {
    margin-top: 40px;
    margin-bottom: 70px;
    padding-right: 35px;
}

.view-all-button-box .view-all-button {
    gap: 10px;
}

.view-all-button-box .view-all-button img {
    max-width: 22px;
}

.smart-solution-wrapper {
    padding-left: 35px;
    max-height: 540px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

.smart-solution-main-box {
    padding: 25px 25px;
    background-color: var(--light-white-bg-four);
    border: 1px solid var(--border-grey-six);
    border-radius: 12px;
    margin-bottom: 20px;
}

.smart-solution-main-box:last-child {
    margin-bottom: 0;
}

.smart-solution-image img {
    border-radius: 8px;
}

.smart-solution-info p {
    color: var(--text-grey);
    line-height: 28px;
    margin-bottom: 25px;
}

.smart-solution-info a {
    border: 0.6px solid var(--border-grey);
    padding: 8px 29px;
    border-radius: 35px;
    display: inline-block;
}

.mind-tabs-box .tabs-info-content {
    padding: 10px 10px;
    padding-right: 10px;
}

/**==== HOME CONTACT SEC CSS START ====**/
.home-contact-sec .heading-box p {
    line-height: 30px;
}

.home-contact-wrapper {
    padding: 50px 50px;
    border-radius: 20px;
}

.home-form-box form.home-form .input-group .form-control {
    background-color: var(--light-white-bg-five);
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    color: var(--text-black);
    border: 1px solid var(--border-grey);
    border-radius: 7px;
}

.home-form-box form.home-form .input-group .form-control::placeholder {
    color: var(--text-black);
}

.home-form-box form.home-form .input-group .input-group-text {
    background-color: var(--light-white-bg-five);
    border: 1px solid var(--border-grey);
    border-radius: 7px;
}

.home-form-box form.home-form .input-group .input-group-text .form-select {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-black);
}

.home-form-box form.home-form .form-check {
    margin-bottom: 25px;
}

.home-form-box form.home-form .form-check .form-check-input:checked {
    background-color: var(--red-bg);
    border-color: var(--border-red);
}

.home-form-box form.home-form .form-check .form-check-input {
    border-radius: 3px !important;
    border-color: var(--border-red);
    cursor: pointer;
}

.submit-button .home-form-submit-button {
    display: flex;
    align-items: center;
    gap: 10px;
}

/**==== FAQ BLOG SEC CSS START ====**/
.faq-blog-sec {
    background: url(../images/home/blog-faq-bg-img.webp) top / cover no-repeat;
    background-color: var(--white-bg);
}

.faq-form .input-group .input-group-text {
    background-color: var(--white-bg);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
}

.faq-form .input-group .form-control {
    background-color: var(--white-bg);
    border-radius: 12px;
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    color: var(--text-black);
    border: 1px solid var(--border-grey);
}

.faq-blog-tab-box {
    margin-top: 40px;
    margin-bottom: 40px;
}

.faq-blog-tab-box .faq-blog-tab {
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid var(--border-grey);
}

.faq-blog-tab-box .faq-blog-tab li.nav-item .nav-link {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    background: transparent;
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-black-two);
}

.faq-blog-tab-box .faq-blog-tab li.nav-item .nav-link.active {
    color: var(--text-cyan-blue);
    border-bottom: 4px solid var(--border-blue);
}

.blog-box h3 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 5px;
    line-height: 36px;
}

.blog-box h3 img {
    margin-top: 5px;
}

.accordion-one .accordion-item {
    background-color: var(--grey-bg-four);
    border: 1px solid var(--border-grey);
    overflow: hidden;
    padding: 15px 15px;
    border-radius: 12px;
}

.accordion-one .accordion-item h2.accordion-header button.accordion-button {
    background-color: var(--grey-bg-four);
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-black-two);
    padding: 0;
}

.accordion-one .accordion-item .accordion-button::after {
    content: none;
}

.accordion-one .accordion-item .accordion-button::before {
    content: "";
    position: absolute;
    right: 0;
}

.accordion-one .accordion-item .accordion-button.collapsed::before {
    background: url(../images/icons/faq-one-plus-icon.svg) center / cover no-repeat;
    width: 20px;
    height: 20px;
}

.accordion-one .accordion-item .accordion-button:not(.collapsed)::before {
    background: url(../images/icons/faq-one-minus-icon.svg) center / cover no-repeat;
    width: 20px;
    height: 2px;
}

/**========================================================== HOME PAGE CSS FINISH ==========================================================**/

/**========================================================== ABOUT PAGE CSS START ==========================================================**/

/**==== ABOUT BANNER SEC CSS START ====**/
.about-banner-sec {
    height: 870px;
}

.about-play-box {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-play-box .video-btn {
    border-radius: 54px;
    background: var(--light-white-bg-two);
    backdrop-filter: blur(2.5px);
    width: 100px;
    height: 100px;
    border: none;
}

.video-box-col {
    margin-top: 65px;
}

/**==== COMPANY ABOUT SEC CSS START ====**/
.company-about-sec {
    margin-top: 180px;
}

.triple-mind-big-text {
    margin-bottom: 70px;
}

.triple-mind-big-text h2 {
    color: var(--text-dull-white-three);
    font-size: clamp(24px, 15vw, 320px);
}

/**==== VALUES SOLUTION SEC CSS START ====**/
.value-card-box {
    padding: 40px 20px;
    border-radius: 10px;
}

.value-card-box .value-icon {
    margin-bottom: 30px;
}

/**==== TRIPLE MIND STORY SEC CSS START ====**/
.triple-mind-story .row.heading-row {
    margin-bottom: 80px;
}

.swiper.triple-mind-story-slider {
    padding-top: 90px;
}

.story-content {
    padding-right: 50px;
}

.story-image {
    position: relative;
    z-index: 1;
}

.story-image span {
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    font-size: 300px;
    color: var(--text-dull-white-four);
    top: -195px;
}

.story-swiper-main-button-box {
    gap: 20px;
    margin-top: 100px;
}

.story-swiper-main-button-box .story-button-prev,
.story-button-next {
    position: static;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--border-black);
    background: var(--white-bg);
}

.story-swiper-main-button-box .story-button-prev svg,
.story-button-next svg {
    display: none;
}

.triplemind-story-pagination {
    margin-top: 90px;
    border-top: 3px solid var(--border-black-three);
}

.triplemind-story-pagination .swiper-pagination {
    top: -13px;
    display: flex;
    align-content: center;
    justify-content: end;
    gap: 210px;
    transform: none !important;
    right: 20% !important;
    width: auto;
}

.triplemind-story-pagination .swiper-pagination .pagination-inner-box .bullet-point.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: var(--black-bg-two);
    opacity: 1;
}

.triplemind-story-pagination .swiper-pagination .pagination-inner-box .bullet-point.swiper-pagination-bullet-active {
    background-color: var(--red-bg);
}

.triplemind-story-pagination .swiper-pagination .pagination-inner-box .year-text {
    color: var(--text-black-two);
    font-weight: var(--font-weight-bold);
}

.triplemind-story-pagination .swiper-pagination .pagination-inner-box .year-text.active {
    color: var(--text-red);
}

/**==== TRIPLE MIND STORY SEC CSS START ====**/
.media-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.media-inner-box {
    background-color: var(--light-white-bg-four);
    min-height: 180px;
    display: flex;
    align-content: center;
    justify-content: center;
    border: 1px solid var(--border-light-white-two);
    border-radius: 12px;
}

/**==== WHY BUSINESS CHOOSE SEC CSS START ====**/
.why-business-choose-slider .swiper-slide {
    border-right: 1px solid var(--border-grey-three);
}

.why-business-main-box {
    padding: 25px 25px;
}

.why-business-content p {
    color: var(--text-grey-two);
}

.why-business-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

.why-business-choose-slider .swiper-slide-active+.swiper-slide-next+.swiper-slide {
    border: none;
}

.why-business-choose-swiper-wrapper .why-business-choose-next,
.why-business-choose-prev {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--border-black);
    background: var(--white-bg);
}

.why-business-choose-swiper-wrapper .why-business-choose-next svg,
.why-business-choose-prev svg {
    display: none;
}

.why-business-choose-swiper-wrapper .why-business-choose-next {
    right: -30px;
}

.why-business-choose-swiper-wrapper .why-business-choose-prev {
    left: -30px;
}

/**==== SERVE CLIENT GLOBALLY SEC CSS START ====**/
.country-box {
    border: 0.6px solid var(--border-grey-five);
    padding: 30px 36px;
    border-radius: 14px;
}

.country-box img {
    max-width: 60px;
}

/**==== IMPACT NUMBER SEC CSS START ====**/
.impact-number-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.impact-number-grid .impact-number-box {
    width: 100%;
    height: 250px;
}

.impact-number-grid .impact-box-grey {
    background-color: var(--light-white-bg-six);
    border: 1px solid var(--border-grey-three);
}

.impact-number-grid .impact-box-white {
    background-color: var(--white-bg);
}

.our-team-slider-button-box .team-button-next,
.team-button-prev {
    position: static;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--border-black);
    background: var(--white-bg);
}

.our-team-slider-button-box .team-button-next svg,
.team-button-prev svg {
    display: none;
}

/**==== KNOW ABOUT US SEC CSS START ====**/
.know-about-box {
    background-color: var(--light-white-bg-seven);
    border: 1px solid var(--border-light-white-three);
    padding: 40px 36px;
    gap: 60px;
    border-radius: 12px;
}

/**==== FAQ SEC CSS START ====**/
.accordion-two .accordion-item {
    margin-bottom: 20px;
    background-color: var(--white-bg);
    border-radius: 16px;
    box-shadow: 0 3px 20px 0 rgba(20, 27, 52, 0.04);
    padding: 20px 24px;
    border: 0.5px solid var(--border-grey-seven);
}

.accordion-two .accordion-item h2.accordion-header button.accordion-button {
    background-color: var(--grey-bg-four);
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-black-two);
    padding: 0;
}

.accordion-two .accordion-button::after {
    content: none;
}

.accordion-two .accordion-button::before {
    content: "";
    position: absolute;
    right: 0;
}

.accordion-two .accordion-button.collapsed::before {
    background: url(../images/icons/faq-two-plus-icon.svg) center / cover no-repeat;
    width: 22px;
    height: 22px;
}

.accordion-two .accordion-button:not(.collapsed)::before {
    background: url(../images/icons/faq-two-minus-icon.svg) center / cover no-repeat;
    width: 22px;
    height: 22px;
}

/**========================================================== ABOUT PAGE CSS FINISH ==========================================================**/

/**========================================================== AI MODAL TRAINING SERVICES PAGE CSS START ==========================================================**/

/**==== AI MODAL TRAINING BANNER SEC CSS START ====**/
.ai-modal-training-banner-sec {
    height: 900px;
}

/**==== MODAL WE TRAIN SEC CSS START ====**/
.modal-we-train-box {
    padding: 40px 25px;
    border: 1px solid var(--border-grey-three);
    border-radius: 20px;
    height: 100%;
}

.modal-we-train-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.modal-we-train-slider-button-box .modal-we-train-button-next,
.modal-we-train-button-prev {
    position: static;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--border-black);
    background: var(--white-bg);
}

.modal-we-train-slider-button-box .modal-we-train-button-next svg,
.modal-we-train-button-prev svg {
    display: none;
}

/**==== ORDINARY AI SEC CSS START ====**/
.ordinary-ai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
}

.ordinary-ai-grid .ordinary-ai-box {
    border: 1px solid var(--border-grey);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
    height: 260px;
    padding: 50px 50px;
    border-radius: 14px;
    gap: 15px;
}

/**==== AI MODAL TRAINING SERVICE SEC CSS START ====**/
.ai-modal-training-service-wrapper {
    max-height: 1465px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

.ai-modal-training-service-inner-wrapper {
    padding: 70px 0;
    border-top: 1px solid var(--border-light-white-three);
    border-bottom: 1px solid var(--border-light-white-three);
}

.ai-modal-training-service-heading {
    padding-right: 15px;
}

.ai-modal-training-service-para span {
    color: var(--text-dull-white-five);
}

/**==== TYPE OF AI MODAL SEC CSS START ====**/
.swiper.types-ai-modal-slider {
    padding-bottom: 40px;
}

.type-ai-modal-box {
    padding: 15px 15px;
}

.type-ai-modal-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.swiper.types-ai-modal-slider .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--grey-bg-five);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.swiper.types-ai-modal-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--black-bg);
    width: 44px;
    height: 12px;
    border-radius: 10px;
}

/**==== FULL CYCLE SEC CSS START ====**/
.full-cycle-grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
}

.full-cycle-grid-box .full-cycle-box {
    border: 0.7px solid var(--border-grey);
    height: 360px;
    padding: 25px 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
    gap: 10px;
}

.full-cycle-grid-box .full-cycle-box:hover {
    border-color: var(--border-red);
}

.full-cycle-grid-box .full-cycle-box:hover h5 {
    display: none;
}

.full-cycle-grid-box .full-cycle-box p {
    display: none;
}

.full-cycle-grid-box .full-cycle-box:hover p {
    display: block;
}

/**==== FLEXIBLE AI ENGAGEMENT SEC CSS START ====**/
.flexible-ai-wrapper {
    padding: 40px 40px;
    background-color: var(--light-white-bg-seven);
}

.vertical-tab-box .nav-pills {
    gap: 30px;
}

.vertical-tab-box .nav-pills .nav-link {
    padding: 18px 30px;
    border-radius: 40px;
    background-color: var(--light-white-bg-eight);
    color: var(--text-white);
    border: 1px solid var(--border-light-white-four);
    font-size: 17px;
    font-weight: var(--font-weight-light);
    position: relative;
    max-width: 330px;
}

.vertical-tab-box .nav-pills .nav-link.active {
    background-color: var(--white-bg);
    font-weight: var(--font-weight-medium);
    border-color: var(--border-white);
    color: var(--text-black);
}

.vertical-tab-box .nav-pills .nav-link::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -70px;
    background: url("../images/icons/arrow-right-black-icon.svg") center / contain no-repeat;
    background-color: var(--white-bg);
    width: 70px;
    height: 70px;
    padding: 16px;
    border-radius: 42px;
    background-size: 57%;
    display: none;
}

.vertical-tab-box .nav-pills .nav-link.active::before {
    display: block;
}

.flexible-ai-box {
    padding-left: 30px;
}

.flexible-ai-content span {
    color: var(--text-dull-white-six);
    line-height: 34px;
}

.horizontal-border {
    background-color: var(--light-white-bg-three);
    width: 100%;
    height: 2px;
    opacity: 1;
    margin: 50px 0;
}

.flexible-ai-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.flexible-inner-content {
    background: var(--light-white-bg-eight);
    border: 0.4px solid var(--text-dull-white-six);
    padding: 12px 40px;
    color: var(--text-white);
    border-radius: 50px;
    font-size: 16px;
    line-height: 27px;
}

/**==== AI MODAL TRAINIG CTA SEC CSS START ====**/
.ai-modal-training-cta-wrapper {
    background-color: var(--red-bg);
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ai-modal-training-cta-wrapper::before {
    content: "";
    position: absolute;
    background: url("../images/development/ai-modal-training/ai-modal-training-cta-before-img.webp") center / cover no-repeat;
    width: 600px;
    height: 100%;
    top: 0;
    right: 30px;
    z-index: -1;
}

.ai-modal-training-cta-button-box .ai-modal-training-cta-button {
    background-color: var(--white-bg);
    color: var(--text-red);
}

/**==== TRAINIG SERVICES SEC CSS START ====**/
.training-service-inner-wrapper {
    padding: 35px 35px;
    border: 1px solid var(--border-grey);
    border-radius: 20px;
    min-height: 600px;
}

.training-service-img img {
    border-radius: 14px;
    display: none;
}

.training-service-inner-wrapper:hover .training-service-img img {
    display: block;
}

.training-service-action-button-box .training-service-action-button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50px;
}

.training-service-action-button-box .training-service-action-button img {
    transform: rotate(-20deg);
}

/**==== AI MODAL TRAINING WHY CHOOSE SEC CSS START ====**/
.ai-modal-training-why-choose-inner-box {
    margin-bottom: 30px;
}

.ai-modal-training-why-choose-inner-box:last-child {
    margin-bottom: 0;
}

.ai-modal-training-why-choose-inner-content-box {
    padding-right: 60px;
}

.ai-modal-training-why-choose-inner-content-box span {
    color: var(--text-dull-white-six);
}

/**==== READY TO TRAIN SEC CSS START ====**/
.ready-to-train-wrapper {
    padding: 50px 80px;
    border-radius: 30px;
}

.ready-to-train-img img {
    border-radius: 20px;
}

/**========================================================== AI MODAL TRAINING SERVICES PAGE CSS FINISH ==========================================================**/

/**========================================================== AI DEVELOPMENT COMPANY PAGE CSS START ==========================================================**/

/**==== BANNER SEC CSS START ====**/
.ai-dev {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

.ai-dev::before {
    content: "";
    position: absolute;
    background: url(../images/development/ai-development-company/ai-dev-banner.webp) center / cover no-repeat;
    width: 60%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
}

/**==== WHY COMPANIES ACROSS SEC CSS START ====**/
.why-companies-across {
    position: relative;
}

.why-companies-main-box {
    padding: 25px 25px;
}

.why-companies-info-count {
    background-color: var(--black-bg);
    color: var(--text-white);
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.why-companies-slider .swiper-wrapper .swiper-slide {
    border-right: 1px solid var(--border-grey-three);
}

.why-companies-slider .swiper-slide-active+.swiper-slide-next+.swiper-slide {
    border: none;
}

.navigation-button-box .why-companies-companies-prev,
.why-companies-companies-next {
    position: static;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--border-black);
    background: var(--white-bg);
}

.navigation-button-box .why-companies-companies-prev svg,
.why-companies-companies-next svg {
    display: none;
}

/**==== AI COMPANIES STOP SEC CSS START ====**/
.stop-box {
    padding: 60px 30px;
    border: 1px solid var(--border-grey-two);
    border-radius: 12px;
    background: var(--light-white-bg-five);
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.not-show {
    opacity: 0;
}

.show-box {
    background: var(--white-bg);
}

.show-box:hover {
    background-image: url(../images/development/ai-development-company/book-call.webp);
}

/**==== AI-BUILD-CONVERSATIONAL SEC CSS START ====**/
.owner-slider {
    margin-left: 160px;
}

.human-box {
    background: var(--black-bg-three);
    border-right: 2px solid var(--border-light-white-two);
    padding: 40px 40px;
    height: 350px;
}

.human-box p {
    color: var(--text-grey-four);
}

.num-1 {
    color: var(--num-1)
}

.num-2 {
    color: var(--num-2)
}

.num-3 {
    color: var(--num-3)
}

.num-4 {
    color: var(--num-4)
}

.num-5 {
    color: var(--num-5)
}

/**==== TRIPLE-FLEXIBLE SEC CSS START ====**/
.flexible-img img {
    height: 660px;
}

.right-side-flexible {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.box-flexible-para p {
    text-align: justify;
}

span.box-flexible-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 24px;
}

.big-dash-bottom {
    height: 2px;
    background-image: var(--gradient-bg-two)
}

.flexible-dot-one {
    background-color: var(--red-bg);
}

.flexible-dot-two {
    background-color: var(--cyan-blue-bg);
}

.flexible-dot-three {
    background-color: var(--green-bg);
}

/**==== CUSTOM AI DEVELOPMENT SEC CSS START ====**/
.scroll-area {
    max-height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
    padding: 20px 0;
}

.custom-ai-development-inner-wrpper {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.custom-ai-development-heading-box {
    padding: 0px 40px;
    min-height: 200px;
    border-bottom: 1px solid var(--border-grey-three);
}

.custom-ai-heading-content svg {
    color: var(--text-grey);
    width: 28px;
}

.custom-ai-development-inner-wrpper:hover .custom-ai-heading-content svg {
    color: var(--text-black);
}

.custom-ai-development-inner-wrpper:hover .custom-ai-development-img img {
    display: block;
}

.custom-ai-development-img img {
    display: none;
}

.custom-ai-development-content-box {
    padding: 40px 50px;
    overflow: hidden;
    position: relative;
}

.custom-ai-development-content-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    height: 100%;
    background-color: var(--border-grey-three);
}

.custom-ai-development-para {
    padding-right: 20%;
}

.platform-tool {
    padding-left: 20px;
}

.tool-box {
    border: 1px solid var(--border-grey-three);
    padding: 12px 35px;
    border-radius: 60px;
}

/**==== TRAINING-EXPERTISE SEC START ====**/
.training-expertise {
    padding-bottom: 0;
}

.training-expertise-wrapper {
    padding: 0px 80px 0px 80px;
}

.training-box {
    padding: 50px 50px;
    border-radius: 20px;
    border-right: 1px solid var(--border-grey-two);
    border-top: 1px solid var(--border-grey-two);
    border-bottom: none;
    border-left: none;
    background: var(--light-black-bg);
    background-image: var(--gradient-bg-three);
    backdrop-filter: blur(15px);
}

.training-box p {
    color: var(--text-grey-three);
}

.training-expertise-img {
    text-align: center;
    overflow: hidden;
}

.training-expertise-img img {
    width: 504px;
    height: 684px;
    object-fit: cover;
    object-position: right;
}

.future-ready-box {
    border-width: 0.7px solid var(--border-grey-three);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.04);
    padding: 20px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.future-ready-box:hover {
    background-color: var(--red-bg-light);
    border: 1.5px solid var(--border-red-two);
}

.feature-ready-icon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-ready-icons .feature-ready-icon-red {
    display: none;
}

.future-ready-box:hover .feature-ready-icons .feature-ready-icon-red {
    display: block;
}

.future-ready-box:hover .feature-ready-icons .feature-ready-icon-black {
    display: none;
}

.feature-ready-info p {
    display: none;
    color: var(--text-black-three);
}

.future-ready-box:hover .feature-ready-info p {
    display: block;
}

.feature-ready-icon-box .feature-ready-arrow-btn {
    width: 50px;
    height: 50px;
    background: var(--text-dull-white-six);
    border: none;
    border-radius: 30px;
    transform: rotate(-39deg);
}

/**==== CASE STUDY SEC CSS START ====**/
.case-study-wrapper {
    border-top: 1px solid var(--border-grey-three);
    border-bottom: 1px solid var(--border-grey-three);
    backdrop-filter: blur(40px);
    padding: 70px 0;
    background: var(--grey-bg-two);
}

.case-study-content span {
    color: var(--text-blue-two);
}

.case-study-key-feature-list {
    gap: 12px;
}

.case-study-content .view-more-btn {
    border: 1px solid var(--border-black);
    padding: 10px 25px;
    border-radius: 50px;
    background: var(--grey-bg-two);
}

.case-study-triple-mind-text {
    position: relative;
    bottom: 10px;
    z-index: -1;
}

.case-study-triple-mind-text h5 {
    font-size: clamp(3rem, 8vw, 9.8rem);
    color: var(--text-grey-five);
    font-weight: 900;
    white-space: nowrap;
}

.case-study-img {
    text-align: center;
}

.case-study-img img {
    max-width: 620px;
}


.ai-development-case-study-slider-button-next svg,
.ai-development-case-study-slider-button-prev svg {
  display: none !important;
}

.ai-development-case-study-slider-button-prev,
.ai-development-case-study-slider-button-next {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: var(--main-bg);
    border: 1px solid var(--black-bg);
}

.ai-development-case-study-slider-button-prev {
    left: 5% !important;
}

.ai-development-case-study-slider-button-next {
    right: 5% !important;
}

/**==== INTEGRATION-WORLDS SEC CSS START ====**/
.integration-world {
    position: relative;
}

.integartion-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.integration-box {
    border: 0.6px solid var(--border-light-white);
    background-color: var(--light-white-bg-eleven);
    padding: 40px 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.integration-box:hover {
    background-image: url(../images/development/ai-development-company/integration-hover-bg.webp);
    background-size: cover;
    background-position: center;
}

.integration-world-swiper-button-box {
    padding-top: 30px;
}

.integration-world-swiper-button-box .integration-world-prev,
.integration-world-next {
    position: static;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--border-white);
    background: var(--black-bg);
}

.integration-world-swiper-button-box .integration-world-next svg,
.integration-world-prev svg {
    display: none;
}

.integration-world-swiper-button-box .swiper-button-disabled {
    background-color: var(--black-bg);
    border-color: var(--disable-border);
    opacity: 0.5;
}

.integration-world-swiper-button-box .swiper-button-disabled img {
    opacity: 0.5;
}

/**==== WATCH VIDEO SEC CSS START ====**/
.watch-video-box {
    padding: 20px 20px;
}

.watch-video-image .play-box {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.watch-video-image .play-box .video-btn {
    border-radius: 54px;
    background: var(--light-white-bg-two);
    backdrop-filter: blur(2.5px);
    width: 70px;
    height: 70px;
    border: none;
}

button.watch-video-button {
    padding: 12px 20px;
    background-color: var(--white-bg);
    border: 1px solid var(--border-black);
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black);
}

.watch-video-prev,
.watch-video-next {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--border-black);
    background: var(--white-bg);
}

.watch-video-prev svg,
.watch-video-next svg {
    display: none;
}

.watch-video-prev {
    left: -80px !important;
}

.watch-video-next {
    right: -80px !important;
}

/**==== ASSELERATION SEC CSS START ====**/
.asserlation-img {
    position: relative;
}

.ai-content {
    position: absolute;
    top: 9%;
    left: 13%;
    line-height: 72px;
}

.build-on-content {
    position: absolute;
    top: 43%;
    right: 18%;
    line-height: 72px;
}

.build-on-content p {
    color: var(--text-red);
}

/**==== CTA SEC CSS START ====**/
.cta-sec {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-sec::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    background: url('../images/development/ai-development-company/cta-before.png') right / cover no-repeat;
    width: 1550px;
    height: 540px;
    z-index: -1;
}

/**==== ENGAGEMENT SEC CSS START ====**/
.hire-dedicated {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.hire-arrow-btn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--border-white);
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-35deg);
}

.hire-content-box {
    padding: 20px 20px;
}

.hire-dedicated:hover .hire-content-box {
    background-color: var(--white-bg);
    height: 100%;
    border: 1px solid var(--border-grey-three);
    border-radius: 15px;
    padding: 40px 20px;
}

.hire-content-box p {
    display: none;
}

.hire-dedicated:hover .hire-content-box p {
    display: block;
}

.hire-dedicated:hover .hire-content-box h3 {
    color: var(--text-black);
}

/**========================================================== AI DEVELOPMENT COMPANY PAGE CSS FINISH ==========================================================**/

/**========================================================== WHITE LABEL MOBILE APP DEVELOPMENT PAGE CSS START ==========================================================**/

/**==== WHITE LABLE BANNER SEC CSS START ====**/
.white-label-banner {
    background: url('../images/development/white-label-mobile-app/whitel-lable-banner-bg.webp') center / cover no-repeat;
    display: flex;
    align-items: center;
}

.white-label-banner-content p {
    color: var(--text-white-two);
}

.white-lable-banner-btn-box .button-red {
    min-height: 60px;
}

.white-lable-banner-btn-box .button-black {
    min-height: 60px;
}

.white-lable-banner-btn-box .learn-more-btn {
    background-color: var(--black-bg);
    box-shadow: none;
    border-color: var(--border-light-white-five);
}

/**==== TRUSTED WHITE LABEL PARTNER SEC CSS START ====**/
.trusted-white-label-partner-grid {
    grid-template-columns: repeat(4, 1fr);
}

/**==== WHITE LABEL MOBILE APP DEVELOPMENT SEC CSS START ====**/
.white-label-mobile-app-development-sec .heading-box p {
    color: var(--text-dull-white-eight);
}

.mobile-app-development-image-heading {
    bottom: 0;
    width: 100%;
    background: var(--gradient-bg-four);
    height: 30%;
    display: flex;
    align-items: end;
    padding: 40px 20px;
}

.mobile-app-development-content-box {
    padding: 25px 25px;
    background: var(--gradient-bg-five);
    border-radius: 12px;
    border: 0.5px solid var(--border-blue-two);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-app-development-content-box a {
    color: var(--text-blue-two);
}

.white-label-mobile-app-development-slider-wrapper .white-label-mobile-app-development-prev,
.white-label-mobile-app-development-next {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--border-white);
    background: var(--white-bg);
}

.white-label-mobile-app-development-slider-wrapper .white-label-mobile-app-development-prev svg,
.white-label-mobile-app-development-next svg {
    display: none;
}

.white-label-mobile-app-development-slider-wrapper .white-label-mobile-app-development-prev {
    left: -100px;
}

.white-label-mobile-app-development-slider-wrapper .white-label-mobile-app-development-next {
    right: -100px;
}

.white-label-mobile-app-development-slider-wrapper .swiper-button-disabled {
    background-color: transparent;
    border-color: var(--border-white);
    opacity: 1;
}

.white-label-mobile-app-development-slider-wrapper .swiper-button-disabled img {
    filter: invert(1);
}

/**==== MOBILE APP DEVELOPMENT PROCESS SEC CSS START ====**/
.development-process-content-column {
    border-right: 2px solid var(--border-black-three);
}

.development-process-content-box {
    max-width: 550px;
}

/**==== READY MADE APP DESIGN SEC CSS START ====**/
.ready-made-app-content {
    margin-bottom: 15%;
}

.development-process-right-content {
    gap: 50px;
    height: 830px;
    overflow: scroll;
       scrollbar-width: none;
}

.development-process-inner-box {
    max-width: 450px;
    background-color: var(--grey-bg-seven);
    border: 0.6px solid var(--border-grey);
    padding: 25px 25px;
    border-radius: 20px;
}

.development-process-inner-box:nth-child(even) {
    transform: translateX(60px);
}

/**==== HAPPY CLIENT SEC CSS START ====**/
.swiper.clientImageSwiper .swiper-wrapper {
    align-items: end;
}

.swiper.clientImageSwiper .swiper-wrapper .swiper-slide .client-image-video-box .client-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.swiper.clientImageSwiper .swiper-wrapper .swiper-slide-active .client-image-video-box .client-img {
    height: 450px;
}

/**==== INDUSTRY SPECIFIC WHITE LABEL SEC CSS START  ====**/
.industry-sepcific-box {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.04);
    padding: 20px 20px;
    border: 0.6px solid var(--border-grey-three);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px 12px;
    transition: all 0.5s ease;
}

.industry-sepcific-box:hover {
    transition: all 0.5s ease;
    background: var(--gradient-bg-five);
}

.industry-specific-icon img {
    max-width: 60px;
}

.industry-specific-content p {
    display: none;
}

.industry-sepcific-box:hover .industry-specific-content p {
    display: block;
}

.why-business-choose-content a {
    color: var(--text-blue-two);
}

.why-business-choose-white-label-slider-button-box {
    margin-top: 60px;
}

.why-business-choose-white-label-slider-button-box .why-business-choose-white-label-next,
.why-business-choose-white-label-prev {
    position: static;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--border-black);
    background: var(--white-bg);
}

.why-business-choose-white-label-slider-button-box .why-business-choose-white-label-next svg,
.why-business-choose-white-label-prev svg {
    display: none;
}

/**==== WHITE LABEL CONTACT SEC CSS START  ====**/
.white-label-contact-sec {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.white-label-contact-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--black-bg);
    clip-path: polygon(0 0, 100% 0%, 100% 55%, 0% 100%);
    z-index: -1;
}

.white-label-content-info {
    padding: 30px 30px;
}

.email-box .email-icon-box {
    width: 80px;
    height: 80px;
    background: var(--light-white-bg-tweleve);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
}

.email-box span {
    opacity: 0.6;
}

.contact-us-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-us-heading hr.stroke-line {
    border-color: var(--border-white);
    opacity: 1;
    border-width: 2px;
    margin: 0;
    width: 40px;
}

.contact-us-social-icon .contact-social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-us-social-icon .contact-social-list li {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-white-bg-thirteen);
    border-radius: 5px;
    transition: all 0.5s ease;
}

.contact-us-social-icon .contact-social-list li:hover {
    background-color: var(--white-bg);
    transition: all 0.5s ease;
}

.contact-us-social-icon .contact-social-list li .black-icon {
    display: none;
}

.contact-us-social-icon .contact-social-list li:hover .black-icon {
    display: block;
}

.contact-us-social-icon .contact-social-list li:hover .white-icon {
    display: none;
}

.white-label-contact-box {
    padding: 40px 40px;
    border-radius: 24px;
    box-shadow: 0 12px 40px 0 rgba(6, 28, 61, 0.05);
}

.white-label-form-row .input-group .form-control {
    border: 0.8px solid var(--border-grey);
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    color: var(--text-black);
}

.white-label-form-row .input-group .form-control::placeholder {
    color: var(--text-grey-two);
}

/**==== IGNITING BUSINESS SEC CSS START  ====**/
.igniting-business-box {
    padding: 15px 15px;
    gap: 35px;
}

.igniting-count {
    width: 60px;
    height: 60px;
    background: var(--gradient-bg-seven);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04);
    border: 0.6px solid var(--border-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.biggest-fears-of-white-label .heading-box p strong{
    color: rgb(32, 151, 160);
}

.reporting-content-box{
    max-height: 400px;
    overflow: scroll ;
    
}

.reporting-content-box::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.case-study-hover-box{
    height: 700px;
}
.background-blue{
    border: 1px solid var(--border-blue);
}




/*=============================================
=            ALREADY-DEVELOPED SEC START            =
=============================================*/


.deal-box-content {
    width: 100%;
}
.top-box-img{
  width: 10%;
}
.review-box img{
    width: 120px;
}



/*=====  End of ALREADY-DEVELOPED SEC START  ======*/




/**========================================================== WHITE LABEL MOBILE APP DEVELOPMENT PAGE CSS FINISH ==========================================================**/

/**========================================================== WHITE LABEL SEO PAGE CSS START ==========================================================**/

/**==== WHITE LABEL SEO BANNER SEC CSS START ====**/
.white-label-seo-banner {
    background: url(../images/white-label/white-label-seo/white-label-seo-bg.webp) center / cover no-repeat;
    padding-bottom: 0;
}

.white-label-seo-banner-content p {
    opacity: 70%;
}

.white-label-auto-slider .swiper-wrapper {
    align-items: end;
}

.swiper.white-label-auto-slider.swiper-initialized.swiper-horizontal {
    margin-top: 90px;
}

/**==== BIGGEST FEAR OF WHITE LABEL SEC CSS START ====**/
.biggest-fear-box {
    border: 1px solid var(--border-grey);
    gap: 30px;
    padding: 30px 30px;
    border-radius: 12px;
    height: 100%;
}

.biggest-fear-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/**==== WHY WE ARE DIFFERENT SEC CSS START ====**/
.why-different-box {
    padding: 30px 30px;
    background-color: var(--black-bg-three);
    border: 1px solid var(--light-white-bg-three);
    border-radius: 20px;
    min-height: 400px;
    position: relative;
    transition: all 0.5s ease;
}

.why-different-box:hover {
    transition: all 0.5s ease;
    background-color: var(--skyblue-bg-two);
}

.why-different-box:hover h3 {
    color: var(--text-black);
}

.why-different-box p {
    opacity: 60%;
}

.why-different-box:hover p {
    color: var(--text-black);
    opacity: 100%;
}


.why-different-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 85%;
    height: 16px;
    background: var(--skyblue-bg);
    clip-path: polygon(3% 0%,
            97% 0%,
            100% 100%,
            0% 100%);
    box-shadow: 0 -6px 25px rgba(189, 239, 249, 0.6);
    transition: all 0.5s ease;
}

.why-different-box:hover::before {
    background: var(--black-bg);
    transition: all 0.5s ease;
}

.why-were-different-slider-button-box {
    margin-top: 80px;
}

.why-were-different-slider-button-box .why-were-different-slider-next,
.why-were-different-slider-prev {
    position: static;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--border-white);
    background: var(--black-bg);
}

.why-were-different-slider-button-box .why-were-different-slider-next svg,
.why-were-different-slider-prev svg {
    display: none;
}


/**==== COMPLETE WHITE LABEL DIGITAL MARKETING SEC CSS START ====**/

.complete-white-label-box {
    padding: 30px 30px;
    border: 0.7px solid var(--border-grey);
    border-radius: 10px;
    transition: all 0.5s ease;
    height: 350px;
}

.complete-white-label-box:hover {
    background: url('../images/white-label/white-label-seo/complete-white-hover-bg.png') center / cover no-repeat;
}

.complete-white-label-content p {
    display: none;
}

.complete-white-label-box:hover .complete-white-label-icon {
    display: none;
}

.complete-white-label-box:hover .complete-white-label-content p {
    display: block;
}

.complete-white-label-box:hover .complete-white-label-content h3 {
    display: none;
}

/**==== WHAT DO YOU GET SEC CSS START ====**/
.seo-wrapper {
    height: 630px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

.stack-item {
    border-top: 1px solid var(--border-grey-three);
    border-bottom: 1px solid var(--border-grey-three);
    padding: 60px 30px;
    background: var(--bg-blur);
    backdrop-filter: blur(60px);
    position: sticky;
    top: 0px;
    z-index: var(--z, 1);
}

.stack-item:nth-child(1) {
    top: 0;
}

.full-seo-inner-content a {
    color: var(--text-blue-two);
    bottom: -150px;
    right: 15px;
}

/**==== REPORTING SEC CSS START ====**/
.reporting-image img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/**==== ONBOARDING EXECUTION SEC CSS START ====**/
.onboarding-wrapper {
    height: 780px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

.onboarding-row {
    margin-bottom: 30px;
}

.onboarding-inner-content {
    padding: 35px 35px;
    border: 1px solid var(--border-grey-three);
    border-radius: 12px;
}

.arrow-image-box {
    width: 80px;
}

.timeline-line {
    width: 5px;
    height: 73%;
    background-color: var(--red-bg);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

ul.points-listing {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

ul.points-listing li {
    width: 50%;
    margin-bottom: 12px;
}

ul.points-listing li:last-child {
    margin-bottom: 0;
}

.arrow-image-box.left-arrow {
    text-align: start;
}

.arrow-image-box.right-arrow {
    text-align: end;
}

/**==== WHITE LABEL SEO CALCULATOR SEC CSS START ====**/
.seo-calculator-wrapper {
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.03);
    padding: 40px 40px;
    border: 0.6px solid var(--border-grey-five);
    border-radius: 20px;
}

.seo-calculator-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.calculator-select-box .form-select {
    border: 1px solid var(--border-grey-five);
    background-color: var(--white-bg);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    padding: 15px 15px;
}

.calculator-inner-box {
    padding: 15px 15px;
}

/**==== WHITE LABEL SEO PRICING SEC CSS START ====**/
.seo-pricing-box {
    background: var(--light-white-bg-thirteen);
    padding: 20px 20px;
    border-radius: 12px;
    border: 0.6px solid var(--light-white-bg-three);
    height: 100%;
}

.seo-pricing-box p {
    display: none;
}

.seo-pricing-box:hover p {
    display: block;
}

.seo-pricing-box:hover img {
    display: none;
}

/**==== SASS TO NSFW SEC CSS START ====**/
.sass-grid-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
}

.sass-inner-box {
    background-color: var(--white-bg);
    border: 0.7px solid var(--border-grey);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
}

.sass-inner-box img {
    max-width: 60px;
}

/**==== CASE STUDY SEC CSS START ====**/
.case-study-main-box:hover .case-study-hover-box {
    display: block;
}

.case-study-main-box:hover .case-study-image-box {
    display: none;
}


.case-study-hover-box {
    padding: 35px 35px;
    border-radius: 8px;
    display: none;
}

.background-red {
    background-color: var(--red-bg-light-two);
    border: 1px solid var(--border-red);
}

.case-study-result-box ul.result-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
}

.case-study-result-box ul.result-list li::marker {
    color: var(--red-bg);
    font-size: 30px;
    line-height: 0;
}

.map-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.background-blue {
    background-color: var(--blue-light-bg);
}

.background-blue .case-study-result-box ul.result-list li::marker {
    color: var(--blue-bg-two);
}

.case-study-slider-prev,
.case-study-slider-next {
    width: 70px;
    height: 70px;
    background-color: var(--white-bg);
    border: 1px solid var(--border-grey-three);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.case-study-slider-prev svg,
.case-study-slider-next svg {
    display: none;
}

.case-study-slider-prev {
    left: -80px !important;
}

.case-study-slider-next {
    right: -80px !important;
}

/**==== FORM CONTACT SEC CSS START ====**/
.form-contact-box .input-group .form-control {
    background: var(--light-white-bg-three);
    color: var(--text-white);
    font-size: 16px;
    border: 1px solid var(--light-white-bg-three);
    border-radius: 8px !important;
}

.form-contact-box .input-group .form-control::placeholder {
    color: var(--text-white);
}

/**========================================================== WHITE LABEL SEO PAGE CSS FINISH ==========================================================**/

/**========================================================== CONTACT US PAGE CSS START ==========================================================**/

/**==== CONTACT BANNER SEC CSS START ====**/
.contact-banner {
    background: url(../images/contact/contact-bg.webp) bottom / cover no-repeat;
}

.contact-form-wrapper {
    padding: 25px 25px;
    background: var(--light-white-bg-thirteen);
    border-radius: 12px;
    border: 0.6px solid var(--light-white-bg-three);
    height: 100%;
    backdrop-filter: blur(15px);
}

.contact-us-form .input-group .form-control {
    border: 0.5px solid var(--border-grey);
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    color: var(--text-black);
    border-radius: 7px;
}

.contact-us-form .input-group .input-group-text {
    border-radius: 7px;
    border: 0.5px solid var(--border-grey);
}

.contact-us-form .input-group .form-control::placeholder {
    color: var(--text-grey-two);
}

/**==== NEXT BIG STORY SEC CSS START ====**/
.next-story-content .comma-one {
    position: absolute;
    left: 10px;
    top: 20px;
}

.next-story-content .comma-two {
    position: absolute;
    right: 10px;
    bottom: 20px;

}

.next-big-swiper-btn .next-big-swiper-prev,
.next-big-swiper-next {
    position: static;
    height: 60px;
    width: 60px;
    background-color: var(--black-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-black);
}

.next-big-swiper-btn .next-big-swiper-prev svg,
.next-big-swiper-next svg {
    display: none;
}

.next-big-swiper-btn .swiper-button-disabled {
    background: transparent;
    opacity: 1;
}

.next-big-swiper-btn .swiper-button-disabled img {
    filter: invert(1);
}

/**==== ABOUT YOUR PROJECT SEC CSS START ====**/
.contact-border-right {
    border-right: 1px solid var(--head-dropdown-active-border);
}

.contact-location-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-info-list li a span {
    color: var(--text-blue-three);
}

.location-box-2 {
    margin-left: 40px;
}

/**========================================================== CONTACT US PAGE CSS FINISH ==========================================================**/

/**========================================================== CASE STUDIES PAGE CSS FINISH ==========================================================**/

/**==== CASE STUDIES BANNER SEC CSS START ====**/
.case-studies-banner-sec {
    min-height: 900px;
}

.case-studies-banner-sec::before {
    content:"";
    position:absolute;
    top:0;
    right:0;
    left:115px;
    margin:0 auto;
    background-color:var(--black-bg);
    filter:blur(90px);
    height:1642px;
    width:466px;
}

.case-studies-wrapper .case-study-content {
    max-width: 530px;
}

.case-studies-wrapper .case-study-triple-mind-text {
    position: absolute;
    bottom: -46px;
}

/**========================================================== CASE STUDIES PAGE CSS FINISH ==========================================================**/

/**========================================================== BLOG PAGE CSS START ==========================================================**/

/**==== BLOG MAIN SEC CSS START ====**/
.blog-heading h2 {
    font-size: 65px;
    line-height: 82px;
}

.blog-para-box p {
    font-size: 17px;
    font-weight: var(--font-weight-regular);
    line-height: 32px;
}

.blog-publish-date {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--light-white-bg-nine);
    padding: 20px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.blog-publish-date h6 {
    font-size: 20px;
    font-weight: var(--font-weight-medium);
}

.blog-main-image {
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-main-image img {
    width: 100%;
}

.blog-main-content p {
    font-size: 17px;
    font-weight: var(--font-weight-regular);
    line-height: 28px;
    margin-bottom: 16px;
}

.blog-main-content p:last-child {
    margin-bottom: 0;
}

/**==== BLOG INFO SEC CSS START ====**/
.blog-info-sec {
    padding: 30px 0;
    position: relative;
}

.blog-quote-box {
    padding: 17px 36px;
    background-color: var(--light-blue-bg);
    border: 1px solid var(--border-blue);
    border-radius: 10px;
}

.blog-quote-box p {
    font-size: 16px;
    color: var(--text-blue-two);
    line-height: 28px;
    font-weight: var(--font-weight-regular);
}

.blog-inner-content h1,
.blog-inner-content h2,
.blog-inner-content h3,
.blog-inner-content h4,
.blog-inner-content h5,
.blog-inner-content h6 {
    font-size: 40px;
    font-weight: var(--font-weight-black);
    color: var(--text-black);
    line-height: 55px;
    margin-bottom: 10px;
}

.blog-inner-content p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
    color: var(--text-black-two);
}

.blog-inner-content img {
    width: 100%;
    margin-bottom: 15px;
}

.table-of-content {
    background: var(--black-bg);
    padding: 20px 25px;
    border-radius: 8px;
    position: sticky;
    top: 30px;
}

.table-of-content h6 {
    color: var(--text-red);
    font-size: 24px;
}

.table-of-content-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 15px;
    list-style: disc;
    margin: 0;
}

.table-of-content-list li a.toc-link {
    color: var(--text-dull-white-six);
    font-size: 18px;
    font-weight: var(--font-weight-light);
    line-height: 28px;
}

.table-of-content-list li a.toc-link.active {
    color: var(--text-dull-white-seven);
}

/**========================================================== BLOG PAGE CSS FINISH ==========================================================**/

/**========================================================== FOOTER CSS START ==========================================================**/

.footer {
    padding: 90px 0 30px 0;
}

.footer .footer-main-row {
    justify-content: space-between;
}

.footer-box h6 {
    margin-bottom: 24px;
}

.footer-box .input-group {
    border-radius: 100px;
    background-color: var(--light-white-bg-three);
    margin-bottom: 24px;
}

.footer-box .input-group .form-control {
    border-radius: 100px;
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    color: var(--text-dull-white-two);
}

.footer-box .input-group .form-control::placeholder {
    color: var(--text-dull-white-two);
}

.footer-box .input-group .input-group-text {
    border-radius: 100px;
}

.footer-box .input-group .input-group-text .email-submit-button {
    height: 60px;
    width: 60px;
    border-radius: 50px;
    border: none;
    background-color: var(--red-bg-two);
    transform: rotate(-26deg);
}

.social-icon-list-box ul.social-list {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon-list-box ul.social-list img {
    max-width: 22px;
}

.social-icon-list-box ul.social-list li a {
    padding: 10px 13px;
    background-color: var(--white-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 60px;
    width: 90px;
    height: 40px;
}

.social-icon-list-box ul.social-list li a .arrow-icon {
    transform: rotate(-30deg);
}

.footer-box ul.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-left: 1px solid var(--border-black-two);
    padding-left: 30px;
}

.footer-box ul.footer-links-list li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-box ul.footer-links-list li a:hover {
    transition: all 0.3s ease;
    color: var(--text-red);
}

.triple-mind-text {
    margin-top: 60px;
    margin-bottom: 30px;
}

.triple-mind-text h3 {
  font-size: clamp(24px, 15vw, 250px);
}

.copyright-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright-text span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 10px;
}

/**========================================================== FOOTER CSS FINISH ==========================================================**/

/**========================================================== MODALS CSS START ==========================================================**/

/**==== VIDEO POPUP MODAL CSS START ====**/
.video-modal .modal-header .modal-close {
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    outline: none;
    font-size: 50px;
    line-height: normal;
    margin-top: 15px;
    margin-right: 50px;
}


.video-wrapper iframe,
.video-wrapper video {
    height: min(85vh, 85vw);
    width: min(85vh, 85vw);
    margin: 0 auto;
}

/**==== CONTACT POPUP MODAL CSS START ====**/
.contact-popup-modal .modal-dialog {
    max-width: clamp(320px, 90vw, 1200px);
}
.contact-popup-content-wrapper {
    border-radius: 20px;
    padding: 40px 40px;
}

.contact-popup-content p {
    opacity:80%;
}

.contact-popup-image img {
    max-width:80%;
}

.lead-form-input-col {
  margin-bottom: 35px;
}

.lead-form-input-col:last-child {
    margin-bottom:0;
}

.lead-form-input-col .input-group .form-control {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: var(--border-grey);
  border-radius: 0;
  padding: 15px 0;
  font-size: 15px;
  color: var(--text-black-three);
  font-weight: var(--font-weight-normal);
}

.lead-form-input-col .input-group.form-check .form-check-input:checked {
    background-color: var(--red-bg);
    border-color: var(--border-red);
}

.lead-form-input-col .input-group.form-check .form-check-input {
    border-radius: 3px !important;
    border-color: var(--border-black);
}

.lead-form-input-col .form-check-label {
    padding-top: 5px;
}

.contact-popup-modal .btn-close {
  width: 40px;
  height: 40px;
  background-color: var(--white-bg);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  opacity: 1;
  color: var(--text-black);
  font-size: 35px;
  background-image: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -16px;
  top: -16px;
  border: 1px solid var(--border-grey-six);
  z-index:55;
}
/**========================================================== MODALS CSS FINISH ==========================================================**/




/******* ====================== THANKYOU PAGE CSS START ====================== *******/
.thankyou-contact-box {
    border-radius: 12px;
    padding: 30px 30px;
    height: 100%;
}

.thankyou-contact-box .icon-heading img {
    width: 40px;
}

.thankyou-contact-box .icon-heading .calender-icon {
    width: 30px;
}

.contact-number-list-box ul.contact-number-list {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.contact-number-list-box ul.contact-number-list li {
  position: relative;
}

.contact-number-list-box ul.contact-number-list li a span img {
    width:22px;
}

.contact-number-list-box ul.contact-number-list li::before {
  content: "";
  position: absolute;
  background: var(--text-black);
  width: 2px;
  height: 87%;
  right: -27px;
}

.contact-number-list-box ul.contact-number-list li:last-child::before {
  display: none;
}

.platform-list-box ul.platform-list {
  list-style: none; 
}

.platform-list-box ul.platform-list li a svg {
  width: 20px;
}

/******* ====================== THANKYOU PAGE CSS FINISH ====================== *******/

/******* ====================== WHATSAPP POPUP CSS START ====================== *******/

.tm-wa-wrap {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    z-index: 9999;
}

.tm-wa-wrap .tm-wa-fab {
    border: none;
    background-color: var(--green-bg);
    width: 60px;
    height: 60px;
    border-radius: 50px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
        animation: tm-wa-wiggle 2s ease-in-out infinite,
               tm-wa-pulse 2s ease-in-out infinite;
}

@keyframes tm-wa-wiggle {
    0% {
        transform: rotate(0deg)
    }

    4% {
        transform: rotate(-8deg)
    }

    8% {
        transform: rotate(6deg)
    }

    12% {
        transform: rotate(-4deg)
    }

    16% {
        transform: rotate(2deg)
    }

    20% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

@keyframes tm-wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .35)
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

.tm-wa-wrap .tm-wa-fab img {
    max-width: 30px;
}


.tm-wa-list {
    display: flex;
    flex-direction: column;
        align-items: flex-end;
    gap: 16px;
}

.tm-wa-item {
    background: var(--green-bg);
    color: var(--text-white);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    transition: transform .26s ease, opacity .26s ease;
    transform: translateY(20px) scale(.96);
}

.tm-wa-item strong {
    display: block;
}

.tm-wa-item span {
    font-size: 12px;
}

.tm-wa-wrap.is-open .tm-wa-item {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(calc(-8px - (var(--i) * 6px))) scale(1);
    transition-delay: calc(var(--i) * 70ms);
}

/******* ====================== WHATSAPP POPUP CSS FINISH ====================== *******/






