/* =========================
   INNER HERO
========================= */

.inner-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 100px;
    background-image: url('../img/services/Software-banner.jpg');
    background-size: cover;
    background-position: center;
}

/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0,0,0,0.65), rgba(0,0,0,0.70) );
    z-index: 1;
}

/* TITLE */

.inner-hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 28px;
}

/* DESCRIPTION */

.inner-hero-desc {
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
    max-width: 1050px;
    margin: auto auto 40px;
}

.inner-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 55px;
    padding: 0 30px;
    border-radius: 16px;
    background: linear-gradient( 135deg, #5b3df5, #00c2ff );
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: all 0.35s ease;
    box-shadow: 0 14px 35px rgba(91,61,245,0.28);
}

    /* HOVER */

    .inner-hero-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 45px rgba(91,61,245,0.35);
        color: #fff;
    }

/* MOBILE */

@media(max-width:991px) {

    .inner-hero {
        min-height: auto;
        padding: 130px 0 80px;
    }

    .inner-hero-title {
        font-size: 42px;
    }

    .inner-hero-desc {
        font-size: 18px;
        line-height: 1.7;
    }
}

@media(max-width:576px) {

    .inner-hero-title {
        font-size: 34px;
    }

    .inner-hero-desc {
        font-size: 16px;
    }

    .inner-hero-btn {
        height: 50px;
        font-size: 16px;
        padding: 0 26px;
    }
}
/* =========================
   SECURITY SECTION
========================= */

.security-section {
    width: 100%;
    background: #fff;
    padding: 38px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

/* WRAPPER */

.security-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* TRACK */

.security-marquee-track {
    display: flex;
    align-items: center;
    gap: 85px;
    width: max-content;
    animation: securityScroll 28s linear infinite;
}

/* LABEL */

/* LABEL */

.security-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #eef3ff;
    padding: 12px 24px;
    border-radius: 60px;
    color: #2155ff;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(33,85,255,0.08);
    width: fit-content;
    margin: auto;
}

    /* ICON */

    .security-label i {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg,#5b3df5,#00c2ff);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }

/* LOGOS */

.security-marquee-track img {
    flex-shrink: 0;
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.92;
    transition: 0.3s ease;
}

    /* HOVER */

    .security-marquee-track img:hover {
        transform: scale(1.08);
        opacity: 1;
    }

/* ANIMATION */

@keyframes securityScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* MOBILE */

@media(max-width:768px) {

    .security-section {
        padding: 28px 0;
    }

    .security-marquee-track {
        gap: 45px;
    }

        .security-marquee-track img {
            height: 48px;
        }

    .security-label {
        font-size: 15px;
        padding: 10px 18px;
    }

        .security-label i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }
}

/* LOGO CARD */

.security-logo {
    width: 170px;
    height: 110px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
    transition: 0.35s ease;
    flex-shrink: 0;
}

    /* IMAGE */

    .security-logo img {
        max-width: 75%;
        max-height: 60px;
        object-fit: contain;
    }

    /* HOVER */

    .security-logo:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(33,85,255,0.12);
        border-color: #dbe5ff;
    }
/* =========================
   COMPANY SHOWCASE
========================= */

.company-showcase {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

/* LEFT WRAPPER */

.showcase-wrapper {
    position: relative;
    min-height: 520px;
}

/* CARDS */

.showcase-card {
    position: absolute;
    width: 220px;
    height: 190px;
    background: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
}

    /* IMAGE */

    .showcase-card img {
        width: 70%;
        object-fit: contain;
    }

    /* BLUE CORNERS */

    .showcase-card::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border: 10px solid #2155ff;
        border-radius: 22px;
        z-index: -1;
    }

/* POSITIONS */

.card-1 {
    top: 0;
    left: 20px;
}

    .card-1::before {
        top: -14px;
        left: -14px;
    }

.card-2 {
    top: 10px;
    right: 20px;
}

    .card-2::before {
        bottom: -14px;
        right: -14px;
    }

.card-3 {
    bottom: 20px;
    left: 30px;
}

    .card-3::before {
        bottom: -14px;
        left: -14px;
    }

.card-4 {
    bottom: 0;
    right: 20px;
}

    .card-4::before {
        top: -14px;
        right: -14px;
    }

/* RATING BADGE */

