.text-blue {
    color: var(--primary-color);
}

.section-pd {
    padding: 70px 0;
}

.card {
    height: calc(100% - 16px) !important;
    transition: all 0.3s ease;
    border: 1px solid #ebebeb !important;
}

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

.card-icon.step {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    background: var(--primary-color);
    line-height: normal;
}

p:last-child {
    margin: 0;
}

/* ==================== BANNER SECTION CSS STARTS HERE ==================== */

.banner_area {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #F8F9FF;
    padding: 60px 0;
}

.tech_features_wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tech_feature_item {
    display: flex;
    align-items: center;
    padding-right: 1rem;
    border-right: 1px solid rgba(0, 131, 236, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    @media (max-width: 991px) {
        border: 0 !important;
    }

}

.tech_feature_item:last-child {
    border-right: none;
    padding-right: 0;
}

.tech_icon_box {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color, #0083ec);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-icon {
    color: #fff;
}

.tech-icon svg {
    width: 22px;
    height: 22px;
}

.tech_feature_content {
    margin-left: 12px;
}

.tech_feature_title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.tech_feature_subtitle {
    font-size: 14px;
    color: #64748b;
    text-transform: capitalize;
    display: block;
}

/* ==================== BANNER SECTION CSS ENDS HERE ==================== */



/* =============== TRUSTED LOGO SECTION =============== */

.trusted_area {
    background-color: #ffffff;
}

.trusted_area .inner-trusted-box {
    background-color: #f3f6ff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
}

.trusted_area .slider-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-top {
    animation: scroll-left 25s linear infinite;
}

.marquee-bottom {
    animation: scroll-right 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.logo-list {
    display: flex;
    flex-shrink: 0;
    gap: 16px;
    padding-right: 16px;
}

.trusted_area .logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 20px;
    height: 80px;
    width: 180px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.trusted_area .logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

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

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 576px) {
    .marquee-container {
        gap: 12px;
    }

    .logo-list {
        gap: 12px;
        padding-right: 12px;
    }

    .trusted_area .logo-card {
        width: 130px;
        height: 70px;
        padding: 8px 15px;
    }
}

/* =============== TRUSTED LOGO SECTION =============== */

/* =============== SERVICE AREA SECTION =============== */

.service_area {
    background: #f1f5ff;
}

/* =============== SERVICE AREA SECTION =============== */



/* =============== CTA SECTION CSS STARTS=============== */

.web_cta_area {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.web_cta_box {
    background: linear-gradient(135deg, #0083ec 0%, #005bb5 100%);
    border-radius: 20px;
    padding: 3rem 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

@media (max-width: 991.98px) {
    .web_cta_box {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .web_cta_box {
        padding: 1rem;
    }
}

/* =============== CTA SECTION CSS ENDS =============== */


/* =============== GROWTH BENEFITS SECTION =============== */
.growth_benefits_area {
    background-color: #fbfcfe;
}

.benefit_card {
    height: 100% !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.benefit_card:hover {
    transform: translateY(-6px);
}

.benefit_icon_box {
    width: 58px;
    height: 58px;
    background-color: #f8fafc;
    border: 1.5px solid rgba(0, 131, 236, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0083ec;
    transition: all 0.3s ease;
}

.benefit_card:hover .benefit_icon_box {
    background-color: #0083ec;
    color: #ffffff;
    border-color: #0083ec;
    transform: scale(1.05);
}

.benefit_info h4 {
    color: #0f172a;
    line-height: 1.3;
}

.benefit_info p {
    color: #64748b;
    line-height: 1.6;
}

.benefit_divider {
    border: 0;
    border-top: 1px solid #e2e8f0;
    opacity: 0.8;
}

.benefit_features_list {
    margin-bottom: 1rem;
}

.benefit_feature_item {
    color: #334155;
}

.benefit_feature_item i {
    color: #0083ec;
    font-size: 16px;
}

.explore_link {
    color: #0083ec;
    font-size: 18px;
    transition: color 0.3s ease;
}

.explore_link:hover {
    color: #005bb5;
}

.transition-arrow {
    transition: transform 0.3s ease;
}

.explore_link:hover .transition-arrow {
    transform: translateX(4px);
}

/* Responsiveness */
@media (max-width: 767.98px) {
    .benefit_card {
        padding: 1.8rem;
    }

    .benefit_info h4 {
        font-size: 18px;
    }

    .benefit_icon_box {
        width: 50px;
        height: 50px;
    }

    .benefit_icon_box svg {
        width: 24px;
        height: 24px;
    }
}


/* ==================== AI CHOOSE CTA SECTION STARTS HERE ==================== */
.ai_choose_cta_area {
    background-color: #fff;
}

.ai_choose_cta_area .ai_choose_banner {
    background: linear-gradient(135deg, #0050cc 0%, var(--primary-color, #0083ec) 100%);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.ai_choose_cta_area .ai_choose_banner::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.ai_choose_cta_area .ai_choose_banner::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.ai_choose_cta_area .ai_choose_img_wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
}

.ai_choose_cta_area .ai_choose_img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ai_choose_cta_area .ai_choose_content {
    color: #ffffff;
    position: relative;
    z-index: 2;
}


.ai_choose_cta_area .ai_choose_title {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ai_choose_cta_area .btn_outline:hover {
    border: 1px solid #fff;
    color: #fff !important;
    background: transparent;
}

@media (max-width: 991px) {
    .ai_choose_cta_area .ai_choose_banner {
        padding: 40px;
    }

    .ai_choose_cta_area .ai_choose_title {
        margin-bottom: 20px;
        text-align: center;
    }

    .ai_choose_content {
        text-align: center;
    }

    .ai_choose_cta_area .ai_choose_subtitle {
        text-align: center;
    }

}

@media (max-width: 575px) {
    .ai_choose_cta_area .ai_choose_banner {
        padding: 30px 20px;
    }
}

/* ==================== AI CHOOSE CTA SECTION ENDS HERE ==================== */

/* ==================== TX PORTFOLIO SECTION CSS STARTS HERE ==================== */
.tx-portfolio-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    overflow: clip;
    padding: 70px 0 0;
}

.tx-portfolio-container {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 0px;
    overflow: hidden;
    padding: 0;
    height: 520px;
    width: 100%;
}

.tx-portfolio-sidebar-col {
    background-color: #2b76f9;
    position: relative;
    z-index: 15;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
}

.tx-portfolio-sidebar {
    padding: 24px 0 24px 24px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
}

.tx-portfolio-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 0;
    overflow: visible;
}

.tx-portfolio-tab {
    position: relative;
    padding: 12px 18px;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    overflow: visible;
}

.tx-portfolio-tab:hover {
    color: #ffffff;
}

.tx-portfolio-tab.active {
    color: #ffffff;
    font-weight: 500;
    border: 1px solid #ffffff;
    border-right: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.35) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tx-portfolio-tab.active::after {
    content: "";
    position: absolute;
    left: 100%;
    top: -1.5px;
    bottom: -1.5px;
    width: 180px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1.5px solid;
    border-bottom: 1.5px solid;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%) 1;
    pointer-events: none;
    z-index: 20;
}

.tx-tab-text {
    position: relative;
    z-index: 2;
}

.tx-active-glow {
    display: none !important;
}

.tx-portfolio-content-col {
    background-color: #fff;
    position: relative;
    z-index: 5;
}

.tx-portfolio-display-area {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.tx-portfolio-cards-container {
    width: 42%;
    height: 100%;
    position: relative;
    z-index: 20;
    padding-left: 40px;
    display: flex;
    align-items: center;
}

.tx-portfolio-details-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    width: calc(135% - 40px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tx-portfolio-details-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.tx-portfolio-card-inner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.tx-portfolio-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.25;
    white-space: pre-line;
}

.tx-portfolio-desc {
    font-size: 15px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.6;
}

.tx-portfolio-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tx-portfolio-btns a {
    display: inline-flex;
    align-items: center;
}

.tx-portfolio-btns img {
    height: 38px;
    width: auto;
    display: block;
}

.tx-portfolio-btns .btn_blu {
    height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.tx-portfolio-images-container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

.tx-portfolio-img-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tx-portfolio-img-item.active {
    opacity: 1;
    visibility: visible;
}

.tx-portfolio-img-item img {
    max-width: 100%;
    object-fit: contain;
    height: 100%;
    margin-left: auto;

    @media (min-width: 767px) and (max-width: 991px) {
        margin-left: 0 !important;
    }
}

/* Responsive Styling */
@media (max-width: 991px) {
    .tx-portfolio-section {
        height: auto !important;
        padding-bottom: 0;
    }

    .tx-portfolio-sticky-wrapper {
        position: relative !important;
        height: auto !important;
        top: auto !important;
    }

    .tx-portfolio-container {
        flex-direction: column;
        height: auto !important;
    }

    .tx-portfolio-sidebar {
        padding: 30px 20px;
        height: auto;
    }

    .tx-portfolio-tabs {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        gap: 10px;
        padding-right: 0;
        padding-bottom: 0px;
        scrollbar-width: none;
    }

    .tx-portfolio-tabs::-webkit-scrollbar {
        display: none;
    }

    .tx-portfolio-tab.active {
        border: 1px solid #ffffff !important;
    }

    .tx-portfolio-tab {
        display: inline-block;
        flex-shrink: 0;
        padding: 7px 18px;
        border-radius: 4px;
    }

    .tx-portfolio-tab.active::after {
        display: none !important;
    }

    .tx-portfolio-display-area {
        flex-direction: column-reverse;
        height: auto;
        min-height: auto;
        padding: 40px 20px;
        gap: 30px;
    }

    .tx-portfolio-cards-container {
        width: 100%;
        padding: 0;
    }

    .tx-portfolio-details-card {
        position: relative;
        top: auto;
        transform: none;
        width: 100%;
        display: none;
    }

    .tx-portfolio-details-card.active {
        display: block;
        transform: none;
    }

    .tx-portfolio-card-inner {
        padding: 30px 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .tx-portfolio-title {
        font-size: 24px;
    }

    .tx-portfolio-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .tx-portfolio-btns {
        justify-content: center;
        /* Center the buttons on mobile viewports */
    }

    .tx-portfolio-images-container {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 575px) {
    .tx-portfolio-sidebar {
        padding: 24px 15px;
    }

    .tx-portfolio-display-area {
        padding: 30px 0 0;
    }

    .tx-portfolio-images-container {
        height: 220px;
    }

    .tx-portfolio-card-inner {
        padding: 24px 16px;
    }

    .tx-portfolio-title {
        font-size: 20px;
    }

    .tx-portfolio-btns .btn_blu {
        width: 100%;
    }

    .tx-portfolio-tab {
        font-size: 13px;
    }
}

/* ==================== TX PORTFOLIO SECTION CSS ENDS HERE ==================== */


/* ==================== INDUSTRIES SECTION CSS ENDS HERE ==================== */

.ind-we-serve {
    background: #edf3ff;
    position: relative;
}

.indus-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1.4 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    z-index: 10;
}

.indus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.indus-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.indus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.indus-card:hover .indus-img img {
    transform: scale(1.08);
}

.indus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    transition: opacity 0.3s ease;
}

.indus-card:hover .indus-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.indus-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem;
    box-sizing: border-box;
    text-align: center;
}

.indus-title {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* ==================== INDUSTRIES SECTION CSS ENDS HERE ==================== */


/* ==================== WHY CHOOSE US SECTION CSS STARTS HERE ==================== */
.why_choose_area {
    background: linear-gradient(135deg, var(--primary-color, #0083ec) 0%, #005cb3 100%);
    color: #ffffff;
}

.why_choose_img {
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 550px;

    @media (max-width: 1440px) {
        height: 620px;
    }
}

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

.why_choose_content {
    padding-left: 20px;
}

.why_choose_title {
    font-weight: 700;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.3;
}

.why_choose_icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .why_choose_content {
        padding-left: 0;
        margin-top: 2.5rem;
        padding-top: 0 !important;
    }

    .why_choose_title {
        text-align: center;
        font-size: 26px;
    }

    .why_choose_desc {
        text-align: center;
    }

    .why_choose_list li {
        justify-content: center;
        text-align: center;
    }

    .why_choose_btn_wrap {
        text-align: center;
    }

    .why_choose_img {
        max-height: 100%;
        height: auto;
    }

    .why_choose_icon {
        margin: 0 auto !important;
    }

    .why_choose_info {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .why_choose_title {
        font-size: 22px;
    }

    .why_choose_icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 1.2rem;
    }
}



/* ====================== TESTIMONIALS SECTION CSS ======================= */

.testimonials_area {
    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-marquee-row {
    display: block;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-top: 2px;
    padding-bottom: 2px;
}

.testimonial-marquee-row .marquee-track {
    display: flex;
    width: max-content;
    flex-shrink: 0;
}

.testimonial-marquee-row.marquee-right .marquee-track {
    animation: marquee-left-scroll 35s linear infinite;
}

.testimonial-slider-container:hover .marquee-track {
    animation-play-state: paused !important;
}

.marquee-group {
    display: flex;
    gap: 24px;
    padding-right: 24px;
    flex-shrink: 0;
}

@keyframes marquee-left-scroll {
    0% {
        transform: translateX(0);
    }

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


.testimonial-card {
    width: 420px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}


.testimonial-card .quote-icon-svg {
    color: var(--primary-color);
    margin-bottom: 0;
    opacity: 0.85;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .quote-icon-svg {
    transform: scale(1.1);
}

.testimonial-card .star-rating {
    display: flex;
    gap: 4px;
}

.testimonial-card .star-rating i {
    color: #ecc80d;
    font-size: 14px;
}

.testimonial-card .star-rating i.empty-star {
    color: #e2e8f0;
}

.testimonial-card .testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-card .testimonial-user {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.testimonial-card .user-info {
    margin-left: 0;
}

.testimonial-card .user-name {
    font-size: 16px;
    font-weight: 600;
    color: #071c4d;
    margin-bottom: 2px;
    line-height: 1.2;
}

.testimonial-card .user-title {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.2;
}

/* ====================== TESTIMONIALS SECTION CSS ENDS ======================= */


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

.faq_area {
    width: 100%;
    height: auto;
    background-color: #f3f6ff;
    padding: 60px 0;
}


.faq_area .faq-info .support-prompt {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.faq_area .faq-info .support-prompt .support-icon {
    width: 20px;
    height: 20px;
}


.faq_area .sticky-top {
    top: 80px !important;

    @media (max-width: 991px) {
        position: static !important;
    }
}

.faq_content_left {
    position: relative;
}

.faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.faq_area .accordion {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq_area .accordion-item {
    border: 1px solid #e2e8f0 !important;
    background: #ffffff;
    border-radius: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq_area .accordion-item:last-child {
    border-bottom: 1px solid #e2e8f0;
}

.faq_area .accordion-item:hover {
    border-color: rgba(0, 131, 236, 0.15);
}

.faq_area .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(0, 131, 236, 0.25);
}

.faq_area .accordion-button {
    font-size: 1rem;
    font-weight: 600;
    color: #071c4d;
    padding: 1rem;
    background: transparent;
    box-shadow: none;
    border-radius: 5px !important;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    align-items: baseline;
}

.faq_area .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: transparent;
    box-shadow: none;
}

.faq_area .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq_area .accordion-button::after {
    background-image: none;
    content: "\f107";
    font-family: "FontAwesome" !important;
    font-size: 16px;
    font-weight: 900;
    width: 36px;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #f1f5f9;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    transform: none;
    line-height: 0px;
}

.faq_area .accordion-button:not(.collapsed)::after {
    content: "\f107";
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(-180deg);
}

.faq_area .accordion-body {
    padding: 0 1rem 1rem;
    color: #4b5563;
    line-height: 1.8;
    font-size: 15px;
}

.faq_area .accordion-body p {
    color: #475569;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.faq_area .accordion-body ul {
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}

.faq_area .accordion-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    list-style: none;
}

.faq_area .accordion-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #475569;
    border-radius: 50%;
}

.faq_area .accordion-body ul li strong {
    color: #071c4d;
}

/* ====================== FAQ SECTION CSS ENDS ======================= */


/* ====================== CLOUD EXCELLENCE SECTION ======================= */

.cloud_excellence_area {
    background-color: #f4f7fc;
    padding: 80px 0;
}

.cloud_excellence_area .cloud-desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cloud_excellence_area .cloud-item-card {
    background-color: #fff;
    border-radius: 5px;
    padding: 1rem;
    display: flex;
    align-items: start;
    justify-content: center;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border: 1px solid #ebebeb;
    gap: 1rem;
}

.cloud_excellence_area .cloud-item-card p {
    color: #6b7280;
}

.cloud_excellence_area .cloud-item-card p b {
    color: #010100;
}

.cloud_excellence_area .cloud-item-card .icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 5px;
    background-color: #f4f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .cloud_excellence_area {
        padding: 60px 0;
    }

    .cloud_excellence_area .cloud-text-box {
        text-align: center;
    }

    .cloud_excellence_area .cloud-desc {
        margin-bottom: 0;
    }

    .cloud_excellence_area .cloud-item-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cloud_excellence_area {
        padding: 50px 0;
    }

    .cloud_excellence_area .cloud-desc {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .ai-tools-top-icons {
        margin-bottom: 15px;
    }
}

/* ====================== CLOUD EXCELLENCE SECTION ======================= */

/* ====================== DIGITAL MARKETING PROCESS SECTION ======================= */
.dgtl_process_area {
    background: #f8faff;
}

.dgtl_process_content h2 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.dgtl_process_content p {
    color: #64748b;
    margin-bottom: 25px;
}

.dgtl_process_cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.process_card {
    background: #fff;
    border-radius: 5px;
    padding: 25px 15px;
    text-align: center;
    flex: 1;
    min-width: 140px;
    transition: all 0.3s ease;
    border: 1px solid #ebebeb;
}

.process_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.process_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0083ec;
    font-size: 24px;
}

.process_card h6 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

/* ====================== FLEXIBLE ENGAGEMENT MODELS ======================= */
.dgtl_engagement_area {
    background: #fff;
}

.dgtl_engagement_content p {
    margin-bottom: 25px;
}

.engagement_card {
    background: #fff;
    border-radius: 5px;
    padding: 30px 20px;
    border: 1px solid #ebebeb;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.engagement_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.engagement_icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0083ec;
    font-size: 22px;
    margin-bottom: 20px;
}

.engagement_text h6 {
    margin-bottom: 10px;
}

.engagement_text p {
    margin: 0;
}

/* ====================== READY BANNER ======================= */

.dgtl_ready_banner_box {
    background: linear-gradient(135deg, #0056d6 0%, #0083ec 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.dgtl_ready_banner_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
}

.dgtl_ready_content {
    max-width: 600px;
}

.dgtl_ready_content .btn_white {
    background: #fff;
    color: #0083ec;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.dgtl_ready_content .btn_white:hover {
    background: #f8f9fa;
    color: #0056d6;
}

.dgtl_ready_img {
    width: 250px;
}

.dgtl_ready_img img {
    width: 100%;
}


@media (max-width: 991px) {

    .dgtl_process_content,
    .dgtl_engagement_content {
        margin-bottom: 30px;
        text-align: center;
    }

    .dgtl_ready_banner_inner {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .dgtl_ready_content {
        margin-bottom: 30px;
    }

    .dgtl_ready_img {
        width: 150px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .process_card {
        min-width: calc(50% - 15px);
    }
}