@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Light.ttf);
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Regular.ttf);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Medium.ttf);
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-SemiBold.ttf);
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Bold.ttf);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-ExtraBold.ttf);
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
    font-family: "Poppins", "sans-serif";
    background: #fff;
    margin: 0;
    padding: 0;
    position: relative;
    cursor: default;
}

/* section * {
    font-family: "Poppins" !important;
} */

.service_page_banner {
    min-height: 750px;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    position: relative;
}
@media screen and (max-width: 1024px) {
    .service_page_banner {
        gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .service_page_banner {
        min-height: 450px;
        padding-top: 50px;
    }
}
@media screen and (max-width: 575px) {
    .service_page_banner {
        gap: 10px;
    }
}
.service_page_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("https://www.technource.com/wp-content/uploads/2025/09/banner-side-image.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}
@media (max-width: 1024px) {
    .service_page_banner::before {
        background-image:
            linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%),
            url("https://www.technource.com/wp-content/uploads/2025/09/banner-side-image.png");
    }
}
.service_page_banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-image:
        linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%),
        url("https://www.technource.com/wp-content/uploads/2025/09/banner-side-image.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transform: scaleX(-1);
}
@media (max-width: 1024px) {
    .service_page_banner::after {
        background-image:
            linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%),
            url("https://www.technource.com/wp-content/uploads/2025/09/banner-side-image.png");
    }
}
.service_page_banner .service_page_main_title {
  color: #4d77d2;
  font-size: 90px;
  text-align: center;
  font-weight: 600;
  z-index: 2;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1600px) {
    .service_page_banner .service_page_main_title {
        font-size: 74px;
    }
}
@media screen and (max-width: 1280px) {
    .service_page_banner .service_page_main_title {
        font-size: 60px;
    }
}
@media screen and (max-width: 1024px) {
    .service_page_banner .service_page_main_title {
        font-size: 50px;
    }
}
@media screen and (max-width: 767px) {
    .service_page_banner .service_page_main_title {
        font-size: 42px;
    }
}
@media screen and (max-width: 575px) {
    .service_page_banner .service_page_main_title {
        font-size: 34px;
    }
}
.service_page_banner .service_page_sub_title {
  color: #333333;
  font-family: "Poppins" !important;
  text-align: center;
  font-weight: 600;
  z-index: 2;
  max-width: 90%;
}
.service_page_banner .service_page_description {
  color: #6e6e6e;
  text-align: center;
  max-width: 940px;
  z-index: 2;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1024px) {
    .service_page_banner .service_page_description {
        max-width: 90%;
    }
}
.service_page_banner .service_page_banner_btn {
  min-height: 62px;
  width: fit-content;
  padding: 10px 25px;
  color: white;
  font-weight: 500;
  background-color: #4d77d2;
  border: none;
  border-radius: 6px;
  box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.2);
  z-index: 2;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  font-family: "Poppins" !important;
}
.service_page_banner .service_page_banner_btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
}
.service_page_banner .service_page_banner_btn:hover {
    transform: scale(1.02);
    transform: all 0.5s ease;
}
.service_page_banner .service_page_banner_btn:hover::after {
    left: 200%;
    transition: left 1s ease;
}
@media screen and (max-width: 767px) {
    .service_page_banner .service_page_banner_btn {
        min-height: 40px;
        padding: 10px 15px;
        font-size: 12px;
    }
}

.project_boxes {
    overflow: hidden;
    width: 100%;
    background: #fff;
}
.project_boxes .project_track {
    display: flex;
    will-change: transform;
}
.project_boxes .project_box {
    width: 300px;
    height: 120px;
    flex-shrink: 0;
    transition: filter 0.3s ease;
    background-image: url("https://www.technource.com/wp-content/uploads/2025/09/project-sprite-image.png");
    background-size: 1800px auto;
    background-repeat: no-repeat;
}
.project_boxes .project_box:hover {
    filter: grayscale(0%);
}
.project_boxes .project_box.hommati {
    background-position: -20px 0;
}
.project_boxes .project_box.telepath {
    background-position: -300px 0;
}
.project_boxes .project_box.clean_medic {
    background-position: -600px 0;
}
.project_boxes .project_box.mvv {
    background-position: -900px 0;
}
.project_boxes .project_box.equipt {
    background-position: -1200px 0;
}
.project_boxes .project_box.sos {
    background-position: -1500px 0;
}

@media screen and (max-width: 768px) {
    .project_boxes .project_box {
        width: 175px;
        height: 70px;
        background-size: 1050px auto;
    }
    .project_boxes .project_box.hommati {
        background-position: -12px 0;
    }
    .project_boxes .project_box.telepath {
        background-position: -175px 0;
    }
    .project_boxes .project_box.clean_medic {
        background-position: -350px 0;
    }
    .project_boxes .project_box.mvv {
        background-position: -525px 0;
    }
    .project_boxes .project_box.equipt {
        background-position: -700px 0;
    }
    .project_boxes .project_box.sos {
        background-position: -875px 0;
    }
}
.service_overview {
    background: rgba(178, 202, 255, 0.25);
    border-radius: 15px;
    display: flex;
    gap: 50px;
    padding: 50px !important;
}
@media screen and (max-width: 1024px) {
    .service_overview {
        flex-direction: column;
    }
}
@media screen and (max-width: 767px) {
    .service_overview {
        padding: 20px;
        gap: 20px;
        border-radius: 0;
    }
}
.service_overview .content_section_left {
    width: 65%;
    flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
    .service_overview .content_section_left {
        width: 100%;
    }
}
.service_overview .image_section_left {
    flex-grow: 1;
    min-height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 6.75px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 1024px) {
    .service_overview .image_section_left {
        height: 320px;
    }
}
@media screen and (max-width: 767px) {
    .service_overview .image_section_left {
        height: 220px;
    }
}
.service_overview .image_section_left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.service_overview .image_section_left img:hover {
  scale: 1.05;
}