.rating-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 170px;
    height: 170px;
    background: linear-gradient( 135deg, #2155ff, #4f7cff );
    clip-path: polygon( 50% 0%, 61% 10%, 75% 4%, 82% 18%, 96% 25%, 90% 39%, 100% 50%, 90% 61%, 96% 75%, 82% 82%, 75% 96%, 61% 90%, 50% 100%, 39% 90%, 25% 96%, 18% 82%, 4% 75%, 10% 61%, 0% 50%, 10% 39%, 4% 25%, 18% 18%, 25% 4%, 39% 10% );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* INNER */

.rating-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #2155ff;
    border: 6px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

    /* TEXT */

    .rating-inner h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 0;
    }

    .rating-inner span {
        font-size: 20px;
    }

/* RIGHT SIDE */

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 40px;
    background: #eef3ff;
    color: #2155ff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* TITLE */

.showcase-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
    color: #111;
    margin-bottom: 28px;
}

    .showcase-title span {
        background: linear-gradient(90deg, #00C2FF, #5B3DF5, #FF7A00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align:justify;
    }

/* DESC */

.showcase-desc {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
    text-align:justify;
}

/* BUTTON */

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 55px;
    padding: 0 30px;
    border-radius: 16px;
    background: linear-gradient( 135deg, #5b3df5, #00c2ff );
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.35s ease;
}

    /* HOVER */

    .showcase-btn:hover {
        transform: translateY(-4px);
        color: #fff;
        box-shadow: 0 20px 40px rgba(91,61,245,0.25);
    }

/* MOBILE */

@media(max-width:991px) {

    .company-showcase {
        padding: 80px 0;
    }

    .showcase-wrapper {
        min-height: 650px;
        margin-bottom: 50px;
    }

    .showcase-title {
        font-size: 38px;
    }

    .showcase-desc {
        font-size: 17px;
    }
}

@media(max-width:576px) {

    .showcase-card {
        width: 150px;
        height: 140px;
    }

    .rating-badge {
        width: 120px;
        height: 120px;
    }

    .rating-inner {
        width: 85px;
        height: 85px;
    }

        .rating-inner h2 {
            font-size: 28px;
        }

        .rating-inner span {
            font-size: 14px;
        }

    .showcase-title {
        font-size: 30px;
    }
}

/* =========================
   SOFTWARE SERVICES
========================= */

.software-services {
    padding: 120px 0;
    background: #f7f9ff;
}

/* TOP DESC */

.services-top-desc {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-top: 20px;
}

/* TIMELINE */

.services-timeline {
    position: relative;
}

/*---------------------Services ITEM--------------------------- */

.timeline-item {
    display: grid;
    grid-template-columns: 130px 90px 1fr;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

/* ICON */

.timeline-icon {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    margin: auto;
}

    .timeline-icon i {
        font-size: 55px;
        color: #ff7a00;
    }

/* CENTER LINE */

.timeline-line {
    position: relative;
    height: 100%;
}

    /* VERTICAL LINE */

    .timeline-line::before {
        content: "";
        position: absolute;
        top: -40px;
        bottom: -40px;
        left: 50%;
        width: 2px;
        background: #e2e8ff;
        transform: translateX(-50%);
    }

    /* NUMBER */

    .timeline-line span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient( 135deg, #5b3df5, #00c2ff );
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 30px rgba(91,61,245,0.25);
    }

/* CONTENT */

.timeline-content {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

    /* HOVER */

    .timeline-content:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 55px rgba(91,61,245,0.10);
    }

    /* TITLE */

    .timeline-content h3 {
        font-size: 22px;
        font-weight: 600;
        color: #111;
        margin-bottom: 18px;
    }

    /* DESC */

    .timeline-content p {
        font-size: 17px;
        line-height: 1.9;
        color: #666;
        margin: 0;
    }

/* MOBILE */

@media(max-width:991px) {

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-content {
        padding: 28px;
    }

        .timeline-content h3 {
            font-size: 24px;
        }
}

@media(max-width:576px) {

    .software-services {
        padding: 80px 0;
    }

    .timeline-icon {
        width: 90px;
        height: 90px;
    }

        .timeline-icon i {
            font-size: 40px;
        }

    .timeline-content h3 {
        font-size: 22px;
    }

    .timeline-content p {
        font-size: 15px;
    }
}

/* =========================
   CASE STUDY SECTION
========================= */

.case-study-section {
    padding: 100px 0;
    background: #f7f9ff;
}

/* CARD */

.case-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    height: 100%;
}

    /* HOVER */

    .case-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(91,61,245,0.10);
    }

    /* REMOVE EXTRA SPACE */

    .case-card .row {
        height: 100%;
    }

    /* IMAGE COLUMN */

    .case-card .col-md-5 {
        padding: 0;
    }

