@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;
}

.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: 70px;
    }
}
@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://technource.s3.us-west-1.amazonaws.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://technource.s3.us-west-1.amazonaws.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://technource.s3.us-west-1.amazonaws.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://technource.s3.us-west-1.amazonaws.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: url("https://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2025/11/theme_highligh_bg_img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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 {
    transition: 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://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2026/01/30180957/project-sprite-image.webp");
    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: linear-gradient(90deg, rgba(255, 85, 139, 0.2) 0%, rgba(115, 110, 255, 0.2) 100%);
    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;
}
.service_overview .content_section_left .common_sub_title {
    font-weight: 500;
}
.service_overview .content_section_left .common_desc_text {
    font-weight: 400;
}
@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: 100px;
}
@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: #111;
    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: #111;
  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: 10px;
        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: 10px;
        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://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2025/12/22122641/black_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://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2025/12/22122641/black_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 {
    border: none;
    background: url("https://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2025/11/theme_highligh_bg_img.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    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;
}
@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%;
    transition: all 0.3s ease;
}
@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%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}
.trusted_service_agency .service_feature_boxes .service_feature .service_feature_icon {
    height: 45px;
    width: 45px;
}
@media screen and (max-width: 767px) {
    .trusted_service_agency .service_feature_boxes .service_feature .service_feature_icon {
        height: 30px;
        width: 30px;
    }
}
.trusted_service_agency .service_feature_boxes .service_feature 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 h3 {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .trusted_service_agency .service_feature_boxes .service_feature h3 {
        width: calc(100% - 70px);
    }
}
.trusted_service_agency .service_feature_boxes .service_feature p {
    margin: 0;
    font-size: 12px;
    color: #333333;
    font-family: "Poppins" !important;
    margin-top: 10px;
}

.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: #454545;
    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_black_banner{
    background-color: #111;
    border-radius: 35px;
    padding: 30px;
    box-shadow: 0px 7.5px 18px rgba(0, 0, 0, 0.15);
    color: white;
}
.service_black_banner h2, .service_black_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_black_banner h2, .service_black_banner .banner_title {
        font-size: 18px;
    }
}
@media screen and (max-width: 767px) {
    .service_black_banner h2, .service_black_banner .banner_title {
        font-size: 16px;
    }
}
.service_black_banner .cta_btn {
    border: none;
    background: url("https://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2025/11/theme_highligh_bg_img.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    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: 767px) {
    .service_black_banner .cta_btn {
        gap: 10px;
    }
}
.service_black_banner .cta_btn img {
    height: 24px;
    width: 24px;
}
@media screen and (max-width: 1024px) {
    .service_black_banner .cta_btn img {
        height: 20px;
        width: 20px;
    }
}

@keyframes pulseEffect {
    0% {
        box-shadow: 0 0 0 0 rgba(167, 167, 167, 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;
    justify-content: 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 {
        gap: 30px;
        row-gap: 80px;
    }
    .service_benifits_stats .benifits_stats_boxes .benifit_stat_box {
        width: calc(25% - 25px);
        border-radius: 25px;
        padding: 24px 12px;
        min-height: 190px;
    }
}
@media screen and (max-width: 767px) {
    .service_benifits_stats .benifits_stats_boxes .benifit_stat_box {
        width: calc(50% - 25px);
    }
}
.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_benifits_stats .benifits_stats_boxes .benifit_stat_box .stat_value {
        font-size: 20px;
        height: 85px;
        width: 85px;
    }
    .service_benifits_stats .benifits_stats_boxes .benifit_stat_box .stat_description {
        font-size: 12px;
    }
    .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: 1024px) {
    .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: none;
  padding: 11px 15px;
  background: url("https://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2025/11/theme_highligh_bg_img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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;
  overflow: hidden;
  position: relative;
}
.industries_we_serve .view_all_industry_btn img {
    height: 15px;
    width: auto;
    transition: all 0.5s ease;
}
.industries_we_serve .view_all_industry_btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
}
.industries_we_serve .view_all_industry_btn:hover {
    transition: all 0.5s ease;
    animation: btnpulseblack 1s infinite;
}
.industries_we_serve .view_all_industry_btn:hover img {
    transform: translateX(3px);
}
.industries_we_serve .view_all_industry_btn:hover::after {
    left: 200%;
    transition: left 1s ease;
}

@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;
    }
}