.company_services_section {
    cursor: default;
}
.company_services_section .company_services_description {
    width: 70%;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    .company_services_section .company_services_description {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .company_services_section .company_services_description {
        text-align: left;
        margin-top: 10px !important;
    }
}
.company_services_section .vertical_scroll_section {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    position: relative;
}
@media screen and (max-width: 1024px) {
    .company_services_section .vertical_scroll_section {
        flex-direction: column;
    }
}
.company_services_section .vertical_scroll_section .left_img_section {
    height: 525px;
    border-radius: 15px;
    overflow: hidden;
    width: 50%;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
}
@media screen and (max-width: 1024px) {
    .company_services_section .vertical_scroll_section .left_img_section {
        position: unset;
        width: 100%;
        height: 300px;
    }
}
@media screen and (max-width: 767px) {
    .company_services_section .vertical_scroll_section .left_img_section {
        position: unset;
        width: 100%;
        height: 300px;
    }
}
.company_services_section .vertical_scroll_section .left_img_section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.company_services_section .vertical_scroll_section .right_scroll_section {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
@media screen and (max-width: 767px) {
    .company_services_section .vertical_scroll_section .right_scroll_section {
        gap: 15px;
    }
}
.company_services_section .vertical_scroll_section .right_scroll_section .service_box {
    padding: 25px;
    border: 0.75px solid rgba(51, 51, 51, 0.2);
    border-radius: 35px;
    transition: all 0.3s ease;
}
.company_services_section .vertical_scroll_section .right_scroll_section .service_box:hover {
    background: rgba(178, 202, 255, 0.15);
    box-shadow: 1.5px 1.5px 3.75px rgba(0, 0, 0, 0.15);
    transform: translate(10px,-10px);
}
.company_services_section .vertical_scroll_section .right_scroll_section .service_box .individual_service_title {
  font-size: 18px;
  color: #333333;
  font-weight: 600;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 767px) {
    .company_services_section .vertical_scroll_section .right_scroll_section .service_box .individual_service_title {
        font-size: 16px;
    }
}
.company_services_section .vertical_scroll_section .right_scroll_section .service_box .arrow_icon {
    height: 15px;
    width: auto;
}
@media screen and (max-width: 767px) {
    .company_services_section .vertical_scroll_section .right_scroll_section .service_box .arrow_icon {
        height: 12px;
        margin-top: 2px;
    }
}
.company_services_section .vertical_scroll_section .right_scroll_section .service_box .individual_service_desc {
  font-size: 14px;
  color: #333;
  margin: 0;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 767px) {
    .company_services_section .vertical_scroll_section .right_scroll_section .service_box .individual_service_desc {
        font-size: 12px;
    }
}

.service_cta_banner {
    filter: drop-shadow(0px 7.5px 18px rgba(0, 0, 0, 0.25));
    display: flex;
    flex-direction: column;
}
.service_cta_banner .cta_text {
    background-color: #4d77d2;
    padding: 20px 42px;
    border-radius: 35px;
    width: fit-content;
    margin: auto;
}
@media screen and (max-width: 1024px) {
    .service_cta_banner .cta_text {
        border-radius: 30px;
    }
}
@media screen and (max-width: 767px) {
    .service_cta_banner .cta_text {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        padding: 20px;
        padding-bottom: 10px;
    }
}
.service_cta_banner .cta_text h3, .service_cta_banner .cta_text .cta_text_content  {
  color: white;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1024px) {
    .service_cta_banner .cta_text h3, .service_cta_banner .cta_text .cta_text_content {
        font-size: 20px;
    }
}
.service_cta_banner .cta_button {
  padding: 20px;
  padding-top: 10px;
  background-color: #4d77d2;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  width: fit-content;
  margin: auto;
  position: relative;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1024px) {
    .service_cta_banner .cta_button {
        padding: 12px;
        padding-top: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}
@media screen and (max-width: 767px) {
    .service_cta_banner .cta_button {
        width: 100%;
        padding: 20px;
        padding-top: 0;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
}
.service_cta_banner .cta_button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    background-image: url("https://www.technource.com/wp-content/uploads/2025/09/blue_banner_curve.png");
    background-size: 30px;
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
}
@media screen and (max-width: 767px) {
    .service_cta_banner .cta_button::before {
        display: none;
    }
}
.service_cta_banner .cta_button::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    background-image: url("https://www.technource.com/wp-content/uploads/2025/09/blue_banner_curve.png");
    background-size: 30px;
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
    transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
    .service_cta_banner .cta_button::after {
        display: none;
    }
}
.service_cta_banner .cta_button a {
  background-color: white;
  border-radius: 100px;
  color: #4d77d2 !important;
  font-family: "Poppins" !important;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: none;
  font-weight: 600;
  transition: transform 0.5s ease;
  text-decoration: none;
  width: fit-content;
  animation: btnpulse 1s infinite;
}
@keyframes btnpulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
@media screen and (max-width: 1024px) {
    .service_cta_banner .cta_button a {
        font-size: 14px;
        gap: 5px;
    }
}
@media screen and (max-width: 767px) {
    .service_cta_banner .cta_button a {
        margin: auto;
    }
}
.service_cta_banner .cta_button a img {
    height: 22px;
    width: 22px;
}
@media screen and (max-width: 1024px) {
    .service_cta_banner .cta_button a img {
        height: 18px;
        width: 18px;
    }
}

.trusted_service_agency .common_desc_text {
    text-align: center;
}
@media screen and (max-width: 767px) {
    .trusted_service_agency .common_desc_text {
        text-align: left;
        margin-top: 10px !important;
    }
}
.trusted_service_agency .service_feature_boxes {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .trusted_service_agency .service_feature_boxes {
        margin-top: 20px !important;
    }
}
.trusted_service_agency .service_feature_boxes .service_feature {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 33.3333333333%;
}
@media screen and (max-width: 1024px) {
    .trusted_service_agency .service_feature_boxes .service_feature {
        padding: 30px 20px;
    }
}
@media screen and (max-width: 767px) {
    .trusted_service_agency .service_feature_boxes .service_feature {
        width: 100%;
    }
}
.trusted_service_agency .service_feature_boxes .service_feature:nth-child(odd) {
    background: #f5f5f5;
}
.trusted_service_agency .service_feature_boxes .service_feature:nth-child(1) {
    border: 1px solid rgba(51, 51, 51, 0.2);
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
}
@media screen and (max-width: 767px) {
    .trusted_service_agency .service_feature_boxes .service_feature:nth-child(1) {
        border-right: 1px solid transparent;
    }
}
.trusted_service_agency .service_feature_boxes .service_feature:nth-child(2) {
    border: 1px solid rgba(51, 51, 51, 0.2);
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
}
@media screen and (max-width: 767px) {
    .trusted_service_agency .service_feature_boxes .service_feature:nth-child(2) {
        border-right: 1px solid transparent;
    }
}
.trusted_service_agency .service_feature_boxes .service_feature:nth-child(3) {
    border: 1px solid rgba(51, 51, 51, 0.2);
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}
.trusted_service_agency .service_feature_boxes .service_feature:nth-child(4) {
    border: 1px solid rgba(51, 51, 51, 0.2);
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
}
@media screen and (max-width: 767px) {
    .trusted_service_agency .service_feature_boxes .service_feature:nth-child(4) {
        border-right: 1px solid transparent;
        border-bottom: 1px solid rgba(51, 51, 51, 0.2);
    }
}
.trusted_service_agency .service_feature_boxes .service_feature:nth-child(5) {
    border: 1px solid rgba(51, 51, 51, 0.2);
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
}
@media screen and (max-width: 767px) {
    .trusted_service_agency .service_feature_boxes .service_feature:nth-child(5) {
        border-right: 1px solid transparent;
        border-bottom: 1px solid rgba(51, 51, 51, 0.2);
    }
}
.trusted_service_agency .service_feature_boxes .service_feature:nth-last-child(1) {
    border-bottom: 1px solid transparent;
}
.trusted_service_agency .service_feature_boxes .service_feature .service_feature_icon {
    height: 45px;
    width: 45px;
}
.trusted_service_agency .service_feature_boxes .service_feature .service_feature_details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.trusted_service_agency .service_feature_boxes .service_feature .service_feature_details h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1024px) {
    .trusted_service_agency .service_feature_boxes .service_feature .service_feature_details h3 {
        font-size: 16px;
    }
}
.trusted_service_agency .service_feature_boxes .service_feature .service_feature_details p {
    margin: 0;
    font-size: 12px;
    color: #333333;
    font-family: "Poppins" !important;
}

.service_stats_section .service_stats_boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-top: 35px;
}
@media only screen and (max-width: 1024px) {
    .service_stats_section .service_stats_boxes {
        gap: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .service_stats_section .service_stats_boxes {
        margin-top: 25px;
    }
}
.service_stats_section .service_stats_boxes .stats_box {
    width: calc(33.3333333333% - 80px);
    border: 1px solid #9f9f9f;
    border-radius: 8px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    box-shadow: 7.5px 7.5px 3.75px rgba(135, 135, 135, 0.2);
    transition: all 0.5s ease;
    padding: 20px;
}
@media only screen and (max-width: 1024px) {
    .service_stats_section .service_stats_boxes .stats_box {
        width: calc(50% - 30px);
    }
}
@media only screen and (max-width: 767px) {
    .service_stats_section .service_stats_boxes .stats_box {
        width: 100%;
    }
}
.service_stats_section .service_stats_boxes .stats_box:hover {
    transform: translate(-3px, -3px);
}
.service_stats_section .service_stats_boxes .stats_box h4,.service_stats_section .service_stats_boxes .stats_box .stats_box_title {
  font-size: 40px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  margin: 0;
  font-family: "Poppins" !important;
}
.service_stats_section .service_stats_boxes .stats_box p {
  font-size: 20px;
  color: #7e7e7e;
  text-align: center;
  margin: 0;
  font-family: "Poppins" !important;
}

.service_dev_process_section {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.service_dev_process_section .left_detail_section {
    flex-shrink: 0;
    width: 45%;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 1024px) {
    .service_dev_process_section .left_detail_section {
        width: 100%;
        padding-right: 0;
    }
}
.service_dev_process_section .left_detail_section .common_desc_text {
    margin-top: 20px;
}
.service_dev_process_section .left_detail_section .service_dev_process_img_wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
    flex-grow: 1;
}
.service_dev_process_section .left_detail_section .service_dev_process_img_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(271.26deg, rgba(255, 255, 255, 0) 30%, #ffffff 98.93%);
    z-index: 3;
}
.service_dev_process_section .left_detail_section .service_dev_process_img_wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #ffffff 98.93%);
    z-index: 3;
}
.service_dev_process_section .left_detail_section .service_dev_process_img_wrapper .saas_dev_process_img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1024px) {
    .service_dev_process_section .left_detail_section .service_dev_process_img_wrapper .saas_dev_process_img {
        max-height: 450px;
    }
}
.service_dev_process_section .right_detail_section {
    flex-shrink: 0;
    width: 55%;
    position: relative;
    padding: 33px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media screen and (max-width: 1024px) {
    .service_dev_process_section .right_detail_section {
        width: 100%;
        padding-right: 0;
    }
}
@media screen and (max-width: 767px) {
    .service_dev_process_section .right_detail_section {
        padding: 30px 20px;
        padding-right: 0;
    }
}
.service_dev_process_section .right_detail_section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 150px;
    background-color: #85979e;
    border-radius: 35px;
    z-index: -1;
}
.service_dev_process_section .right_detail_section .process_box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.service_dev_process_section .right_detail_section .process_box:nth-last-of-type(1) {
    margin-bottom: 0;
}
.service_dev_process_section .right_detail_section .process_box .numbering {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  font-size: 60px;
  color: #fff;
  flex-shrink: 0;
  font-weight: 600;
  font-family: "Poppins" !important;
}
.service_dev_process_section .right_detail_section .process_box .process_details {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 1.5px 1.5px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18.75px);
  border-radius: 22.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Poppins" !important;
  transition: all 0.3s ease;
}
.service_dev_process_section .right_detail_section .process_box .process_details:hover {
  transform: translateX(-10px);
}
@media screen and (max-width: 767px) {
    .service_dev_process_section .right_detail_section .process_box .process_details {
        gap: 5px;
    }
}
.service_dev_process_section .right_detail_section .process_box .process_details h4, .service_dev_process_section .right_detail_section .process_box .process_details .process_details_title {
  font-size: 20px;
  color: #333333;
  margin: 0;
  font-weight: 600;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 767px) {
    .service_dev_process_section .right_detail_section .process_box .process_details h4, .service_dev_process_section .right_detail_section .process_box .process_details .process_details_title {
        font-size: 18px;
    }
}
.service_dev_process_section .right_detail_section .process_box .process_details p {
  font-size: 14px;
  color: #333333;
  margin: 0;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 767px) {
    .service_dev_process_section .right_detail_section .process_box .process_details p {
        font-size: 12px;
    }
}