/* IMAGE */

.case-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* BODY */

.case-card .card-body {
    padding: 30px;
}

/* TAG */

.case-tag {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    background: #eef1ff;
    color: #5b3df5;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* TITLE */

.case-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #111;
}

/* DESC */

.case-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
    text-align:justify;
}
.case-top-desc {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-top: 18px;
}
.case-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 55px;
    padding: 0 30px;
    border-radius: 16px;
    background: linear-gradient( 135deg, #5b3df5, #00c2ff );
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.35s ease;
    box-shadow: 0 15px 40px rgba(91,61,245,0.18);
}
    /* HOVER */

    .case-btn:hover {
        transform: translateY(-4px);
        color: #fff;
    }
/* BUTTON */

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid #d8dfff;
    color: #5b3df5;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

    /* HOVER */

    .case-link:hover {
        background: linear-gradient( 135deg, #5b3df5, #00c2ff );
        color: #fff;
        border-color: transparent;
    }

/* MOBILE */

@media(max-width:768px) {

    .case-img {
        height: 250px;
    }

    .case-title {
        font-size: 22px;
    }
}


/* =========================
   DEVELOPMENT APPROACH
========================= */

.development-approach-section {
    padding: 110px 0;
    background: #fff;
    position: relative;
}

/* TITLE */

.approach-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
    color: #111;
    margin-bottom: 20px;
}

    .approach-title span {
        background: linear-gradient(90deg, #00C2FF, #5B3DF5, #FF7A00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: justify;
    }

/* DESC */

.approach-desc {
    max-width: 900px;
    margin: auto;   
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* CARD */

.approach-card {
    position: relative;
    text-align: center;
    padding-top: 20px;
}

/* ICON */

.approach-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 28px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
    border-bottom: 5px solid #ff7a18;
    position: relative;
    z-index: 2;
}

    .approach-icon i {
        font-size: 30px;
        color: #ff7a18;
    }

/* DASHED LINE */

.approach-line {
    position: absolute;
    top: 80px;
    left: 70%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #ff7a18;
    z-index: 1;
}

.col-lg-3:last-child .approach-line {
    display: none;
}

/* CONTENT */

.approach-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 18px;
    color: #111;
}

.approach-card p {
    font-size: 19px;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 290px;
}

/* RESPONSIVE */

@@media(max-width:991px) {

    .approach-title {
        font-size: 38px;
    }

    .approach-desc {
        font-size: 17px;
    }

    .approach-card {
        margin-bottom: 40px;
    }

    .approach-line {
        display: none;
    }

    .approach-card h3 {
        font-size: 28px;
    }

    .approach-card p {
        font-size: 16px;
    }
}

/* =========================
   SOFTWARE PROCESS V2
========================= */

.software-process-v2 {
    padding: 110px 0;
    background: #eef2f8;
    overflow: hidden;
}

/* TITLE */

.process-v2-title {
    font-size: 30px;
    line-height: 1.5;
    font-weight: 600;
    color: #111;
}

.process-v2-desc {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* CARD */

.process-v2-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px 28px;
    height: 100%;
    min-height: 360px;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

/* ACTIVE CARD */

.active-card {
    background: linear-gradient(180deg,#ff8b2c,#ff6a00);
}

    .active-card h3,
    .active-card p {
        color: #fff !important;
    }

/* HOVER */

.process-v2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* CARD TITLE */

.process-v2-card h3 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    color: #111;
    margin-bottom: 22px;
}

/* CARD TEXT */

.process-v2-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* OPTIONAL TOP BORDER EFFECT */

.process-v2-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,#00C2FF,#5B3DF5,#FF7A00);
}

.active-card::before {
    background: rgba(255,255,255,0.3);
}

/* RESPONSIVE */

@@media(max-width:991px) {

    .software-process-v2 {
        padding: 80px 0;
    }

    .process-v2-title {
        font-size: 26px;
        line-height: 1.5;
    }

    .process-v2-desc {
        font-size: 16px;
        line-height: 1.8;
    }

    .process-v2-card {
        min-height: auto;
        padding: 28px 24px;
    }

        .process-v2-card h3 {
            font-size: 22px;
        }

        .process-v2-card p {
            font-size: 15px;
        }
}

