﻿/*-------------------------*/
.home-banner-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 4rem;
}

.home-banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 43deg, rgba(221, 207, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 54%, rgba(254, 254, 254, 0.3) 64%, rgba(255, 255, 255, 0.2) 98% );
    z-index: 2;
}

.home-banner-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    color: #000;
    padding-top: 5rem;
}

.home-banner-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.home-banner-highlight {
    color: #7c4dff;
    font-weight: 700;
}

.home-banner-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

.home-banner-btn {
    display: inline-block;
    padding: 8px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #7c4dff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .home-banner-btn:hover {
        background-color: #5e35b1;
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 768px) {
    .home-banner-title {
        font-size: 2rem;
    }

    .home-banner-subtitle {
        font-size: 0.9rem;
    }
    .home-banner-section {
        height: 450px;
        margin-bottom: 2rem;
    }
    .home-banner-content {
        position: relative;
        z-index: 3;
        max-width: 1000px;
        color: #000;
    }
}

@media (max-width: 480px) {
    .home-banner-title {
        font-size: 1.5rem;
    }

    .home-banner-subtitle {
        font-size: 0.8rem;
    }

    .home-banner-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
.home-banner-ai-btn {
    background-color: #854CFF;
    color: white;
    font-size: 0.9rem;
}

    .home-banner-ai-btn:hover {
        background-color: #6133c4;
        color: white;
    }

.circle-icon img {
    width: 15px;
    height: 15px;
    margin-left: 2px;
    margin-bottom: 2px;
}

.home-mobile-view {
    display: none !important;
}

.home-desktop-view {
    display: block;
}

@media (max-width: 991px) {
    .banner-slider .fade-img {
        width: 100%;
    }
    .home-mobile-view {
        display: block !important;
        text-align: center;
        margin-bottom: 10px;
    }

    .home-desktop-view {
        display: none;
    }

    .home-banner-ai-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .home-banner-ai-title {
        font-size: 1.5rem;
        margin-bottom: 1px !important;
    }
    .banner-slider {
        min-height: 370px !important;
    }
    .home-banner-ai-desc {
        font-size: 0.95rem;
    }

    .home-banner-ai-circle-1 {
        width: 150px;
        height: 150px;
        top: 138px;
        left: 168px;
    }

    .home-banner-ai-image {
        margin-left: 20px;
        width: 320px;
    }

    .home-banner-ai-circle-2 {
        width: 220px;
        height: 220px;
        top: 125px;
        left: 150px;
    }

    .home-banner-ai-btn-wrapper {
        text-align: center;
    }
}

.home-mobile-view {
    display: none !important;
}

.home-desktop-view {
    display: block;
}

@media (max-width: 991px) {
    .home-mobile-view {
        display: block !important;
        text-align: center;
        margin-bottom: 10px;
    }

    .home-desktop-view {
        display: none;
    }
}

/*-------------------------------------------*/
.home-cta-1-section {
    background: #ffffff;
    margin-bottom:3.5rem;
}

.home-cta-1-title {
    font-size: 2rem;
    line-height: 1.3;
    color: #222;
}

    .home-cta-1-title span {
        color: #000;
    }

.home-cta-1-desc {
    color: #555;
    font-size: 1rem;
    max-width: 520px;
}

.home-cta-1-image-wrapper {
    position: relative;
}

.home-cta-1-image {
    max-width: 80%;
    z-index: 3;
    position: relative;
}

.home-cta-1-ring,
.home-cta-1-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.home-cta-1-ring-1,
.home-cta-1-ring-2 {
    border: 1.5px solid rgb(30 0 119 / 30%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: home-cta-1-spin 20s linear infinite;
}

.home-cta-1-ring-1 {
    width: 210px;
    height: 220px;
    left: 201px;
}

.home-cta-1-ring-2 {
    width: 215px;
    height: 215px;
    left: 220px;
    animation-direction: reverse;
    animation-duration: 25s;
}

.home-cta-1-circle {
    width: 250px;
    height: 250px;
    background: rgba(138, 99, 255, 0.3);
    top: 40px;
    left: 485px;
    transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
    .home-cta-1-section {
        background: #ffffff;
        margin-bottom: 20px;
    }
    .home-cta-1-image {
        max-width: 280px;
    }

    .home-cta-1-ring-1 {
        width: 320px;
        height: 320px;
    }

    .home-cta-1-ring-2 {
        width: 230px;
        height: 230px;
    }

    .home-cta-1-circle {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .home-cta-1-title {
        font-size: 1.6rem;
    }

    .home-cta-1-desc {
        font-size: 0.95rem;
    }
}
/*---------------------------------*/
.home-cta-2-section {
    background-color: #fff;
    margin: 2rem 0rem;
}

.home-cta-2-title {
    font-size: 2rem;
    line-height: 1.3;
}

.home-cta-2-highlight {
    color: #000;
    font-weight: 800;
}

.home-cta-2-text {
    font-size: 1rem;
    color: #444;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.home-cta-2-button {
    background-color: #937eff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

    .home-cta-2-button:hover {
        background-color: #7e68e6;
    }

.home-cta-2-image-wrapper img {
    max-width: 80%;
    height: auto;
}

@media (max-width: 768px) {
    .home-cta-2-title {
        font-size: 1.5rem;
    }

    .home-cta-2-section {
        margin: 0rem 0rem;
    }
}
/*-------------------------*/
.home-service-section {
    background: #fff;
    position: relative;
}

.home-service-watermark {
    font-size: 5rem !important;
    font-weight: 600;
    color: rgb(255 255 255 / 5%);
    -webkit-text-stroke: 2px rgb(161 54 203 / 19%);
    position: absolute;
    top: -44px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    -webkit-mask-image: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.home-service-watermark-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.home-service-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    transition: all 0.3s ease-in-out;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

    .home-service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        padding: 0.6px;
        background: linear-gradient(90deg, #854CFF, #854CFF);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .home-service-card:hover::before {
        opacity: 1;
    }

.home-service-icon {
    width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    perspective: 1000px;
}

    .home-service-icon img {
        width: 100%;
        transition: transform 0.8s ease-in-out;
        transform-style: preserve-3d;
    }

.home-service-card:hover .home-service-icon img {
    transform: rotateY(360deg);
}

.home-service-card h5 {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.home-service-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.home-service-readmore {
    align-self: flex-end;
    margin-top: auto;
    padding: 5px 10px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 13px;
    text-decoration: none;
    color: #333;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.home-service-card:hover .home-service-readmore {
    background-color: #854CFF;
    color: #fff;
    border-color: #504CFF;
}

@media (max-width: 768px) {
    .home-service-watermark {
        font-size: 3.5rem !important;
        top: -30px;
    }

    .home-service-watermark-title {
        font-size: 1.5rem !important;
    }

    .home-service-section .row {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
        margin: 0;
    }

        .home-service-section .row::-webkit-scrollbar {
            display: none;
        }

    .home-service-card {
        flex: 0 0 72% !important;
        scroll-snap-align: start;
        transition: transform 0.3s ease;
    }

    .home-service-section .row > [class*="col-"] {
        flex: 0 0 72% !important;
        scroll-snap-align: start;
    }

    .home-service-card.active {
        transform: scale(1.07);
        z-index: 2;
        border: 0.5px solid #854CFF;
    }

        .home-service-card.active .home-service-readmore {
            background-color: #854CFF;
            color: #fff;
            border-color: #504CFF;
        }
}
/*------------------------------*/
.home-partner-section {
    background: url('https://n-teleglobalwebsitemedia.s3.ap-south-1.amazonaws.com/WEBSITE%2BIMAGES%2B-%2B32%2BPAGES/TGI_Home_updates/New-home-page/abstract-home-bg-shape.png') no-repeat center center / contain, linear-gradient(135deg, #6b46ff, #854cff);
    border-radius: 20px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    margin: 10px;
}

.home-partner-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 2rem;
}

.home-partner-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #f1f1f1;
    margin-bottom: 50px;
}

.home-partner-logos {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.home-partner-logos-track {
    display: flex;
    width: max-content;
    animation: home-partner-scroll-logos 20s linear infinite;
    margin-bottom: 3rem;
}

    .home-partner-logos-track img {
        height: 40px;
        margin: 0 40px;
        transition: transform 0.3s ease;
    }

        .home-partner-logos-track img:hover {
            transform: scale(1.1);
        }

@keyframes home-partner-scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .home-partner-title {
        font-size: 1.5rem;
    }

    .home-partner-subtitle {
        font-size: 0.9rem;
    }

    .home-partner-logos-track img {
        height: 40px;
        margin: 0 20px;
    }
}
/*-------------------------------------------*/
.home-why-section {
    background: #fff;
    text-align: center;
    margin: 4rem 0rem;
}

.home-why-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111;
}

.home-why-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.home-why-card {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 0.2px solid #ebeaea;
}

    .home-why-card:hover {
        background: linear-gradient(135deg, #e4e2ff, #f2f0ff);
    }

    .home-why-card h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 0.5rem;
    }

    .home-why-card p {
        font-size: 1rem;
        color: #333;
        margin: 0;
    }

.home-why-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #6b46ff;
    transition: color 0.3s ease;
}

.home-why-arrow {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #9c7bff;
    border: 1.5px solid #9c7bff;
    border-radius: 50%;
    padding: 0 5px;
}

.home-why-link:hover {
    color: #4b27d6;
}

@media (max-width: 768px) {
    .home-why-title {
        font-size: 1.5rem;
    }

    .home-why-subtitle {
        font-size: 1rem;
    }

    .home-why-card h3 {
        font-size: 1.5rem;
    }

    .home-why-section {
        margin: 1rem 0rem;
    }
}

.home-why-cta-wrapper {
    position: relative;
    display: inline-block;
}

@media (min-width: 768px) {
    .home-why-cta-wrapper::before {
        content: "";
        position: absolute;
        top: -120px;
        left: 235px;
        width: 20px;
        height: 1px;
        background: #222;
    }

    .home-why-cta-wrapper::after {
        content: "";
        position: absolute;
        top: -120px;
        left: 255px;
        width: 0.5px;
        height: 185px;
        background: #222;
    }

    .home-why-cta-wrapper span::before {
        content: "";
        position: absolute;
        bottom: 39px;
        left: 119px;
        width: 137px;
        height: 0.5px;
        background: #222;
    }
}

@media (max-width: 767.98px) {
    .home-why-section .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .home-why-card {
        height: auto;
        min-height: 250px !important;
    }

    .home-why-card {
        position: relative;
    }

    .home-why-section .row > [class*="col-"]:nth-child(2n) .home-why-card::after {
        display: none;
    }
}

@media (max-width: 1050px) {
    .home-why-cta-wrapper::before,
    .home-why-cta-wrapper::after,
    .home-why-cta-wrapper span::before {
        display: none !important;
    }
}
/*---------------------------------------------------*/
.home-industries-section {
    display: flex;
    padding: 40px;
    background: #E8E8FF;
}

.home-container {
    display: flex;
    width: 100%;
}

.home-industries-left {
    flex: 0 0 35%;
    padding-right: 30px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.home-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.home-subtitle {
    font-size: 3.5rem !important;
    font-weight: 600;
    color: rgb(255 255 255 / 5%);
    -webkit-text-stroke: 1px rgb(79 4 189 / 40%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.home-desc {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.home-industry-btn {
    background: #7b68ee;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.home-industries-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    overflow-y: auto;
    padding-right: 10px;
}

    .home-industries-right::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

.home-industry-card {
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    border: 0.1px solid #8b8b8b;
    transition: all 1.4s ease;
}

    .home-industry-card img {
        width: 40px;
        margin-bottom: 12px;
    }

    .home-industry-card p {
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }

    .home-industry-card:hover {
        background: #854CFF;
        color: #fff;
    }

    .home-industry-card .hover {
        display: none;
    }

    .home-industry-card:hover p {
        color: #fff;
    }

    .home-industry-card:hover .default {
        display: none;
    }

    .home-industry-card:hover .hover {
        display: inline-block;
    }

.home-desktop-only {
    display: inline-block;
}

.home-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .home-desktop-only {
        display: none;
    }

    .home-mobile-only {
        display: inline-block;
        margin-top: 20px;
    }
}

@media(max-width: 768px) {
    .home-industries-section {
        display: block;
    }

    .home-container {
        flex-direction: column;
    }

    .home-industries-left {
        flex: 100%;
        position: relative;
        margin-bottom: 30px;
    }

    .home-industries-right {
        max-height: auto;
        overflow-y: visible;
    }

    .home-industries-right {
        grid-template-columns: repeat(2, 1fr);
        overflow-y: visible;
    }

    .home-industry-card {
        min-width: 165px;
    }
}

@media (max-width: 400px) {
    .home-industries-right {
        grid-template-columns: repeat(1, 1fr) !important;
        overflow-y: visible;
    }
}
/*------------------------------*/
.home-blog {
    background: #fff;
    padding: 40px 20px;
}

.home-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.home-blog-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.home-blog-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 70%;
}

.home-blog-viewall {
    display: flex;
    align-items: center;
}

.home-blog-viewall-link {
    font-size: 16px;
    color: #6a4ff7;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-blog-card {
    display: none;
}

.home-blog-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid #555;
}

.home-blog-img {
    width: 100%;
    height: 200px;
    object-fit: fill;
}

.home-blog-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 10px;
}

.home-blog-card-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.home-blog-readmore {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    align-self: flex-end;
    text-align: right;
    margin-bottom: 10px;
}

.home-blog-readmore-wrapper {
    margin-top: auto;
    text-align: right;
}

.home-blog-readmore-arrow {
    color: #fff;
    font-size: 15px;
    background: #854CFF;
    padding: 0px 7px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.home-blog-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-blog-prev,
.home-blog-next {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .home-blog-prev .arrow {
        font-size: 20px;
        color: #333;
        font-size: 2rem;
    }

.home-blog-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

    .home-blog-next .arrow {
        font-size: 20px;
        color: black;
        font-size: 2rem;
    }

    .home-blog-prev .arrow,
    .home-blog-next .arrow {
        position: relative;
        z-index: 2;
    }

.home-blog-viewall-link {
    font-size: 16px;
    color: #525252;
    text-decoration: underline;
    position: relative;
}

    .home-blog-viewall-link:hover {
        color: #854CFF;
    }

.home-blog-prev.active::after,
.home-blog-next.active::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #854CFF;
    border-radius: 50%;
    z-index: 1;
}

.home-blog-prev.active::after {
    left: -5px;
    top: 27px;
}

.home-blog-next.active::after {
    right: -2px;
    top: 24px;
}

.home-blog-prev.inactive .arrow,
.home-blog-next.inactive .arrow {
    color: #aaa;
    cursor: default;
}

@media (max-width: 768px) {
    .home-blog {
        padding: 20px 20px;
    }

    .home-blog-header {
        display: flex;
        flex-direction: column;
    }

    .home-blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

        .home-blog-grid::-webkit-scrollbar {
            display: none;
        }

    .home-blog-card {
        flex: 0 0 90%;
        display: flex !important;
        scroll-snap-align: start;
    }
    .home-blog-img {
        width: 100%;
        height: 165px;
        object-fit: fill;
    }

    .home-blog-subtitle {
        max-width: 100%;
    }

    .home-blog-nav .home-blog-prev, .home-blog-nav .home-blog-next, .home-case-study-prev, .home-case-study-next {
        display: none !important;
    }

    .home-blog-nav, .home-case-study-nav {
        display: flex;
        align-items: end !important;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
}
/*--------------------------------*/
.home-case-study-section {
    background: #fff;
    padding: 20px;
    margin: 2rem 0rem;
}

.home-case-study-title {
    font-weight: 700;
    font-size: 2rem;
}

.home-case-study-subtitle {
    max-width: 700px;
    color: #555;
}

.home-case-study-cards-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .home-case-study-cards-wrapper::-webkit-scrollbar {
        display: none;
    }

.home-case-study-cards {
    gap: 20px;
}

.home-case-study-card {
    flex: 0 0 85%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    scroll-snap-align: start;
    transition: transform 0.3s;
    padding: 10px;
}

.home-case-study-img-wrap {
    flex: 0 0 55%;
}

.home-case-study-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.home-case-study-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.home-case-study-card-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.home-case-study-card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: auto;
}

.home-case-study-readmore {
    font-weight: 600;
    color: #6c2bd9;
    text-decoration: none;
}

    .home-case-study-readmore:hover {
        text-decoration: underline;
    }

@media (min-width: 992px) {
    .home-case-study-card {
        flex: 0 0 70%;
    }

    .home-case-study-section {
        margin: 0rem 0rem;
    }
}


.home-case-study-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-case-study-prev,
.home-case-study-next {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .home-case-study-prev .arrow {
        font-size: 20px;
        color: #333;
        font-size: 2rem;
    }

.home-case-study-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

    .home-case-study-next .arrow {
        font-size: 20px;
        color: black;
        font-size: 2rem;
    }

    .home-case-study-prev .arrow,
    .home-case-study-next .arrow {
        position: relative;
        z-index: 2;
    }

.home-case-study-viewall-link {
    font-size: 16px;
    color: #525252;
    text-decoration: underline;
    position: relative;
}

    .home-case-study-viewall-link:hover {
        color: #854CFF;
    }

.home-case-study-prev.active::after,
.home-case-study-next.active::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #854CFF;
    border-radius: 50%;
    z-index: 1;
}

.home-case-study-prev.active::after {
    left: -5px;
    top: 27px;
}

.home-case-study-next.active::after {
    right: -2px;
    top: 24px;
}

.home-case-study-prev.inactive .arrow,
.home-case-study-next.inactive .arrow {
    color: #aaa;
    cursor: default;
}

@media (max-width: 767.98px) {
    .home-case-study-card {
        flex-direction: column;
        min-width: 85%;
    }

    .home-case-study-img-wrap {
        flex: 0 0 auto;
        width: 100%;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 0;
        border-top-right-radius: 12px;
    }

    .home-case-study-img {
        width: 100%;
        height: auto;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        object-fit: cover;
    }

    .home-case-study-content {
        width: 100%;
        padding: 1rem;
    }

    .home-case-study-nav {
    }
}
/*--------------------------------*/
.home-testimonial-section {
    padding: 30px 20px;
    color: white;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 2rem;
    margin-bottom: 2em;
}

.home-testimonial-header {
    color: black;
    font-size: 2rem;
}

.home-testimonial-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.home-testimonial-partners-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.home-testimonial-container-bg-theme{
    background-color: #1c1132;
}
.home-testimonial-partners-wrapper::-webkit-scrollbar {
    display: none;
}

.home-testimonial-partners {
    flex: 0 0 100%; 
    scroll-snap-align: start;
}

.home-testimonial-partners {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 60px 0px 20px 70px;
    height: auto;
}

.home-testimonial-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

    .home-testimonial-row img {
        width: 85px;
        object-fit: contain;
    }
.home-testimonial-row-img {
    width: 135px !important;
    object-fit: contain;
}
.home-testimonial-reviews {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #1c1132;
    padding: 20px;
    border-radius: 0px 0px 40px 0px;
    height: auto;
}

.home-testimonial-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    padding: 25px 25px 15px 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .home-testimonial-slider::-webkit-scrollbar {
        display: none;
    }

.home-testimonial-card {
    border-radius: 10px;
    padding: 20px;
    flex: 0 0 48%;
    box-sizing: border-box;
}

.home-testimonial-card-quote {
    font-size: 3rem;
    color: #9795FF;
    font-family: ui-monospace;
    font-weight: 900;
}

.home-testimonial-card p {
    font-size: 15px;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 15px;
}

.home-testimonial-author {
    font-size: 14px;
    font-weight: bold;
    color: #cfcfcf;
}

.home-testimonial-controls {
    display: flex;
    justify-content: flex-end;
}

.home-testimonial-prev {
    background-color: #7b3ff2;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.home-testimonial-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-testimonial-prev,
.home-testimonial-next {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .home-testimonial-prev .arrow {
        font-size: 20px;
        color: #333;
        font-size: 2rem;
    }

.home-testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

    .home-testimonial-next .arrow {
        font-size: 20px;
        color: black;
        font-size: 2rem;
    }

    .home-testimonial-prev .arrow,
    .home-testimonial-next .arrow {
        position: relative;
        z-index: 2;
        margin-top: 8px;
        color: white;
    }

.home-testimonial-viewall-link {
    font-size: 16px;
    color: #525252;
    text-decoration: underline;
    position: relative;
}

    .home-testimonial-viewall-link:hover {
        color: #854CFF;
    }

.home-testimonial-prev.active::after,
.home-testimonial-next.active::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #854CFF;
    border-radius: 50%;
    z-index: 1;
}

.home-testimonial-prev.active::after {
    left: -5px;
    top: 27px;
}

.home-testimonial-next.active::after {
    right: -2px;
    top: 28px;
}

.home-testimonial-prev.inactive .arrow,
.home-testimonial-next.inactive .arrow {
    color: #aaa;
    cursor: default;
}

.home-testimonial-next .active {
    color: white;
}

@media (max-width: 768px) {
    .home-testimonial-section {
        padding: 30px 0px;
        color: white;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 2rem;
        margin-bottom: 2em;
    }
    .home-testimonial-partners {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 2px 0px 24px;
    }
    .home-testimonial-row img {
        width: 140px;
    }
    .home-testimonial-row-img {
        width: 185px !important;
    }
    .home-testimonial-container {
        flex-direction: column;
    }

    .home-testimonial-partners,
    .home-testimonial-reviews {
        width: 100%;
    }

    .home-testimonial-slider {
        flex-direction: column;
    }

    .home-testimonial-card {
        flex: 1 1 100%;
    }

    .home-testimonial-controls {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .home-testimonial-row img {
        width: 71px !important;
    }

    #btnSimpleSubmit, .home-banner-ai-btn {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 768px) {
    .home-testimonial-slider {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .home-testimonial-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
    }

    .home-testimonial-controls {
        display: none;
    }

    .home-testimonial-section {
        margin-top: 0rem;
    }
}
.home-testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 15px;
}

    .home-testimonial-indicators .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #b8b8b8;
        transition: background 0.3s;
    }

        .home-testimonial-indicators .dot.active {
            background: #7b3ff2;
        }

/*---------------------------*/
.ready-begin-section {
    margin-top: 9rem;
    position: relative;
    background: linear-gradient(to bottom, #ffffff 50%, #11002D 50%);
    padding-bottom: 5rem;
    padding-top: 2rem;
}

.ready-begin-section-container-title {
    margin-top: 4rem;
    font-size: 3rem;
    font-weight: 600;
}

.bg-purple {
    background: url('https://n-teleglobalwebsitemedia.s3.ap-south-1.amazonaws.com/WEBSITE%2BIMAGES%2B-%2B32%2BPAGES/TGI_Home_updates/New-home-page/abstract-home-bg-shape.png') no-repeat center center / contain, linear-gradient(135deg, #6b46ff, #854cff);
    border-radius: 16px;
    min-height: 385px;
    position: relative;
}

.ready-form-box {
    max-width: 420px;
    position: absolute;
    top: 140px;
    left: 60%;
    transform: translateY(-50%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 0, 0, 0.15) !important;
}

.btn-theme {
    background: #7a3cff;
    color: #fff !important;
    border-radius: 6px;
    padding: 10px 15px;
    border: none;
    transition: 0.3s;
}

    .btn-theme:hover {
        background: #5a2cb0;
    }

@media (max-width: 991px) {
    .ready-form-box {
        left: 0%;
    }
}

@media (max-width: 991px) {
    .ready-form-box {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: -10px;
        width: 100%;
        max-width: 100%;
    }

    .bg-purple {
        text-align: center;
    }

    .ready-begin-section {
        margin-top: 0rem;
        position: relative;
        background: linear-gradient(to bottom, #ffffff 10%, #15121f 40%);
        padding-bottom: 0rem;
        padding-top: 0rem;
    }
}
/*---------------*/
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

.hero-text {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeSlideIn 1s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}