.service_green_banner {
    background-color: #4a846b;
    border-radius: 35px;
    padding: 30px;
    box-shadow: 0px 7.5px 18px rgba(0, 0, 0, 0.15);
}
.service_green_banner.gray_banner {
    background-color: #8fb7c7;
}
.service_green_banner.aqua_banner {
    background-color: #ABD1D0;
}
.service_green_banner.gray_banner h2, .service_green_banner.aqua_banner h2 {
  color: #333;
  font-family: "Poppins" !important;
}
.service_green_banner.gray_banner .banner_title, .service_green_banner.aqua_banner .banner_title {
  color: #333;
  font-family: "Poppins" !important;
}
.service_green_banner h2, .service_green_banner .banner_title {
  color: white;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1024px) {
    .service_green_banner h2, .service_green_banner .banner_title {
        font-size: 18px;
    }
}
@media screen and (max-width: 767px) {
    .service_green_banner h2, .service_green_banner .banner_title {
        font-size: 16px;
    }
}
.service_green_banner .cta_btn {
  border: none;
  background-color: #333333;
  color: white;
  padding: 10px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  animation: pulseEffect 1s infinite;
  font-family: "Poppins" !important;
  width: fit-content;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
    .service_green_banner .cta_btn {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .service_green_banner .cta_btn {
        font-size: 12px;
    }
}
.service_green_banner .cta_btn img.service_cta_chat_icon {
    height: 24px;
    width: 24px;
}
@media screen and (max-width: 1024px) {
    .service_green_banner .cta_btn img.service_cta_chat_icon {
        height: 20px;
        width: 20px;
    }
}
@keyframes pulseEffect {
    0% {
        box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(51, 51, 51, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(51, 51, 51, 0);
    }
}

.service_benifits_stats .benifits_stats_boxes {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    row-gap: 80px;
}
.service_benifits_stats .benifits_stats_boxes .benifit_stat_box {
    background: #ffffff;
    border-radius: 35px;
    min-height: 250px;
    padding: 24px;
    width: calc(25% - 30px);
    position: relative;
    display: flex;
    align-items: center;
    border: 5px solid rgba(185, 203, 212, 0.3);
    border-top: 0;
    max-width: 260px;
    transition: all 0.3s ease;
}
.service_benifits_stats .benifits_stats_boxes .benifit_stat_box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.114);
}
@media screen and (max-width: 1024px) {
    .service_benifits_stats .benifits_stats_boxes .benifit_stat_box {
        width: calc(50% - 30px);
    }
}
@media screen and (max-width: 767px) {
    .service_benifits_stats .benifits_stats_boxes .benifit_stat_box {
        width: 100%;
    }
}
.service_benifits_stats .benifits_stats_boxes .benifit_stat_box .stat_value {
  font-size: 32px;
  color: #333333;
  font-family: "Poppins" !important;
  font-weight: 600;
  border: 7.5px solid rgba(185, 203, 212, 0.3);
  border-radius: 100px;
  height: 115px;
  width: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -57.5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
}
.service_benifits_stats .benifits_stats_boxes .benifit_stat_box .stat_description {
    font-size: 18px;
    text-align: center;
    color: #333;
    font-family: "Poppins" !important;
}