/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section {
    padding: 60px 0;
    background: #f5f7fc;
}

/* TITLE */

.industries-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: #111;
    margin-bottom: 18px;
}

    .industries-title span {
        background: linear-gradient(90deg,#00C2FF,#5B3DF5,#FF7A00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* DESC */

.industries-desc {
    max-width: 850px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* WRAPPER */

.industries-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 60px;
}

/* BOX */

.industry-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 60px;
    padding: 8px 16px 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: 0.4s ease;
}

    .industry-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

/* ICON */

.industry-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff8b2c,#ff6a00);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .industry-icon i {
        font-size: 15px;
        color: #fff;
    }

/* TEXT */

.industry-box span {
    font-size: 17px;
    font-weight: 600;
    color: #1c274c;
    white-space: nowrap;
}

/* CONSULT */

.consult-box {
    padding-right: 30px;
}

/* RESPONSIVE */

@@media(max-width:991px) {

    .industries-section {
        padding: 80px 0;
    }

    .industries-title {
        font-size: 26px;
    }

    .industries-desc {
        font-size: 16px;
    }

    .industries-wrapper {
        gap: 16px;
    }

    .industry-box {
        width: 100%;
        justify-content: flex-start;
    }

        .industry-box span {
            font-size: 16px;
        }
}

/* =========================
   OUTSOURCE SECTION
========================= */

.outsource-section {
    padding: 50px 0;
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}

/* TITLE */

.outsource-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: #111;
    margin-bottom: 18px;
}

    .outsource-title span {
        background: linear-gradient(90deg,#00C2FF,#5B3DF5,#FF7A00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* DESC */

.outsource-desc {
    max-width: 850px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* ROW */

.outsource-row {
    position: relative;
    margin-top: 70px;
}

    /* DOT LINES */

    .outsource-row::before {
        content: "";
        position: absolute;
        top: 130px;
        left: 18%;
        width: 64%;
        height: 120px;
        border-top: 2px dashed #ff7a18;
        border-left: 2px dashed #ff7a18;
        border-right: 2px dashed #ff7a18;
        z-index: 0;
        opacity: 0.6;
    }

    .outsource-row::after {
        content: "";
        position: absolute;
        bottom: -40px;
        left: 28%;
        width: 52%;
        height: 120px;
        border-bottom: 2px dashed #ff7a18;
        border-left: 2px dashed #ff7a18;
        border-right: 2px dashed #ff7a18;
        z-index: 0;
        opacity: 0.6;
    }

/* CARD */

.outsource-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 38px 30px 80px;
    min-height: 360px;
    height: 100%;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    z-index: 2;
}

    /* HOVER */

    .outsource-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    }

/* ICON */

.outsource-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255,122,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

    .outsource-icon i {
        font-size: 32px;
        color: #ff7a18;
    }

/* TITLE */

.outsource-card h3 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    color: #ff7a18;
    margin-bottom: 18px;
}

/* TEXT */

.outsource-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

/* NUMBER */

.outsource-number {
    position: absolute;
    right: 28px;
    bottom: 18px;
    font-size: 54px;
    font-weight: 700;
    color: rgba(255,122,0,0.15);
    line-height: 1;
}

/* RESPONSIVE */

@@media(max-width:991px) {

    .outsource-section {
        padding: 80px 0;
    }

    .outsource-title {
        font-size: 26px;
    }

    .outsource-desc {
        font-size: 16px;
    }

    .outsource-card {
        min-height: auto;
        padding: 30px 24px 70px;
    }

        .outsource-card h3 {
            font-size: 22px;
        }

        .outsource-card p {
            font-size: 15px;
        }

    .outsource-number {
        font-size: 42px;
    }

    .outsource-row::before,
    .outsource-row::after {
        display: none;
    }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
    padding: 50px 0;
    background: #f7f9fc;
    overflow: hidden;
}

/* TOP */

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

/* TAG */

.testimonial-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666;
    display: inline-block;
    margin-bottom: 16px;
}

/* TITLE */

.testimonial-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: #111;
}

    .testimonial-title span {
        background: linear-gradient(90deg,#00C2FF,#5B3DF5,#FF7A00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* NAVIGATION */

.testimonial-nav {
    display: flex;
    gap: 14px;
}

.testimonial-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg,#ff8b2c,#ff6a00);
    color: #fff;
    font-size: 20px;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .testimonial-btn:hover {
        transform: translateY(-5px);
    }

/* CARD */

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 38px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
    }

/* TEXT */

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: normal;
}