.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://technource.s3.us-west-1.amazonaws.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://technource.s3.us-west-1.amazonaws.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: 20px;
    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;
}

.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: 14px;
    }
}
@media screen and (max-width: 767px) {
    .common_desc_text {
        font-size: 12px;
    }
}
@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; */
  height: auto;
}

a.theme_highlight{
    position: relative;
    transition: all 0.3s ease;
}
a.theme_highlight:hover:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, #ff558b 0%, #736eff 100%);
}

.solutions_we_offer .common_desc_text {
  max-width: 70%;
  margin: auto;
}
.solutions_we_offer .solution_slider {
  margin-top: 30px;
}
.solutions_we_offer .solution_slider .owl-stage-outer .owl-stage {
  display: flex;
}
.solutions_we_offer .solution_box {
  border: 1px solid #B9B9B9;
  border-radius: 30px;
  padding: 20px;
  min-width: 300px;
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  .solutions_we_offer .solution_box {
    max-width: 320px;
  }
}
.solutions_we_offer .solution_box .solution_details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}
.solutions_we_offer .solution_box .solution_details .solution_point {
  position: relative;
  padding-left: 20px;
  font-weight: 400;
  font-family: "Poppins" !important;
  color: #333333;
}
.solutions_we_offer .solution_box .solution_details .solution_point::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: url("https://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2026/01/30181510/star_theme_heading_icon.webp");
  background-size: contain;
  background-repeat: no-repeat;
  left: 0px;
  top: 2px;
}

.transforming_section .transforming_content {
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(255, 85, 139, 0.3) 0%, rgba(115, 110, 255, 0.3) 100%);
  border-radius: 30px;
  padding: 25px;
}
.transforming_section .transforming_content #transformTab {
  border: none;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: auto;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  padding-bottom: 1px;
}
.transforming_section .transforming_content #transformTab::-webkit-scrollbar {
  display: none;
}
.transforming_section .transforming_content #transformTab .nav-item {
  flex-shrink: 0;
}
.transforming_section .transforming_content #transformTab .nav-item .nav-link {
  border: 1px solid #111111;
  border-radius: 100px;
  padding: 8px 20px;
  color: #111;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1024px) {
  .transforming_section .transforming_content #transformTab .nav-item .nav-link {
    font-size: 12px;
  }
}
.transforming_section .transforming_content #transformTab .nav-item .nav-link.active {
  background: linear-gradient(90deg, #FF558B 0%, #736EFF 100%);
  color: white;
  background-repeat: no-repeat;
  background-size: cover;
}
.transforming_section .transforming_content #transformTabContent {
  margin-top: 25px;
}
.transforming_section .transforming_content #transformTabContent .tab-pane.active {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .transforming_section .transforming_content #transformTabContent .tab-pane.active {
    flex-direction: column;
  }
}
.transforming_section .transforming_content #transformTabContent .tab-pane .image_wrapper {
  width: 40%;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .transforming_section .transforming_content #transformTabContent .tab-pane .image_wrapper {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .transforming_section .transforming_content #transformTabContent .tab-pane .image_wrapper {
    width: 100%;
  }
}
.transforming_section .transforming_content #transformTabContent .tab-pane .image_wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
  max-height: 360px;
}
.transforming_section .transforming_content #transformTabContent .tab-pane .image_wrapper:hover img {
  transform: scale(1.05);
}
.transforming_section .transforming_content #transformTabContent .tab-pane .image_description {
  flex-grow: 1;
  font-size: 20px;
  font-weight: 300;
  font-family: "Poppins" !important;
}
@media screen and (max-width: 1024px) {
  .transforming_section .transforming_content #transformTabContent .tab-pane .image_description {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .transforming_section .transforming_content #transformTabContent .tab-pane .image_description {
    text-align: center;
  }
}


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