.service_tech_stack .common_desc_text {
    max-width: 70%;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    .service_tech_stack .common_desc_text {
        max-width: 90%;
    }
}
@media screen and (max-width: 767px) {
    .service_tech_stack .common_desc_text {
        max-width: 100%;
        text-align: left;
    }
}
.service_tech_stack .service_tech_stack_tabs_wrapper {
    border-bottom: none;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.service_tech_stack .service_tech_stack_tabs_wrapper .nav-item .service_tech_stack_tabs_btn {
  border: 1px solid #7d7d7d;
  border-radius: 10px;
  color: #7d7d7d;
  transition: all 0.5s ease;
  font-family: "Poppins" !important;
}
.service_tech_stack .service_tech_stack_tabs_wrapper .nav-item .service_tech_stack_tabs_btn.active {
    background-color: #4d77d2;
    color: white;
    border: 1px solid #4d77d2;
    transform: scale(1.05);
}
.service_tech_stack .service_tech_stack_tabs_wrapper .nav-item .service_tech_stack_tabs_btn:hover {
    background-color: rgba(77, 119, 210, 0.8705882353);
    color: white;
    border: 1px solid rgba(77, 119, 210, 0.8705882353);
    transform: scale(1.1);
}
@media screen and (max-width: 767px) {
    .service_tech_stack .service_tech_stack_tabs_wrapper .nav-item .service_tech_stack_tabs_btn {
        font-size: 12px;
    }
}
.service_tech_stack .tech_stack_tab_content_wrapper .tab-pane .stack_box {
  border: 1px solid #e0e0e0;
  width: 210px;
  min-height: 210px;
  padding: 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  color: #3b3c3d;
  transition: all 0.3s ease;
  font-family: "Poppins" !important;
  text-decoration: none;
}
.service_tech_stack .tech_stack_tab_content_wrapper .tab-pane .stack_box:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
    .service_tech_stack .tech_stack_tab_content_wrapper .tab-pane .stack_box {
        width: 150px;
        min-height: 150px;
        font-size: 18px;
        line-height: 18px;
    }
}
.service_tech_stack .tech_stack_tab_content_wrapper .tab-pane .stack_box .stack_img_wrapper {
    height: 100px;
    width: 100px;
}
@media screen and (max-width: 1024px) {
    .service_tech_stack .tech_stack_tab_content_wrapper .tab-pane .stack_box .stack_img_wrapper {
        height: 80px;
        width: 80px;
    }
}
.service_tech_stack .tech_stack_tab_content_wrapper .tab-pane .stack_box .stack_img_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.industries_we_serve .common_desc_text {
    max-width: 50%;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .industries_we_serve .common_desc_text {
        max-width: 100%;
        text-align: left;
    }
}
.industries_we_serve .industry_boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}
@media screen and (max-width: 1024px) {
    .industries_we_serve .industry_boxes {
        gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .industries_we_serve .industry_boxes {
        justify-content: center;
    }
}
.industries_we_serve .industry_boxes .industry_box {
    border: 1px solid #dedede;
    border-radius: 15px;
    overflow: hidden;
    width: calc(33.3333333333% - 40px);
    padding-bottom: 15px;
    transition: all 0.5s ease;
    text-decoration: none;
}
@media screen and (max-width: 1024px) {
    .industries_we_serve .industry_boxes .industry_box {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 767px) {
    .industries_we_serve .industry_boxes .industry_box {
        width: 100%;
    }
}
.industries_we_serve .industry_boxes .industry_box:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.industries_we_serve .industry_boxes .industry_box:hover .img_wrapper img {
    scale: 1.1;
}
.industries_we_serve .industry_boxes .industry_box:hover .industry_btn img {
    transform: translateX(5px);
}
.industries_we_serve .industry_boxes .industry_box .img_wrapper {
    height: 225px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.industries_we_serve .industry_boxes .industry_box .img_wrapper:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    user-select: none;
}
.industries_we_serve .industry_boxes .industry_box .img_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.industries_we_serve .industry_boxes .industry_box .img_wrapper .industry_name {
  position: absolute;
  top: 15px;
  left: 20px;
  max-width: calc(100% - 20px);
  color: white;
  font-size: 24px;
  font-weight: 600;
  z-index: 3;
  font-family: "Poppins" !important;
}
.industries_we_serve .industry_boxes .industry_box .industry_detail {
  margin: 15px;
  font-size: 14px;
  color: #333333;
  font-family: "Poppins" !important;
}
.industries_we_serve .industry_boxes .industry_box .industry_btn {
  border: none;
  color: #333333;
  font-size: 16px;
  margin-left: 15px;
  padding: 0;
  font-weight: 600;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Poppins" !important;
}
.industries_we_serve .industry_boxes .industry_box .industry_btn img {
    height: 15px;
    width: auto;
    transition: all 0.5s ease;
}
.industries_we_serve .view_all_industry_btn {
  border: 1px solid #4d77d2;
  padding: 11px 15px;
  background-color: #4d77d2;
  color: white;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  transition: all 1s ease;
  margin: auto;
  margin-top: 30px;
  font-family: "Poppins" !important;
  width: fit-content;
  text-decoration: none;
}
.industries_we_serve .view_all_industry_btn img {
    height: 15px;
    width: auto;
    transition: all 0.5s ease;
}
.industries_we_serve .view_all_industry_btn:hover {
    animation: pulseViewAll 2s infinite;
}
.industries_we_serve .view_all_industry_btn:hover img {
    transform: translateX(3px);
}
@keyframes pulseViewAll {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 209, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(168, 208, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(168, 208, 255, 0);
    }
}
@media screen and (max-width: 767px) {
    .industries_we_serve .view_all_industry_btn {
        font-size: 14px;
        margin-top: 20px;
    }
    .industries_we_serve .view_all_industry_btn img {
        height: 12px;
    }
}

.custom_spacing {
    margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
    .custom_spacing {
        margin-top: 50px !important;
    }
}

.client_video_slider .swiper {
    width: 100%;
    height: 420px;
    overflow: visible;
    margin-top: 70px;
}
@media screen and (max-width: 1024px) {
    .client_video_slider .swiper {
        height: 300px;
    }
}
@media screen and (max-width: 767px) {
    .client_video_slider .swiper {
        height: 530px;
        margin-top: 40px;
    }
}
.client_video_slider .swiper .swiper-wrapper {
    display: flex;
}
.client_video_slider .swiper .swiper-wrapper .swiper-slide {
    flex-shrink: 0;
    width: 100%; /* makes each slide take full width */
}
.client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper {
    display: flex;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper {
        flex-direction: column;
    }
}
.client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_img_wrapper {
    width: 50%;
    padding: 50px 70px;
    position: relative;
    background: url("https://www.technource.com/wp-content/uploads/2025/09/client-img-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
@media screen and (max-width: 1024px) {
    .client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_img_wrapper {
        padding: 20px;
    }
}
@media screen and (max-width: 767px) {
    .client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_img_wrapper {
        width: 100%;
        height: 250px;
    }
}
.client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_img_wrapper .playVideoBtn {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_img_wrapper .playVideoBtn .play-video-img {
  height: 70px;
  width: 70px;
  border: none;
}
.client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_img_wrapper img {
    height: 100%;
    width: 100%;
    border: 7px solid white;
    object-fit: cover;
}
.client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_img_wrapper .quote-wrapper {
    height: 90px;
    width: 90px;
    background-color: white;
    border-radius: 1000px;
    overflow: hidden;
    padding: 20px;
    position: absolute;
    top: -45px;
    right: -45px;
}
@media screen and (max-width: 1024px) {
    .client_video_slider
        .swiper
        .swiper-wrapper
        .swiper-slide
        .slide_detail_wrapper
        .client_img_wrapper
        .quote-wrapper {
        height: 70px;
        width: 70px;
        top: -35px;
        right: -35px;
        padding: 15px;
    }
}
@media screen and (max-width: 767px) {
    .client_video_slider
        .swiper
        .swiper-wrapper
        .swiper-slide
        .slide_detail_wrapper
        .client_img_wrapper
        .quote-wrapper {
        right: unset;
        left: -2px;
    }
}
.client_video_slider
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide_detail_wrapper
    .client_img_wrapper
    .quote-wrapper
    .quote-icon {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_detail_wrapper {
    width: 50%;
    padding: 50px 30px;
    background-color: white;
}
@media screen and (max-width: 1024px) {
    .client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_detail_wrapper {
        padding: 30px 20px;
    }
}
@media screen and (max-width: 767px) {
    .client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_detail_wrapper {
        width: 100%;
        flex-grow: 1;
        padding: 20px 0;
    }
}
.client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_detail_wrapper .client-review {
  font-size: 20px;
  color: #333;
  line-height: 30px;
  font-weight: 500;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1440px) {
  .client_video_slider
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide_detail_wrapper
    .client_detail_wrapper
    .client-review {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (max-width: 1024px) {
    .client_video_slider
        .swiper
        .swiper-wrapper
        .swiper-slide
        .slide_detail_wrapper
        .client_detail_wrapper
        .client-review {
        font-size: 14px;
        line-height: 20px;
    }
}
.client_video_slider .swiper .swiper-wrapper .swiper-slide .slide_detail_wrapper .client_detail_wrapper .client-name {
  font-weight: bold;
  color: #333;
  font-size: 20px;
  margin-top: 30px;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1024px) {
    .client_video_slider
        .swiper
        .swiper-wrapper
        .swiper-slide
        .slide_detail_wrapper
        .client_detail_wrapper
        .client-name {
        font-size: 16px;
        margin-top: 20px;
    }
}
.client_video_slider
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide_detail_wrapper
  .client_detail_wrapper
  .client-designation {
  font-weight: 600;
  color: #adadad;
  font-size: 14px;
  margin-top: 5px;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1024px) {
    .client_video_slider
        .swiper
        .swiper-wrapper
        .swiper-slide
        .slide_detail_wrapper
        .client_detail_wrapper
        .client-designation {
        font-size: 12px;
    }
}
.client_video_slider .swiper .swiper-button-next {
    background-color: white;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    filter: drop-shadow(0px 0px 5.25px rgba(0, 0, 0, 0.15));
    left: calc(50% + 105px);
    top: unset;
  bottom: 15px;
}
.client_video_slider .swiper .swiper-button-next::after {
    font-size: 20px;
    color: #a9a9a9;
    margin-left: 4px;
}
@media screen and (max-width: 1024px) {
    .client_video_slider .swiper .swiper-button-next {
        bottom: 0;
        height: 30px;
        width: 30px;
        left: calc(50% + 60px);
    }
    .client_video_slider .swiper .swiper-button-next::after {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .client_video_slider .swiper .swiper-button-next {
        left: 60px;
    }
}
.client_video_slider .swiper .swiper-button-prev {
    background-color: white;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    filter: drop-shadow(0px 0px 5.25px rgba(0, 0, 0, 0.15));
    left: calc(50% + 40px);
    top: unset;
  bottom: 15px;
}
.client_video_slider .swiper .swiper-button-prev::after {
    font-size: 20px;
    color: #a9a9a9;
    margin-right: 4px;
}
@media screen and (max-width: 1024px) {
    .client_video_slider .swiper .swiper-button-prev {
        bottom: 0;
        height: 30px;
        width: 30px;
        left: calc(50% + 20px);
    }
    .client_video_slider .swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .client_video_slider .swiper .swiper-button-prev {
        left: 10px;
    }
}

.partner_with_technource {
    background-color: #fff9f5;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .partner_with_technource {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
.partner_with_technource .container {
    display: flex;
    gap: 50px;
}
@media screen and (max-width: 1024px) {
    .partner_with_technource .container {
        gap: 30px;
    }
}
@media screen and (max-width: 767px) {
    .partner_with_technource .container {
        flex-direction: column;
    }
}
.partner_with_technource::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background-image: url("https://www.technource.com/wp-content/uploads/2025/09/banner-side-image.png");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.partner_with_technource::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 30%;
    background-image: url("https://www.technource.com/wp-content/uploads/2025/09/banner-side-image.png");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    transform: scaleX(-1);
}
.partner_with_technource .left_details_section {
    width: 50%;
    z-index: 2;
}
@media screen and (max-width: 767px) {
    .partner_with_technource .left_details_section {
        width: 100%;
    }
}
.partner_with_technource .left_details_section .common_sub_title {
    margin-bottom: 40px;
    font-weight: 600;
}
@media screen and (max-width: 1024px) {
    .partner_with_technource .left_details_section .common_sub_title {
        margin-bottom: 20px;
        font-size: 22px;
    }
}
.partner_with_technource .left_details_section .common_desc_text {
    margin-bottom: 30px;
}
.partner_with_technource .left_details_section .common_desc_text:nth-last-of-type(1) {
    margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
    .partner_with_technource .left_details_section .common_desc_text {
        font-size: 12px;
    }
}
@media screen and (max-width: 767px) {
    .partner_with_technource .left_details_section .common_desc_text {
        margin-bottom: 20px;
    }
}
.partner_with_technource .right_image_section {
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    max-height: 450px;
}
@media screen and (max-width: 767px) {
    .partner_with_technource .right_image_section {
        width: 100%;
    }
}
.partner_with_technource .right_image_section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.partner_with_technource .right_image_section img:hover {
  scale: 1.05;
}

.frequently_asked_questions * {
  color: #333;
  font-family: "Poppins" !important;
}
.frequently_asked_questions .service_faq_accordion {
    margin-top: 35px;
}
@media screen and (max-width: 767px) {
    .frequently_asked_questions .service_faq_accordion {
        margin-top: 25px;
    }
}
.frequently_asked_questions .service_faq_accordion .accordion-item {
    border: 1px solid #d7d7d7;
    border-right: none;
    border-left: none;
    border-radius: 10px !important;
    overflow: hidden;
    border-top: 1px solid white;
}
.frequently_asked_questions .service_faq_accordion .accordion-item:has(.accordion-collapse.collapse.show) {
    border-bottom: 1px solid #d7d7d7;
}
.frequently_asked_questions .service_faq_accordion .accordion-item:nth-of-type(1) {
    border-top: 1px solid #d7d7d7;
}
.frequently_asked_questions .service_faq_accordion .accordion-item:nth-last-of-type(1) {
    border-bottom: 1px solid #d7d7d7;
}
.frequently_asked_questions .service_faq_accordion .accordion-item .accordion-button {
    background-color: white;
    box-shadow: none;
    border: none;
    min-height: 70px;
    color: #333;
    font-weight: 500;
    font-size: 22px;
}
.frequently_asked_questions .service_faq_accordion .accordion-item .accordion-button:after {
    background-size: 35px;
    height: 35px;
    width: 35px;
    filter: grayscale(1);
    opacity: 0.5;
}
@media screen and (max-width: 1024px) {
    .frequently_asked_questions .service_faq_accordion .accordion-item .accordion-button {
        font-size: 18px;
    }
}
@media screen and (max-width: 767px) {
    .frequently_asked_questions .service_faq_accordion .accordion-item .accordion-button {
        font-size: 14px;
    }
    .frequently_asked_questions .service_faq_accordion .accordion-item .accordion-button::after {
        background-size: 18px;
        height: 18px;
        width: 18px;
    }
}
.frequently_asked_questions .service_faq_accordion .accordion-item .accordion-body {
    padding-top: 0;
}
@media screen and (max-width: 1024px) {
    .frequently_asked_questions .service_faq_accordion .accordion-item .accordion-body {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .frequently_asked_questions .service_faq_accordion .accordion-item .accordion-body {
        font-size: 12px;
    }
}
.highlighted_word{
    color: #4d77d2;
}
.highlight_heading {
  position: relative;
  z-index: 2;
  font-weight: 600;
  color: #333333;
  width: fit-content;
  margin: 0 auto;
  font-family: "Poppins" !important;
}
.highlight_heading::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -15px;
    transform: translateY(-50%);
    height: 60px;
    width: 60px;
    background-color: #ffecc0;
    z-index: -1;
}
@media screen and (max-width: 1024px) {
    .highlight_heading::before {
        height: 40px;
        width: 40px;
        left: -10px;
        top: 15px;
    }
}
@media screen and (max-width: 767px) {
    .highlight_heading::before {
        height: 30px;
        width: 30px;
        left: -8px;
        top: 10px;
    }
}

.common_sub_title {
  font-size: 38px;
  color: #333333;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1600px) {
    .common_sub_title {
        font-size: 36px;
    }
}
@media screen and (max-width: 1280px) {
    .common_sub_title {
        font-size: 32px;
    }
}
@media screen and (max-width: 1024px) {
    .common_sub_title {
        font-size: 26px;
    }
}
@media screen and (max-width: 767px) {
    .common_sub_title {
        font-size: 24px;
    }
}
@media screen and (max-width: 480px) {
    .common_sub_title {
        font-size: 20px;
    }
}
@media screen and (max-width: 360px) {
    .common_sub_title {
        font-size: 18px;
    }
}

.common_desc_text {
  font-size: 18px;
  color: #333333;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1600px) {
    .common_desc_text {
        font-size: 18px;
    }
}
@media screen and (max-width: 1280px) {
    .common_desc_text {
        font-size: 16px;
    }
}
@media screen and (max-width: 1024px) {
    .common_desc_text {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .common_desc_text {
        font-size: 14px;
    }
}
@media screen and (max-width: 575px) {
    .common_desc_text {
        font-size: 12px;
    }
}

.cursor-follower {
    position: fixed;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #654500;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    will-change: transform, left, top;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.25s ease-out;
}
@media only screen and (max-width: 1024px) {
    .cursor-follower {
        display: none;
    }
}
.cursor-follower.moving {
    transform: translate(-50%, -50%) scale(1.3);
}

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.clientVideo .modal-dialog {
  max-width: fit-content;
}
@media screen and (max-width: 1024px) {
  .clientVideo .modal-dialog {
    max-width: 80vw;
  }
}
@media screen and (max-width: 767px) {
  .clientVideo .modal-dialog {
    max-width: 100vw;
  }
}
.clientVideo .modal-dialog .modal-content {
  background-color: transparent;
  border: none;
}
.clientVideo .modal-dialog .modal-content .modal-header {
  position: relative;
  padding: 0 !important;
  display: contents;
}
.clientVideo .modal-dialog .modal-content .modal-header .closeVideoBtn {
  position: absolute;
  top: 0px;
  right: -60px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: none;
}
@media screen and (max-width: 767px) {
  .clientVideo .modal-dialog .modal-content .modal-header .closeVideoBtn {
    right: 0;
    top: -60px;
  }
}
.clientVideo .modal-dialog .modal-content .modal-header .closeVideoBtn img {
  height: 35px;
  width: 35px;
}
.clientVideo .modal-dialog .modal-content .modal-body {
  padding: 0 !important;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .clientVideo .modal-dialog .modal-content .modal-body iframe {
    max-width: 100%;
  }
}

.more_case_studies_slider .carousel .carousel-indicators {
  list-style: none;
  bottom: -40px;
}
.more_case_studies_slider .carousel .carousel-indicators li {
  background-color: #9c9c9c;
}
.more_case_studies_slider .carousel .carousel-indicators li.active {
  background-color: #555;
}
.more_case_studies_slider .carousel .carousel-control-prev {
  left: -120px !important;
  bottom: unset !important;
  right: unset !important;
  top: 50% !important;
  transform: translateY(-50%);
  display: none;
}
@media screen and (max-width: 1024px) {
  .more_case_studies_slider .carousel .carousel-control-prev {
    left: -75px !important;
  }
}
@media screen and (max-width: 767px) {
  .more_case_studies_slider .carousel .carousel-control-prev {
    left: -30px !important;
  }
}
.more_case_studies_slider .carousel .carousel-control-prev .carousel-control-prev-icon {
  background-color: rgba(0, 0, 0, 0.3098039216) !important;
  border-radius: 100px !important;
  background-size: 20px !important;
}
.more_case_studies_slider .carousel .carousel-control-next {
  right: -120px !important;
  bottom: unset !important;
  left: unset !important;
  top: 50% !important;
  transform: translateY(-50%);
  display: none;
}
@media screen and (max-width: 1024px) {
  .more_case_studies_slider .carousel .carousel-control-next {
    right: -75px !important;
  }
}
@media screen and (max-width: 767px) {
  .more_case_studies_slider .carousel .carousel-control-next {
    right: -30px !important;
  }
}
.more_case_studies_slider .carousel .carousel-control-next .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3098039216) !important;
  border-radius: 100px !important;
  background-size: 20px !important;
}

.latest_blog h3.sub_title {
  font-family: "Poppins" !important;
  color: #333;
  font-weight: 400 !important;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .latest_blog h3.sub_title {
    font-size: 16px;
  }
}
.latest_blog .latest_blog_main_blogContent .shortBlogTitle {
  font-size: 14px;
  line-height: normal !important;
  margin: 0 !important;
}
.equal_height_container {
  height: -webkit-fill-available;
}

/*# sourceMappingURL=main.css.map */