/* USER */

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* IMAGE */

.testimonial-user-img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

    .testimonial-user-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* NAME */

.testimonial-user h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #2563eb;
}

/* DESIGNATION */

.testimonial-user span {
    font-size: 17px;
    color: #666;
}

/* RESPONSIVE */

@@media(max-width:991px) {

    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-title {
        font-size: 26px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.9;
    }

    .testimonial-user h4 {
        font-size: 19px;
    }

    .testimonial-user span {
        font-size: 15px;
    }

    .testimonial-btn {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
    padding: 50px 0;
    background: #eef2f8;
}

/* TITLE */

.faq-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: #111;
}

    .faq-title span {
        background: linear-gradient(90deg,#00C2FF,#5B3DF5,#FF7A00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* ACCORDION */

.custom-faq .accordion-item {
    border: none;
    border-radius: 6px !important;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

/* BUTTON */

.custom-faq .accordion-button {
    background: #fff;
    border: none;
    box-shadow: none !important;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    line-height: 1.6;
}

    /* ACTIVE */

    .custom-faq .accordion-button:not(.collapsed) {
        background: #fff;
        color: #ff7a18;
    }

    /* ICON */

    .custom-faq .accordion-button::after {
        background-size: 20px;
        width: 20px;
        height: 20px;
    }

/* BODY */

.custom-faq .accordion-body {
    padding: 0 30px 28px;
    font-size: 17px;
    line-height: 1.9;
}

/* REMOVE BLUE */

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

/* RESPONSIVE */

@@media(max-width:991px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 26px;
    }

    .custom-faq .accordion-button {
        font-size: 18px;
        padding: 22px;
    }

    .custom-faq .accordion-body {
        padding: 0 22px 24px;
        font-size: 15px;
    }
}


/* =========================
   CLEAN CONTACT SECTION
========================= */

.clean-contact-section {
    background: #f5f7fc;
    position: relative;
    overflow: hidden;
}

/* TOP BACKGROUND */

.contact-top-bg {
    padding: 120px 0 180px;
    background: linear-gradient(135deg, rgba(255,122,0,0.85), rgba(37,99,235,0.92));
}

/* TITLE */

.clean-contact-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

    .clean-contact-title span {
        color: #fff;
    }

/* DESC */

.clean-contact-desc {
    font-size: 22px;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
    max-width: 850px;
    margin: auto;
}

/* WRAPPER */

.clean-contact-wrapper {
    margin-top: -110px;
    position: relative;
    z-index: 5;
}

/* FORM BOX */

.clean-contact-form {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

    /* FORM TITLE */

    .clean-contact-form h3 {
        font-size: 35px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #111;
    }

    /* LABEL */

    .clean-contact-form label {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 12px;
        display: block;
        color: #222;
    }

/* INPUT */

.clean-input {
    height: 58px;
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 12px 18px;
    font-size: 16px;
    box-shadow: none !important;
}

    .clean-input:focus {
        border-color: #2563eb;
    }

textarea.clean-input {
    height: auto;
}

/* PHONE */

.clean-phone-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 14px;
    overflow: hidden;
    height: 58px;
}

    .clean-phone-box span {
        padding: 0 18px;
        border-right: 1px solid #ddd;
        height: 100%;
        display: flex;
        align-items: center;
        font-size: 16px;
        background: #fff;
    }

    .clean-phone-box input {
        border: none;
        outline: none;
        width: 100%;
        height: 100%;
        padding: 0 18px;
    }

/* CHECKBOX */

.clean-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

    .clean-consent label {
        margin: 0;
        font-size: 15px;
        line-height: 1.8;
        color: #666;
        font-weight: 400;
    }

/* BUTTON */

.clean-contact-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg,#2563eb,#0ea5ff);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    transition: 0.4s ease;
}

    .clean-contact-btn:hover {
        transform: translateY(-4px);
    }

/* RESPONSIVE */

@@media(max-width:991px) {

    .contact-top-bg {
        padding: 90px 0 160px;
    }

    .clean-contact-title {
        font-size: 40px;
    }

    .clean-contact-desc {
        font-size: 17px;
    }

    .clean-contact-wrapper {
        margin-top: -90px;
    }

    .clean-contact-form {
        padding: 35px 25px;
    }

        .clean-contact-form h3 {
            font-size: 30px;
        }
}