* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "poppins_regular";
    src: url(../font/Poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: "poppins_medium";
    src: url(../font/Poppins/Poppins-Medium.ttf);
}

@font-face {
    font-family: "poppins_semibold";
    src: url(../font/Poppins/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: "poppins_bold";
    src: url(../font/Poppins/Poppins-Bold.ttf);
}

@font-face {
    font-family: "inter_regular";
    src: url(../font/Inter/Inter_Regular.ttf);
}

@font-face {
    font-family: "inter_medium";
    src: url(../font/Inter/Inter_Medium.ttf);
}

@font-face {
    font-family: "inter_semibold";
    src: url(../font/Inter/Inter_SemiBold.ttf);
}

:root {
    --poppins_regular: "poppins_regular";
    --poppins_medium: "poppins_medium";
    --poppins_semibold: "poppins_semibold";
    --poppins_bold: "poppins_bold";
    --inter_regular: "inter_regular";
    --inter_medium: "inter_medium";
    --inter_semibold: "inter_semibold";

    --fs_12: 12px;
    --fs_14: 14px;
    --fs_15: 15px;
    --fs_16: 16px;
    --fs_18: 18px;
    --fs_20: 20px;
    --fs_22: 22px;
    --fs_24: 24px;
    --fs_26: 26px;
    --fs_28: 28px;
    --fs_30: 30px;
    --fs_32: 32px;
    --fs_34: 34px;
    --fs_36: 36px;
    --fs_38: 38px;
    --fs_40: 40px;
    --fs_42: 42px;
    --fs_44: 44px;
    --fs_46: 46px;
    --fs_48: 48px;
    --fs_50: 50px;
    --fs_52: 52px;
    --fs_54: 54px;
    --fs_56: 56px;
    --fs_58: 58px;
    --fs_60: 60px;
    --fs_70: 70px;
    --fs_80: 80px;

    --bg_color_1: #000000;
    --bg_color_2: #FFFFFF;
    --bg_color_3: #F6F6F6;
    --bg_color_4: #EF3F23;
    --bg_color_5: #E5E1E0;
    --bg_color_6: #151E55;
    --bg_color_7: #F8F8F8;
    --bg_color_8: #F7F8FF;

    --text_color_1: #000000;
    --text_color_2: #FFFFFF;
    --text_color_3: #283585;
    --text_color_4: #FF2300;
    --text_color_5: #535D9D;
    --text_color_6: #222B65;
    --text_color_7: #F5F6FF;
    --text_color_8: #656464;
    --text_color_9: #201C43;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--poppins_medium);
}

div,
p,
span,
ul,
li {
    font-family: var(--poppins_regular);
}

/* .navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--bg_color_3);
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
} */

header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    position: relative;
    z-index: 999;
    background-color: var(--bg_color_3);
    transition: all 0.3s ease;
}

.navbar.is-sticky {
    background-color: var(--bg_color_2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.navbar .navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-toggler svg {
    height: 40px;
    width: 40px;
    transform: rotate(180deg);
    color: var(--text_color_3);
}

.navbar .nav-scroll-border {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--bg_color_4);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.08s linear;
    z-index: 10;
    pointer-events: none;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-family: var(--poppins_medium);
    font-size: var(--fs_15);
    color: var(--text_color_9);
    text-wrap-mode: nowrap;
    margin: 0 6px;
}

.navbar .request_quote_btn_part .request_quote_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 14px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
    width: fit-content;
    text-wrap-mode: nowrap;
}

.navbar .about_dropdown {
    position: relative;
}

.navbar .about_dropdown .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}

.navbar .about_dropdown_menu {
    width: max-content;
    padding: 8px 16px 16px 16px;
    border: none;
    border-radius: 12px;
    background-color: var(--bg_color_2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    margin-top: 16px;
}

.navbar .about_dropdown_menu li:not(:last-child) {
    margin-bottom: 4px;
}

.navbar .about_dropdown_menu .info_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 4px;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px dashed var(--bg_color_5);
}

.navbar .about_dropdown_menu li:nth-last-child(3) .info_item {
    border-bottom: none;
}

.navbar .about_dropdown_menu .info_item:hover,
.navbar .about_dropdown_menu .info_item:focus,
.navbar .about_dropdown_menu .info_item:active {
    background: transparent;
}

.navbar .about_dropdown_menu .icon_part {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: #FFEBE5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .about_dropdown_menu .icon_part img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.navbar .about_dropdown_menu .text_part .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_15);
    line-height: 1.2;
    color: var(--text_color_9);
    margin-bottom: 0;
}

.navbar .about_dropdown_menu .text_part .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_14);
    line-height: 1.2;
    color: var(--text_color_8);
    margin-bottom: 0;
    margin-top: 4px;
}

.navbar .about_dropdown_menu .dropdown-divider {
    margin: 10px 0 16px 0;
    border-top: 1px solid var(--bg_color_5);
}

.navbar .about_dropdown_menu .dropdown_bottom_text {
    padding: 0 8px;
    text-align: center;
}

.navbar .about_dropdown_menu .dropdown_bottom_text p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_14);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 0;
}

.navbar .about_dropdown_menu .dropdown_bottom_text p:first-child {
    color: var(--text_color_3);
}

.navbar .about_dropdown_menu .dropdown_bottom_text p:last-child {
    color: var(--text_color_4);
}

@media only screen and (max-width: 992px) {
    .navbar .about_dropdown_menu {
        width: 100%;
        min-width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border: 1px solid var(--bg_color_5);
    }

    .navbar .navbar-nav .nav-item .nav-link {
        margin: 0;
    }
}

.homepage_first_section .main-slider {
    width: 100%;
    height: 92vh;
    position: relative;
    overflow: hidden;
}

.homepage_first_section .main-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.homepage_first_section .main-slider .content {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    max-width: 800px;
    z-index: 3;
    color: var(--text_color_2);
    padding: 20px;
    opacity: 0;
    transition: opacity .35s ease;
}

.homepage_first_section .main-slider .content .title {
    font-size: var(--fs_52);
    font-family: var(--poppins_semibold);
    color: var(--text_color_3);
    line-height: 1.2;
}

.homepage_first_section .main-slider .content .title span {
    color: var(--text_color_4);
}

.homepage_first_section .main-slider .content .desc {
    font-size: var(--fs_16);
    font-family: var(--poppins_regular);
    color: var(--text_color_3);
    max-width: 600px;
}

.homepage_first_section .main-slider .content .button_part {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.homepage_first_section .main-slider .content .button_part .request_quote_btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    width: fit-content;
    text-decoration: none;
    color: var(--text_color_2);
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    letter-spacing: 3%;
}

.homepage_first_section .main-slider .content .button_part .view_capabilities_btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    border: 1px solid var(--bg_color_4);
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.15));
    border-radius: 6px;
    width: fit-content;
    text-decoration: none;
    color: var(--text_color_4);
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    letter-spacing: 3%;
}

.homepage_first_section .main-slider .swiper-slide-active .content {
    opacity: 1;
}

.homepage_first_section .main-slider .background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.homepage_first_section .main-slider .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage_first_section .main-slider .background::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.homepage_first_section .main-slider .thumb-strip-wrap {
    position: absolute;
    right: 40px;
    bottom: 35px;
    width: 300px;
    z-index: 20;
}

.homepage_first_section .main-slider .thumb-strip-wrap::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    z-index: -1;
}

.homepage_first_section .main-slider .thumb-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.homepage_first_section .main-slider .thumb-strip.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.homepage_first_section .main-slider .thumb-strip::-webkit-scrollbar {
    display: none;
}

.homepage_first_section .main-slider .thumb-item {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    opacity: .55;
    transform: scale(.92);
    transition: all .35s ease;
}

.homepage_first_section .main-slider .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage_first_section .main-slider .thumb-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.05));
}

.homepage_first_section .main-slider .thumb-item.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--bg_color_2);
}

.homepage_first_section .main-slider,
.homepage_first_section .main-slider .swiper-slide,
.homepage_first_section .main-slider .background,
.homepage_first_section .main-slider .background img {
    touch-action: pan-y;
}

.homepage_second_section {
    background-image: url(../images/complete_solution_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
}

.homepage_second_section .heading_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_2);
    text-align: center;
}

.homepage_second_section .content {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepage_second_section .content .desktop_img {
    display: block;
}

.homepage_second_section .content .mobile_img {
    display: none;
}

.homepage_third_section {
    padding: 100px 0;
    position: relative;
}

.homepage_third_section .content_part .title {
    display: inline-block;
    padding: 10px 20px;
    font-family: var(--poppins_medium);
    font-size: var(--fs_14);
    color: var(--text_color_4);
    text-transform: uppercase;
    background-image:
        linear-gradient(var(--bg_color_4), var(--bg_color_4)),
        linear-gradient(var(--bg_color_4), var(--bg_color_4)),
        linear-gradient(var(--bg_color_4), var(--bg_color_4)),
        linear-gradient(var(--bg_color_4), var(--bg_color_4)),
        linear-gradient(var(--bg_color_4), var(--bg_color_4)),
        linear-gradient(var(--bg_color_4), var(--bg_color_4)),
        linear-gradient(var(--bg_color_4), var(--bg_color_4)),
        linear-gradient(var(--bg_color_4), var(--bg_color_4));
    background-size:
        12px 3px, 3px 12px,
        12px 3px, 3px 12px,
        12px 3px, 3px 12px,
        12px 3px, 3px 12px;
    background-position:
        left top, left top,
        right top, right top,
        left bottom, left bottom,
        right bottom, right bottom;
    background-repeat: no-repeat;
}

.homepage_third_section .content_part .sub_title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_3);
}

.homepage_third_section .content_part .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    border-bottom: 1px solid #E4E1E0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.homepage_third_section .content_part .detail_number_part {
    background-color: var(--text_color_7);
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.homepage_third_section .content_part .detail_number_part .row {
    width: 100%;
}

.homepage_third_section .content_part .detail_number_part .part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 2px solid #E4E1E0;
    padding: 0 15px;
    height: 100%;
    margin: 0;
}

.homepage_third_section .content_part .detail_number_part .row>div {
    padding: 0;
}

.homepage_third_section .content_part .detail_number_part .row>div:last-child .part {
    border-right: none;
    padding-right: 0;
}

.homepage_third_section .content_part .detail_number_part .part .num {
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_4);
    margin-bottom: 0;
}

.homepage_third_section .content_part .detail_number_part .part .text {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.homepage_third_section .content_part .know_more_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
    text-decoration: none;
    margin-top: 25px;
    width: fit-content;
}

.homepage_third_section .aboutlogo {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 220px;
    pointer-events: none;
}

.homepage_fourth_section {
    padding: 50px 0;
    position: relative;
}

.homepage_fourth_section .top_part {
    margin-bottom: 30px;
}

.homepage_fourth_section .top_part .left_side_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
}

.homepage_fourth_section .top_part .left_side_part .title span {
    color: var(--text_color_4);
}

.homepage_fourth_section .top_part .right_side_part {
    display: flex;
    justify-content: end;
}

.homepage_fourth_section .top_part .right_side_part p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.homepage_fourth_section .slider_part {
    position: relative;
}

.homepage_fourth_section .slider_part .item {
    cursor: pointer;
    text-decoration: none;
}

.homepage_fourth_section .slider_part .item .product_card .image_box {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 450px;
    /* height: 450px; */
    /* padding: 25px; */
    /* background: linear-gradient(180deg, rgba(213, 219, 255, 0.2) 0%, rgba(56, 21, 9, 0.14) 100%); */
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.homepage_fourth_section .slider_part .item .product_card .image_box .product {
    /* max-height: 350px; */
    object-fit: contain;
    transition: transform 0.5s ease;
}

.homepage_fourth_section .slider_part .item .product_card .image_box:hover .product {
    transform: scale(1.1);
}

.homepage_fourth_section .slider_part .item .product_card .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_22);
    color: var(--text_color_9);
    margin-top: 15px;
    text-align: center;
}

.homepage_fourth_section .slider_part .slider_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
}

.homepage_fourth_section .slider_part .prev_btn {
    left: -25px;
}

.homepage_fourth_section .slider_part .next_btn {
    right: -25px;
}

.homepage_fifth_section {
    background-color: var(--bg_color_6);
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.homepage_fifth_section .industries-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.homepage_fifth_section .industries-wrapper .industries-left {
    background-color: var(--text_color_6);
    border-radius: 4px;
    padding: 100px 220px 100px 300px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.homepage_fifth_section .industries-wrapper .industries-left .industries-content {
    max-width: 440px;
}

.homepage_fifth_section .industries-wrapper .industries-left .industries-content .title {
    color: var(--text_color_2);
    font-size: var(--fs_42);
    font-family: var(--poppins_semibold);
}

.homepage_fifth_section .industries-wrapper .industries-left .industries-content .title span {
    color: var(--text_color_4);
}

.homepage_fifth_section .industries-wrapper .industries-left .industries-content p {
    color: var(--text_color_2);
    font-family: var(--poppins_regular);
    font-size: var(--fs_20);
    letter-spacing: 2%;
}

.homepage_fifth_section .industries-wrapper .industries-left .industries-content .custom-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.homepage_fifth_section .industries-wrapper .industries-left .industries-content .custom-nav img {
    cursor: pointer;
}

.homepage_fifth_section .industries-wrapper .industries-right {
    width: calc(100% - 550px);
    margin-left: -80px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-right: 300px;
}

.homepage_fifth_section .industries-wrapper .industries-right .industries-carousel {
    width: 100%;
}

.homepage_fifth_section .industries-wrapper .industries-right .industries-carousel .owl-stage-outer {
    overflow: hidden !important;
}

.homepage_fifth_section .industries-wrapper .industries-right .industries-carousel .owl-stage {
    display: flex;
}

.homepage_fifth_section .industries-wrapper .industries-right .industries-carousel .owl-item {
    flex-shrink: 0;
}

.homepage_fifth_section .industries-wrapper .industries-right .industries-carousel .item {
    width: 100%;
    cursor: pointer;
}

.homepage_fifth_section .industries-wrapper .industries-right .industry-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

.homepage_fifth_section .industries-wrapper .industries-right .industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage_fifth_section .industries-wrapper .industries-right .industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.02) 100%);
    z-index: 1;
}

.homepage_fifth_section .industries-wrapper .industries-right .industry-title {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: var(--text_color_2);
    font-family: var(--poppins_regular);
    font-size: var(--fs_20);
    z-index: 2;
}

.homepage_fifth_section .industries-wrapper .industries-right .industries-carousel.owl-theme .owl-nav,
.homepage_fifth_section .industries-wrapper .industries-right .industries-carousel.owl-theme .owl-dots {
    display: none;
}

.homepage_seventh_section {
    padding: 100px 0;
    background: linear-gradient(90deg, #F6F7FE 0%, #FFFFFF 100%);
}

.homepage_seventh_section .top_part {
    margin-bottom: 30px;
}

.homepage_seventh_section .top_part .left_side_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
}

.homepage_seventh_section .top_part .left_side_part .title span {
    color: var(--text_color_4);
}

.homepage_seventh_section .top_part .right_side_part {
    display: flex;
    justify-content: end;
}

.homepage_seventh_section .top_part .right_side_part p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

/* .homepage_seventh_section .bottom_part .left_side_part {
    max-height: 470px;
    overflow-y: auto;
} */

.homepage_seventh_section .bottom_part .left_side_part::-webkit-scrollbar {
    display: none;
}

.homepage_seventh_section .bottom_part .left_side_part .content .info {
    background-color: var(--bg_color_2);
    border-radius: 4px;
    border: 1px solid #E4E1E0;
    padding: 20px;
    margin-bottom: 20px;
}

.homepage_seventh_section .bottom_part .left_side_part .content .info img {
    margin-bottom: 8px;
}

.homepage_seventh_section .bottom_part .left_side_part .content .info .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_9);
    margin-bottom: 5px;
}

.homepage_seventh_section .bottom_part .left_side_part .content .info .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.homepage_seventh_section .bottom_part .right_main_part {
    position: sticky;
    top: 0;
}

.homepage_seventh_section .bottom_part .right_side_part {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}

.homepage_nineth_section {
    padding: 70px 0;
    background-image: url(../images/start_project_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.homepage_nineth_section .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_52);
    color: var(--text_color_2);
    margin-bottom: 0;
    text-align: center;
}

.homepage_nineth_section .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_2);
    margin-bottom: 0;
    text-align: center;
}

.homepage_nineth_section .request_quote_btn_part {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.homepage_nineth_section .request_quote_btn_part .request_quote_btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    border-radius: 6px;
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_2);
    letter-spacing: 3%;
    text-decoration: none;
    width: fit-content;
}

footer {
    background-color: #151515;
    padding: 70px 0 40px 0;
    position: relative;
}

footer .Ellipse,
footer .footer_corner_icon {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

footer .first .desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-top: 20px;
    margin-bottom: 20px;
}

footer .first .data {
    font-family: var(--poppins_medium);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .first .data a {
    display: inline-flex;
    text-decoration: none;
    color: var(--text_color_2);
    transition: color 0.3s ease;
}

footer .first .data svg {
    min-height: 17px;
    min-width: 17px;
    max-height: 17px;
    max-width: 17px;
    color: var(--text_color_4);
    margin-right: 5px;
}

footer .first .data:hover {
    color: var(--bg_color_4) !important;
}

footer .first .data a:hover {
    color: var(--bg_color_4);
}

footer .second .title_part,
footer .third .title_part,
footer .fourth .title_part {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 10%;
}

footer .second .title_part .title,
footer .third .title_part .title,
footer .fourth .title_part .title {
    color: var(--bg_color_4);
    font-family: var(--inter_semibold);
    font-size: var(--fs_15);
    line-height: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

footer .second .title_part .title img,
footer .third .title_part .title img,
footer .fourth .title_part .title img {
    margin-right: 8px;
}

footer .second p,
footer .third p,
footer .fourth p {
    margin-bottom: 8px;
}

footer .second .links a,
footer .third .links a,
footer .fourth .links a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    font-family: var(--poppins_medium);
    color: var(--text_color_2);
    font-size: var(--fs_16);
    cursor: pointer;
    transition: color 0.3s ease;
}

footer .second .links a:hover,
footer .third .links a:hover,
footer .fourth .links a:hover {
    color: var(--bg_color_4) !important;
}

footer .footer_bottom_part {
    border-top: 1px dashed var(--bg_color_2);
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}

footer .footer_bottom_part .left_side_part p {
    color: var(--text_color_2);
    font-size: var(--fs_16);
    font-family: var(--poppins_medium);
    margin-bottom: 0;
}

footer .footer_bottom_part .left_side_part p a {
    color: var(--text_color_4);
    text-decoration: none;
}

footer .footer_bottom_part .right_side_part {
    display: flex;
    gap: 10px;
}

footer .footer_bottom_part .right_side_part i {
    color: var(--text_color_2);
    font-size: var(--fs_18);
}

.aboutus_first_section {
    padding: 100px 0 0 0;
}

.aboutus_first_section .info .heading {
    display: flex;
}

.aboutus_first_section .info .heading .blue {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
}

.aboutus_first_section .info .heading .red {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_4);
}

.aboutus_first_section .info p {
    color: var(--text_color_8);
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
}

.aboutus_second_section {
    padding: 10px 0 60px 0;
    background: linear-gradient(to bottom,
            var(--bg_color_2) 50%,
            var(--bg_color_6) 50%);
}

.aboutus_second_section .image_part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutus_second_section .image_part img {
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.aboutus_third_section {
    background-color: var(--bg_color_6);
    padding: 0 0 100px 0;
}

.aboutus_third_section .content p {
    font-family: var(--poppins_medium);
    color: var(--text_color_2);
    font-size: var(--fs_20);
}

.aboutus_third_section .number_data {
    margin-top: 60px;
}

.aboutus_third_section .number_data .card {
    border: none;
    border-radius: 0;
    padding: 20px 10px;
    background-color: var(--text_color_6);
}

.aboutus_third_section .number_data .card .number {
    margin-bottom: 0;
    color: var(--text_color_4);
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    text-align: center;
}

.aboutus_third_section .number_data .card .text {
    margin-bottom: 0;
    color: var(--text_color_2);
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    text-align: center;
}

.aboutus_fourth_section {
    padding: 50px 0;
}

.aboutus_fourth_section .left_part .heading .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
    margin-bottom: 20px;
}

.aboutus_fourth_section .left_part .heading .title span {
    color: var(--text_color_4);
}

.aboutus_fourth_section .left_part p {
    margin-bottom: 0;
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
}

.aboutus_fifth_section {
    padding: 50px 0;
}

.aboutus_fifth_section .top_part .left_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
}

.aboutus_fifth_section .top_part .left_part .title span {
    color: var(--text_color_4);
}

.aboutus_fifth_section .top_part .right_part p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.aboutus_fifth_section .bottom_part {
    margin-top: 40px;
}

.aboutus_fifth_section .bottom_part .left_part img {
    border-radius: 4px;
}

.aboutus_fifth_section .bottom_part .right_part .accordion-button {
    font-family: var(--poppins_medium);
    color: var(--text_color_9);
    font-size: var(--fs_20);
    padding-left: 0;
}

.aboutus_fifth_section .bottom_part .right_part .accordion-body p {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.aboutus_fifth_section .bottom_part .right_part .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.aboutus_fifth_section .bottom_part .right_part .accordion-button::after {
    display: none;
}

.aboutus_fifth_section .bottom_part .right_part .accordion-button:focus {
    box-shadow: none;
}

.aboutus_fifth_section .bottom_part .right_part .accordion-item {
    border-top: none;
    border-left: none;
    border-right: none;
}

.aboutus_fifth_section .bottom_part .right_part .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0;
}

.aboutus_fifth_section .bottom_part .right_part .accordion-body {
    padding-left: 0;
}

.aboutus_sixth_section {
    padding: 50px 0;
    background-color: var(--bg_color_7);
}

.aboutus_sixth_section .top_part .left_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
}

.aboutus_sixth_section .top_part .left_part .title span {
    color: var(--text_color_4);
}

.aboutus_sixth_section .top_part .right_part p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.aboutus_sixth_section .bottom_part {
    margin-top: 40px;
}

.aboutus_sixth_section .bottom_part .card {
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 20px;
    height: 100%;
    border-right: 1px solid #d6d6d6;
}

.aboutus_sixth_section .bottom_part .row>div:last-child .card {
    border-right: none;
}

.aboutus_sixth_section .bottom_part .card img {
    height: 50px;
    width: 50px;
}

.aboutus_sixth_section .bottom_part .card .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_9);
    margin: 15px 0 10px 0;
}

.aboutus_sixth_section .bottom_part .card .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.aboutus_seventh_section {
    padding: 50px 0;
}

.aboutus_seventh_section .left_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
    margin-bottom: 20px;
}

.aboutus_seventh_section .left_part .title span {
    color: var(--text_color_4);
}

.aboutus_seventh_section .left_part p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_9);
    margin-bottom: 0;
}

.aboutus_seventh_section .right_part {
    display: flex;
    justify-content: end;
    align-items: center;
}

.aboutus_eighth_section {
    padding: 50px 0;
}

.aboutus_eighth_section .heading .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
    text-align: center;
}

.aboutus_eighth_section .heading .title span {
    color: var(--text_color_4);
}

.aboutus_eighth_section .card_part {
    margin-top: 40px;
}

.aboutus_eighth_section .card_part .card {
    background-color: var(--bg_color_7);
    border: none;
    padding: 40px 20px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.aboutus_eighth_section .card_part .card img {
    height: 50px;
    width: 50px;
}

.aboutus_eighth_section .card_part .card .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_22);
    color: var(--text_color_3);
    margin-top: 20px;
    margin-bottom: 0;
}

.homepage_eighth_section {
    padding: 80px 0;
}

.homepage_eighth_section .heading .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
    text-align: center;
}

.homepage_eighth_section .heading .title span {
    color: var(--text_color_4);
}

.homepage_eighth_section .card_part {
    margin-top: 40px;
}

.homepage_eighth_section .card_part .card {
    border: 1px solid #dbe0fe;
    background-color: #F6F7FE;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    height: 100%;
}

.homepage_eighth_section .card_part .card:hover {
    border: 1px solid var(--bg_color_4);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.homepage_eighth_section .card_part .card .image_wrapper img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.homepage_eighth_section .card_part .card .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_22);
    color: var(--text_color_9);
    margin-top: 20px;
}

.homepage_eighth_section .card_part .card .date {
    font-family: var(--poppins_regular);
    color: var(--text_color_4);
    font-size: var(--fs_16);
    margin-bottom: 0;
}

.solution_first_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 140px;
    background-color: var(--bg_color_6);
}

.solution_first_section .content {
    max-width: 700px;
}

.solution_first_section .content .title {
    font-family: var(--poppins_semibold);
    color: var(--text_color_2);
    font-size: var(--fs_42);
}

.solution_first_section .content .titlered {
    font-family: var(--poppins_semibold);
    color: var(--text_color_4);
    font-size: var(--fs_42);
}

.solution_first_section .content .titlered span {
    font-family: var(--poppins_semibold);
}

.solution_first_section .content .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_2);
}

.solution_first_section #typingText::after {
    content: "|";
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.solution_second_section {
    padding: 50px 0;
}

.solution_second_section .container {
    background-image: url(../images/solutionbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 50px;
    text-align: center;
    border-radius: 4px;
}

.solution_second_section .title {
    color: var(--text_color_2);
    font-family: var(--poppins_medium);
    font-size: var(--fs_34);
    margin-bottom: 15px;
}

.solution_second_section .desc,
.solution_second_section .desc p,
.solution_second_section .desc span {
    font-family: var(--poppins_medium) !important;
    font-size: var(--fs_20) !important;
    color: var(--text_color_2) !important;
    margin-bottom: 0 !important;
}

.solution_third_section {
    padding: 50px 0;
}

.solution_third_section .heading_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
    margin-bottom: 40px;
}

.solution_third_section .heading_part .title span {
    color: var(--text_color_4);
    font-family: var(--poppins_semibold);
}

.solution_third_section .divider {
    border-top: 1px dashed #cdcdcd;
}

.solution_third_section .image_part {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
}

.solution_third_section .row>div:first-child .image_part {
    margin-top: 0;
}

.solution_third_section .content_part .title {
    font-family: var(--poppins_semibold);
    /* font-size: var(--fs_42); */
    font-size: var(--fs_24);
    color: var(--text_color_9);
}

.solution_third_section .content_part .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_18);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.industry_first_section {
    padding: 100px 0 0 0;
}

.industry_first_section .content {
    max-width: 700px;
}

.industry_first_section .content .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_52);
    color: var(--text_color_9);
}

.industry_first_section .content .title span {
    color: var(--text_color_4);
}

.industry_first_section .content .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_9);
    margin-bottom: 0;
}

.industry_second_section {
    padding: 50px 0;
}

.industry_second_section .card {
    margin-bottom: 25px;
}

.industry_second_section .blue_card {
    background-color: var(--text_color_3);
    border: none;
    overflow: hidden;
}

.industry_second_section .blue_card .info {
    padding: 30px;
}

.industry_second_section .blue_card .info .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_2);
    margin-bottom: 15px;
}

.industry_second_section .blue_card .info .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
    letter-spacing: 2%;
}

.industry_second_section .blue_card .image_wrapper .industry_img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.industry_second_section .white_card {
    background-color: var(--bg_color_2);
    border: 1px solid var(--bg_color_5);
    overflow: hidden;
}

.industry_second_section .white_card .info {
    padding: 30px;
}

.industry_second_section .white_card .info .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_9);
    margin-bottom: 15px;
}

.industry_second_section .white_card .info .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    margin-bottom: 0;
    letter-spacing: 2%;
}

.industry_second_section .white_card .image_wrapper .industry_img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.industry_second_section .orange_card {
    background-color: var(--bg_color_4);
    border: 1px solid var(--bg_color_5);
    overflow: hidden;
}

.industry_second_section .orange_card .info {
    padding: 30px;
}

.industry_second_section .orange_card .info .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_2);
    margin-bottom: 15px;
}

.industry_second_section .orange_card .info .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
    letter-spacing: 2%;
}

.industry_second_section .orange_card .image_wrapper .industry_img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.industry_second_section .first_col {
    margin-top: 250px;
}

.industry_second_section .third_col {
    margin-top: -140px;
}

.industry_third_section {
    padding: 50px 0;
}

.industry_third_section .top_part .left_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
}

.industry_third_section .top_part .left_part .title span {
    color: var(--text_color_4);
}

.industry_third_section .top_part .right_part p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.industry_third_section .bottom_part {
    margin-top: 40px;
}

.industry_third_section .bottom_part .card {
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 20px;
    height: 100%;
    border-right: 1px solid #d6d6d6;
}

.industry_third_section .bottom_part .row>div:nth-child(3) .card,
.industry_third_section .bottom_part .row>div:nth-child(5) .card {
    border-right: none;
}

.industry_third_section .bottom_part .card img {
    height: 50px;
    width: 50px;
}

.industry_third_section .bottom_part .card .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_9);
    margin: 15px 0 0 0;
}

.capabilities_first_section {
    padding: 100px 0 50px 0;
}

.capabilities_first_section .content {
    max-width: 700px;
}

.capabilities_first_section .content .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_52);
    color: var(--text_color_9);
    margin-bottom: 10px;
}

.capabilities_first_section .content .title span {
    color: var(--text_color_4);
}

.capabilities_first_section .content .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_9);
    margin-bottom: 0;
}

.capabilities_first_section .double_slider {
    display: flex;
    gap: 10px;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.capabilities_first_section .double_slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #FFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

.capabilities_first_section .double_slider::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #FFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

.capabilities_first_section .double_slider .slider_column {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.capabilities_first_section .double_slider .vertical_track {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.capabilities_first_section .double_slider .slider_column.up .vertical_track {
    animation: moveUp 18s linear infinite;
}

.capabilities_first_section .double_slider .slider_column.down .vertical_track {
    animation: moveDown 18s linear infinite;
}

.capabilities_first_section .double_slider img {
    width: 100%;
    height: 120px;
    border-radius: 5px;
    object-fit: cover;
    display: block;
}

@keyframes moveUp {
    0% {
        transform: translateY(0);
    }

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

@keyframes moveDown {
    0% {
        transform: translateY(-50%);
    }

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

.capabilities_second_section {
    padding: 50px 0;
}

.capabilities_second_section .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    border: 3px solid #F0F2FF;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.capabilities_second_section .left_side_part {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.capabilities_second_section .vertical_track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: verticalSlide 20s linear infinite;
}

.capabilities_second_section .vertical_track img {
    border-radius: 6px;
    height: 300px;
    object-fit: cover;
}

@keyframes verticalSlide {
    0% {
        transform: translateY(0);
    }

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

.capabilities_second_section .right_side_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
}

.capabilities_second_section .right_side_part .title {
    margin-bottom: 10px;
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_9);
}

.capabilities_second_section .right_side_part .desc {
    margin-bottom: 0;
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
}

.capabilities_fourth_section .info {
    border-radius: 4px;
    padding: 20px;
    background-color: var(--bg_color_7);
    border: 1px solid #D6D6D6;
}

.capabilities_fourth_section .info .left {
    border-right: 1px dashed #D6D6D6;
    padding-right: 30px;
}

.capabilities_fourth_section .info .right {
    padding-left: 30px;
}

.capabilities_fourth_section .info .left .title,
.capabilities_fourth_section .info .right .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_9);
    margin-bottom: 5px;
}

.capabilities_fourth_section .info .left .desc,
.capabilities_fourth_section .info .right .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.capabilities_third_section {
    padding: 50px 0;
}

.capabilities_third_section .casting_box {
    background-color: #140A3E;
    border-radius: 4px;
    padding: 70px 0 70px 100px;
    position: relative;
    overflow: hidden;
}

.capabilities_third_section .casting_box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.capabilities_third_section .section_heading {
    position: relative;
    z-index: 2;
    text-align: center;
}

.capabilities_third_section .section_heading .title {
    color: var(--text_color_2);
    font-size: var(--fs_42);
    font-family: var(--poppins_semibold);
    margin-bottom: 15px;
    line-height: 1.2;
}

.capabilities_third_section .section_heading p {
    color: var(--text_color_2);
    font-size: var(--fs_20);
    font-family: var(--poppins_regular);
    margin-bottom: 30px;
    line-height: 1.6;
}

.capabilities_third_section .castingSwiper {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
}

.capabilities_third_section .castingSwiper .swiper-slide {
    height: auto;
}

.capabilities_third_section .casting_card {
    text-align: center;
}

.capabilities_third_section .casting_card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.capabilities_third_section .casting_card p {
    margin: 12px 0 12px 0;
    color: var(--text_color_2);
    font-size: var(--fs_20);
    font-family: var(--poppins_medium);
    line-height: 1.4;
}

.capabilities_third_section .casting_navigation {
    position: absolute;
    right: 5%;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
}

.capabilities_third_section .casting-prev,
.capabilities_third_section .casting-next {
    position: static !important;
}

.capabilities_fifth_section {
    padding: 100px 0;
}

.capabilities_fifth_section .top_part .left_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
    margin-bottom: 0;
}

.capabilities_fifth_section .top_part .left_part .title span {
    color: var(--text_color_4);
}

.capabilities_fifth_section .top_part .right_part p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.capabilities_fifth_section .bottom_part .include_text {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
    margin-top: 20px;
}

.capabilities_fifth_section .bottom_part .material_part {
    margin-top: 50px;
}

.capabilities_fifth_section .bottom_part .material_part .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capabilities_fifth_section .bottom_part .material_part .menu li {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 30px 0;
    position: relative;
    border-bottom: 0.5px solid #D4D4D4;
    cursor: pointer;
}

.capabilities_fifth_section .bottom_part .material_part .menu li:hover .right {
    color: var(--text_color_4);
}

.capabilities_fifth_section .bottom_part .material_part .menu .right {
    text-align: left;
}

.capabilities_fifth_section .bottom_part .material_part .menu .right {
    font-size: var(--fs_32);
    color: var(--text_color_9);
    font-family: var(--poppins_regular);
}

.capabilities_fifth_section .bottom_part .material_part .menu .image {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 200px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    transform: translate3d(0, 0, 0) scale(1);
}

.capabilities_fifth_section .bottom_part .material_part .menu .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.capabilities_sixth_section {
    padding-bottom: 50px;
}

.product_first_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0;
    background-color: var(--bg_color_6);
}

.product_first_section .content .title {
    font-family: var(--poppins_semibold);
    color: var(--text_color_2);
    font-size: var(--fs_42);
    margin-bottom: 15px;
}

.product_first_section .content span {
    color: var(--text_color_4);
}

.product_first_section .content .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_2);
}

.product_second_section {
    padding: 100px 0 10px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--bg_color_2);
}

.product_second_section .filter_buttons_card_part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_second_section .filter_buttons_card {
    display: flex;
    overflow-x: auto;
    text-wrap-mode: nowrap;
    gap: 10px;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    padding: 10px;
    background-color: var(--bg_color_2);
    scrollbar-width: thin;
    scrollbar-color: #EF3F23 #EAEAEA;
    scroll-behavior: smooth;
}

.product_second_section .filter_buttons_card .btn {
    padding: 12px 20px;
    font-family: var(--poppins_medium);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product_second_section .filter_buttons_card .active {
    color: var(--text_color_2);
    background-color: var(--bg_color_4);
}

.product_second_section .product_item {
    transition: all 0.3s ease;
}

.product_second_section .product_item.hide {
    display: none;
}

.product_second_section .card_part {
    margin-top: 50px;
}

.product_second_section .card_part .card {
    border: none;
    overflow: hidden;
    border-radius: 5px;
}

.product_second_section .card_part .card .image_wrapper {
    height: 300px;
    width: 100%;
    border: 1px solid #EBEBEB;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.4s ease;
}

.product_second_section .card_part .card .image_wrapper:hover {
    border: 1px solid var(--bg_color_4);
}

.product_second_section .card_part .card .image_wrapper .productimg {
    height: 300px;
    width: 100%;
    object-fit: contain;
}

.product_second_section .card_part .card .pname {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_1);
    margin-bottom: 0;
    margin-top: 10px;
    text-align: center;
}

.request_quote_first_section {
    background-image: url(../images/contactbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.request_quote_first_section .heading_part .title {
    font-family: var(--poppins_semibold);
    font-style: italic;
    font-size: var(--fs_42);
    color: var(--text_color_1);
    text-align: center;
}

.request_quote_first_section .heading_part .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    margin-bottom: 0;
    text-align: center;
}

.request_quote_first_section .bottom_part {
    margin-top: 50px;
}

.request_quote_first_section .bottom_part .form_part {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #E4E1E0;
    border-radius: 8px;
    padding: 20px;
}

.request_quote_first_section .bottom_part .form_part .quote_form .form_group {
    margin-bottom: 12px;
}

.request_quote_first_section .bottom_part .form_part .quote_form .form_group input,
.request_quote_first_section .bottom_part .form_part .quote_form .form_group textarea,
.request_quote_first_section .bottom_part .form_part .quote_form .form_group label {
    width: 100%;
    border: 1px solid #E4E1E0;
    border-radius: 4px;
    /* background-color: transparent; */
    font-family: var(--poppins_regular);
    font-size: var(--fs_15);
    color: var(--text_color_8);
    outline: none;
    transition: 0.3s ease;
}

.request_quote_first_section .bottom_part .form_part .quote_form .form_group input,
.request_quote_first_section .bottom_part .form_part .quote_form .form_group label {
    height: 40px;
    padding: 0 14px;
    display: flex;
    align-items: center;
}

.request_quote_first_section .bottom_part .form_part .quote_form .form_group textarea {
    height: 110px;
    padding: 14px;
    resize: none;
}

.request_quote_first_section .bottom_part .form_part .quote_form .form_group input::placeholder,
.request_quote_first_section .bottom_part .form_part .quote_form .form_group textarea::placeholder {
    color: var(--text_color_8);
}

.request_quote_first_section .bottom_part .form_part .quote_form .form_group input:focus,
.request_quote_first_section .bottom_part .form_part .quote_form .form_group textarea:focus {
    border-color: var(--bg_color_4);
}

.request_quote_first_section .bottom_part .form_part .quote_form .file_note_line {
    border-top: 1px dashed #4f5f9a;
    margin: 10px 0 14px;
}

.request_quote_first_section .bottom_part .form_part .quote_form .file_upload_group {
    position: relative;
}

.request_quote_first_section .bottom_part .form_part .quote_form .file_upload_group input[type="file"] {
    display: none;
}

.request_quote_first_section .bottom_part .form_part .quote_form .file_upload_group label {
    cursor: pointer;
    color: var(--text_color_8);
}

.request_quote_first_section .bottom_part .form_part .quote_form .form_btn {
    margin-top: 20px;
}

.request_quote_first_section .bottom_part .form_part .quote_form .form_btn button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
    border: none;
}

.request_quote_first_section .bottom_part .details_part {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #E4E1E0;
    border-radius: 8px;
    overflow: hidden;
}

.request_quote_first_section .bottom_part .details_part .infom {
    padding: 20px 20px 0 20px;
}

.request_quote_first_section .bottom_part .details_part .infom .info {
    margin-bottom: 15px;
}

.request_quote_first_section .bottom_part .details_part .infom .info .title {
    font-family: var(--poppins_regular);
    font-size: var(--fs_15);
    color: var(--text_color_8);
    margin-bottom: 3px;
}

.request_quote_first_section .bottom_part .details_part .infom .info .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_15);
    color: var(--text_color_9);
    margin-bottom: 0;
}

.request_quote_first_section .bottom_part .details_part .infom .info .desc a {
    text-decoration: none;
    color: var(--text_color_9);
}

.request_quote_first_section .bottom_part .details_part .image_part {
    display: flex;
    justify-content: end;
}

.request_quote_first_section .bottom_part .map_part {
    padding: 0;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #E4E1E0;
    border-radius: 8px;
}

.request_quote_first_section .bottom_part .map_part iframe {
    height: 100%;
    width: 100%;
}

.career_first_section {
    background-color: var(--bg_color_8);
    padding: 50px 0;
}

.career_first_section .content .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_3);
    text-align: center;
    margin-bottom: 0;
}

.career_first_section .card_part {
    margin-top: 40px;
}

.career_first_section .card_part .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    gap: 12px;
    border: 1px solid #E4E1E0;
    border-radius: 10px;
    height: 100%;
}

.career_first_section .card_part .card .image_wrapper {
    width: 48px;
    height: 48px;
    background-color: var(--bg_color_4);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.career_first_section .card_part .card .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_9);
    margin-bottom: 0;
    text-align: center;
}

.career_second_section {
    padding: 50px 0;
}

.career_second_section .content .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
    text-align: center;
    margin-bottom: 30px;
}

.career_second_section .job_posts_list {
    margin-top: 10px;
}

.career_second_section .career_accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-bg: transparent;
}

.career_second_section .career_accordion_item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #E4E1E0;
    border-radius: 0 !important;
    padding: 26px 0;
}

.career_second_section .career_accordion_item:first-child {
    border-top: 1px solid #E4E1E0;
}

.career_second_section .career_accordion_btn {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.career_second_section .career_accordion_btn::after {
    order: 2;
    width: 35px;
    height: 35px;
    min-width: 35px;
    background-size: 15px;
    border: 1px solid #E4E1E0;
    border-radius: 50%;
    background-position: center;
    margin-left: 14px;
}

.career_second_section .career_accordion_btn:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.career_second_section .career_accordion_btn .job_left {
    flex: 1;
    text-align: left;
}

.career_second_section .career_accordion_btn .job_right {
    display: flex;
    align-items: center;
    order: 3;
}

.career_second_section .career_accordion_btn .job_title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_26);
    color: var(--text_color_9);
    margin-bottom: 8px;
    line-height: 1.3;
}

.career_second_section .career_accordion_btn .job_meta {
    margin-bottom: 0;
    font-family: var(--poppins_medium);
    font-size: var(--fs_18);
    color: var(--text_color_8);
    line-height: 1.8;
}

.career_second_section .career_accordion_btn .job_meta span {
    position: relative;
    display: inline-block;
    margin-right: 18px;
    padding-right: 18px;
}

.career_second_section .career_accordion_btn .job_meta span::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0;
    color: #8b8b8b;
}

.career_second_section .career_accordion_btn .job_meta span:last-child::after {
    display: none;
}

.career_second_section .career_accordion_btn .job_meta span:last-child {
    margin-right: 0;
    padding-right: 0;
}

.career_second_section .career_accordion_btn .apply_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
}

.career_second_section .career_accordion_body {
    padding: 18px 0 0 0;
}

.career_second_section .job_desc_box {
    border: 1px solid #E4E1E0;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px 30px;
    border-radius: 2px;
}

.career_second_section .job_desc_box .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_9);
    margin-bottom: 10px;
}

.career_second_section .job_desc_box ul {
    margin: 0 0 18px 0;
    padding-left: 14px;
}

.career_second_section .job_desc_box ul li {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    line-height: 1.6;
}

.career_second_section .job_desc_box ul:last-child {
    margin-bottom: 0;
}

.vendor_registration_first_section {
    background-color: var(--bg_color_8);
    padding: 50px 0;
}

.vendor_registration_first_section .vendor_form_box {
    background-color: var(--bg_color_2);
    padding: 34px 34px 22px;
    border: 1px solid #E4E1E0;
}

.vendor_registration_first_section .content {
    margin-bottom: 26px;
}

.vendor_registration_first_section .content .title {
    font-family: var(--poppins_regular);
    font-size: var(--fs_30);
    color: var(--text_color_3);
    margin-bottom: 8px;
}

.vendor_registration_first_section .content .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    margin-bottom: 0;
    line-height: 1.6;
}

.vendor_registration_first_section .form_section {
    margin-bottom: 18px;
}

.vendor_registration_first_section .section_title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--poppins_regular);
    font-size: var(--fs_20);
    color: var(--text_color_3);
    margin-bottom: 16px;
}

.vendor_registration_first_section .section_icon {
    color: var(--bg_color_4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vendor_registration_first_section .form_group {
    margin-bottom: 15px;
}

.vendor_registration_first_section .form_group label {
    display: block;
    font-family: var(--poppins_regular);
    font-size: var(--fs_14);
    color: var(--text_color_9);
    margin-bottom: 6px;
    line-height: 1.4;
}

.vendor_registration_first_section .form_group label span {
    color: var(--bg_color_4);
}

.vendor_registration_first_section .form_group input,
.vendor_registration_first_section .form_group select,
.vendor_registration_first_section .form_group textarea {
    width: 100%;
    height: 40px;
    border: 1px solid #E4E1E0;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 0 12px;
    background-color: var(--bg_color_2);
    font-family: var(--poppins_regular);
    font-size: var(--fs_14);
    color: var(--text_color_8);
    transition: 0.3s ease;
}

.vendor_registration_first_section .form_group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%23201C43' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.vendor_registration_first_section .form_group input::placeholder,
.vendor_registration_first_section .form_group textarea::placeholder {
    color: var(--text_color_8);
}

.vendor_registration_first_section .form_group input:focus,
.vendor_registration_first_section .form_group select:focus,
.vendor_registration_first_section .form_group textarea:focus {
    border-color: var(--bg_color_4);
}

.vendor_registration_first_section .upload_section_wrap {
    margin-top: 6px;
}

.vendor_registration_first_section .upload_block {
    margin-bottom: 12px;
}

.vendor_registration_first_section .upload_box {
    position: relative;
    height: 100%;
}

.vendor_registration_first_section .upload_box input[type="file"] {
    display: none;
}

.vendor_registration_first_section .upload_box label {
    min-height: 114px;
    border: 1px solid #E4E1E0;
    background-color: var(--bg_color_2);
    margin: 0;
    padding: 20px;
    width: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.vendor_registration_first_section .upload_box .upload_icon {
    color: var(--bg_color_4);
    line-height: 1;
    display: inline-flex;
}

.vendor_registration_first_section .upload_box .upload_icon i {
    font-size: var(--fs_20);
}

.vendor_registration_first_section .upload_box label span:last-child {
    font-family: var(--poppins_regular);
    font-size: var(--fs_14);
    color: var(--text_color_8);
    line-height: 1.5;
}

.vendor_registration_first_section .form_check_wrap {
    margin-top: 4px;
    margin-bottom: 18px;
}

.vendor_registration_first_section .custom_check {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: auto;
    padding-left: 0;
}

.vendor_registration_first_section .custom_check .form-check-input {
    width: 15px;
    height: 15px;
    margin: 0;
    border-radius: 2px;
    border: 1px solid #E4E1E0;
    box-shadow: none;
}

.vendor_registration_first_section .custom_check .form-check-input:checked {
    background-color: var(--bg_color_4);
    border-color: var(--bg_color_4);
}

.vendor_registration_first_section .custom_check .form-check-label {
    font-family: var(--poppins_regular);
    font-size: var(--fs_14);
    color: var(--text_color_8);
    line-height: 1.5;
    cursor: pointer;
}

.vendor_registration_first_section .form_btn_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.vendor_registration_first_section .form_btn_wrap .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
}

.vendor_registration_first_section .btn_submit_fill {
    background-color: var(--bg_color_4);
    color: var(--text_color_2);
    border: 1px solid var(--bg_color_4);
}

.vendor_registration_first_section .btn_submit_fill:hover {
    background-color: var(--bg_color_4);
    border-color: var(--bg_color_4);
    color: var(--text_color_2);
}

.vendor_registration_first_section .btn_submit_outline {
    background-color: transparent;
    color: var(--bg_color_4);
    border: 1px solid var(--bg_color_4);
}

.vendor_registration_first_section .btn_submit_outline:hover {
    background-color: var(--bg_color_4);
    color: var(--text_color_2);
}

.vendor_registration_second_section {
    padding: 70px 0;
}

.vendor_registration_second_section .card .top_part .left_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
    line-height: 1.4;
}

.vendor_registration_second_section .bottom_part .card {
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 20px;
    height: 100%;
    border-right: 1px solid #d6d6d6;
}

.vendor_registration_second_section .bottom_part .row>div:nth-child(3) .card,
.vendor_registration_second_section .bottom_part .row>div:nth-child(6) .card {
    border-right: none;
}

.vendor_registration_second_section .bottom_part .card img {
    height: 50px;
    width: 50px;
}

.vendor_registration_second_section .bottom_part .card .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_9);
    margin: 15px 0 0 0;
}

.vendor_registration_third_section {
    padding: 80px 0;
    background-image: url(../images/processbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.vendor_registration_third_section .content .title {
    font-size: var(--fs_42);
    font-family: var(--poppins_semibold);
    color: var(--text_color_3);
    text-align: center;
}

.vendor_registration_third_section .image_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.job_apply_modal .modal-content {
    border: none;
    border-radius: 0;
    background: transparent;
}

.job_apply_modal .modal-body {
    padding: 0;
    position: relative;
}

.job_apply_modal .job_apply_modal_content {
    background-color: var(--bg_color_2);
    padding: 25px;
    border: 1px solid #E4E1E0;
    position: relative;
}

.job_apply_modal .custom_close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    box-shadow: none;
    font-size: 12px;
}

.job_apply_modal .content {
    margin-bottom: 15px;
}

.job_apply_modal .content .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_24);
    color: var(--text_color_3);
    margin-bottom: 4px;
}

.job_apply_modal .content .desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_15);
    color: var(--text_color_8);
    margin-bottom: 0;
    line-height: 1.6;
}

.job_apply_modal .position_info_box {
    background-color: #F6F6F6;
    padding: 16px 18px;
    margin-bottom: 18px;
}

.job_apply_modal .position_info_box .position_title,
.job_apply_modal .position_info_box .position_meta {
    margin-bottom: 4px;
    font-family: var(--poppins_regular);
    font-size: var(--fs_14);
    color: var(--text_color_9);
    line-height: 1.5;
}

.job_apply_modal .position_info_box .position_meta:last-child {
    margin-bottom: 0;
}

.job_apply_modal .position_info_box .label_text {
    font-family: var(--poppins_medium);
    color: var(--text_color_1);
    font-size: var(--fs_15);
    margin-right: 4px;
}

.job_apply_modal .position_info_box .value_text {
    font-family: var(--poppins_regular);
    color: var(--text_color_9);
    font-size: var(--fs_15);
}

.job_apply_modal .job_apply_form .form_group {
    margin-bottom: 12px;
}

.job_apply_modal .job_apply_form .form_group label {
    display: block;
    font-family: var(--poppins_regular);
    font-size: var(--fs_14);
    color: var(--text_color_9);
    margin-bottom: 6px;
    line-height: 1.4;
}

.job_apply_modal .job_apply_form .form_group input,
.job_apply_modal .job_apply_form .form_group select,
.job_apply_modal .job_apply_form .form_group textarea {
    width: 100%;
    border: 1px solid #E4E1E0;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 0 12px;
    background-color: var(--bg_color_2);
    font-family: var(--poppins_regular);
    font-size: var(--fs_14);
    color: var(--text_color_8);
    transition: 0.3s ease;
}

.job_apply_modal .job_apply_form .form_group input,
.job_apply_modal .job_apply_form .form_group select {
    height: 40px;
}

.job_apply_modal .job_apply_form .form_group textarea {
    height: 90px;
    padding: 12px;
    resize: none;
}

.job_apply_modal .job_apply_form .form_group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%23201C43' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.job_apply_modal .job_apply_form .form_group input::placeholder,
.job_apply_modal .job_apply_form .form_group textarea::placeholder {
    color: var(--text_color_8);
}

.job_apply_modal .job_apply_form .form_group input:focus,
.job_apply_modal .job_apply_form .form_group select:focus,
.job_apply_modal .job_apply_form .form_group textarea:focus {
    border-color: var(--bg_color_4);
}

.job_apply_modal .form_check_wrap {
    margin-top: 4px;
    margin-bottom: 18px;
}

.job_apply_modal .custom_check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-height: auto;
    padding-left: 0;
}

.job_apply_modal .custom_check .form-check-input {
    width: 15px;
    height: 15px;
    margin: 3px 0 0 0;
    border-radius: 2px;
    border: 1px solid #d3d3d3;
    box-shadow: none;
    flex-shrink: 0;
}

.job_apply_modal .custom_check .form-check-input:checked {
    background-color: var(--bg_color_4);
    border-color: var(--bg_color_4);
}

.job_apply_modal .custom_check .form-check-label {
    font-family: var(--poppins_regular);
    font-size: var(--fs_14);
    color: var(--text_color_8);
    line-height: 1.5;
    cursor: pointer;
}

.job_apply_modal .form_btn_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.job_apply_modal .form_btn_wrap .btn_submit_fill {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
    border: none;
}

.blog_first_section {
    padding: 80px 0 0 0;
}

.blog_first_section .heading_part {
    margin-bottom: 32px;
}

.blog_first_section .featured_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border: 1px solid #E4E1E0;
    border-radius: 100px;
    background-color: var(--bg_color_2);
    color: var(--text_color_3);
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    line-height: 1;
    margin-bottom: 16px;
}

.blog_first_section .heading_part .title {
    margin: 0;
    color: var(--text_color_9);
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    line-height: 1.2;
}

.blog_first_section .content_part {
    background-color: #F5F5F5;
}

.blog_first_section .left_side_part,
.blog_first_section .right_side_part {
    height: 100%;
}

.blog_first_section .left_side_part {
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg_color_6);
}

.blog_first_section .left_side_part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.blog_first_section .right_side_part {
    border-radius: 12px;
    padding: 42px 42px 42px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog_first_section .right_side_part .blog_date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    justify-content: start;
    padding: 10px 16px;
    border: 1px solid #E4E1E0;
    border-radius: 100px;
    width: fit-content;
}

.blog_first_section .right_side_part .blog_date i {
    color: var(--text_color_4);
}

.blog_first_section .right_side_part .blog_date .date {
    color: var(--text_color_3);
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    line-height: 1.4;
}

.blog_first_section .right_side_part .calendar_icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog_first_section .right_side_part .blog_title {
    margin: 0 0 16px 0;
    color: var(--text_color_9);
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    line-height: 1.35;
    max-width: 520px;
}

.blog_first_section .right_side_part p {
    margin: 0 0 20px 0;
    color: var(--text_color_8);
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    line-height: 1.7;
}

.blog_first_section .right_side_part .read_article_btn {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
    text-decoration: none;
    width: fit-content;
}

.blog_second_section {
    padding: 70px 0 70px 0;
}

.blog_second_section .heading_part {
    margin-bottom: 30px;
}

.blog_second_section .heading_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
    margin: 0;
}

.blog_second_section .card_part .article_card {
    background-color: var(--bg_color_8);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.blog_second_section .card_part .article_card .image_wrapper {
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    margin: 15px 15px 5px 15px;
}

.blog_second_section .card_part .article_card .image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog_second_section .card_part .article_card .card_body {
    padding: 14px 14px 18px;
}

.blog_second_section .card_part .article_card .date_text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    line-height: 1.4;
    color: var(--text_color_3);
    margin-bottom: 10px;
}

.blog_second_section .card_part .article_card .calendar_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text_color_4);
    flex-shrink: 0;
}

.blog_second_section .card_part .article_card .article_title {
    font-family: var(--inter_semibold);
    font-size: var(--fs_16);
    line-height: 1.45;
    color: var(--text_color_9);
    margin: 0 0 10px;
    min-height: 46px;
}

.blog_second_section .card_part .article_card .article_desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_14);
    line-height: 1.5;
    color: var(--text_color_8);
    margin: 0 0 18px;
}

.blog_second_section .card_part .article_card .read_btn {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
    text-decoration: none;
    width: fit-content;
}

.blog_third_section {
    padding: 60px 0;
    background-image: url(../images/subscribebg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog_third_section .newsletter_box {
    text-align: center;
    margin: auto;
}

.blog_third_section .newsletter_box .newsletter_title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_9);
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog_third_section .newsletter_box .newsletter_desc {
    font-family: var(--poppins_regular);
    font-size: var(--fs_16);
    color: var(--text_color_8);
    margin-bottom: 25px;
}

.blog_third_section .newsletter_box .newsletter_form {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.blog_third_section .newsletter_box .newsletter_form input {
    width: 300px;
    height: 42px;
    border: 1px solid #E4E1E0;
    border-radius: 4px;
    padding: 0 14px;
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    outline: none;
}

.blog_third_section .newsletter_box .newsletter_form input::placeholder {
    color: var(--text_color_8);
    text-align: center;
}

.blog_third_section .newsletter_box .newsletter_form button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
    border: none;
}

.blogdetail_first_section {
    padding: 80px 0;
    background: var(--bg_color_7);
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left {
    background: var(--bg_color_2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_main_image {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_main_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 30px 10px 30px;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_meta .meta_item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_4);
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_content {
    padding: 0 30px 30px 30px;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_40);
    line-height: 1.25;
    color: var(--text_color_6);
    margin-bottom: 15px;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_content p {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.6;
    color: var(--text_color_8);
    margin-bottom: 10px;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_content .subtitle {
    font-family: var(--poppins_medium);
    font-size: var(--fs_26);
    line-height: 1.25;
    color: var(--text_color_6);
    margin: 30px 15px 15px 0;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_content ul {
    padding-left: 20px;
    margin: 0 0 20px;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_content ul li {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.9;
    color: var(--text_color_8);
    margin-bottom: 8px;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_content blockquote {
    margin: 26px 0;
    padding: 24px 24px 24px 28px;
    background: var(--bg_color_8);
    border-left: 4px solid var(--bg_color_4);
    border-radius: 8px;
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    line-height: 1.6;
    color: var(--text_color_6);
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_inner_image {
    width: 100%;
    height: 330px;
    border-radius: 10px;
    overflow: hidden;
    margin: 28px 0;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_left .blogdetail_inner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blogdetail_first_section .blogdetail_wrapper .blogdetail_right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blogdetail_first_section .blogdetail_wrapper .sidebar_box {
    background: var(--bg_color_2);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.blogdetail_first_section .blogdetail_wrapper .sidebar_title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_22);
    color: var(--text_color_6);
    margin-bottom: 10px;
}

.blogdetail_first_section .blogdetail_wrapper .search_form {
    display: flex;
    gap: 10px;
}

.blogdetail_first_section .blogdetail_wrapper .search_form input {
    width: 100%;
    border: 1px solid #E4E1E0;
    border-radius: 6px;
    padding: 0 14px;
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    outline: none;
}

.blogdetail_first_section .blogdetail_wrapper .search_form button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
    border: none;
}

.blogdetail_first_section .blogdetail_wrapper .recent_post_item {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    margin-top: 16px;
    border-bottom: 1px solid #E4E1E0;
}

.blogdetail_first_section .blogdetail_wrapper .recent_post_item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.blogdetail_first_section .blogdetail_wrapper .recent_post_img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.blogdetail_first_section .blogdetail_wrapper .recent_post_img img {
    width: 100%;
    height: 100%;
    max-height: 120px;
    object-fit: cover;
}

.blogdetail_first_section .blogdetail_wrapper .recent_post_content span {
    display: block;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_4);
    margin-bottom: 5px;
}

.blogdetail_first_section .blogdetail_wrapper .recent_post_content a {
    font-family: var(--poppins_medium);
    font-size: var(--fs_15);
    line-height: 1;
    color: var(--text_color_6);
    text-decoration: none;
}

.blogdetail_first_section .blogdetail_wrapper .sidebar_cta {
    background-color: var(--text_color_3);
}

.blogdetail_first_section .blogdetail_wrapper .sidebar_cta .expert_title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_24);
    line-height: 1.4;
    color: var(--text_color_2);
    margin-bottom: 12px;
}

.blogdetail_first_section .blogdetail_wrapper .sidebar_cta p {
    font-family: var(--inter_regular);
    font-size: var(--fs_15);
    line-height: 1.8;
    color: var(--text_color_2);
    margin-bottom: 15px;
}

.blogdetail_first_section .blogdetail_wrapper .sidebar_cta_btn {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 9px 18px;
    background-color: var(--bg_color_4);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    letter-spacing: 3%;
    text-decoration: none;
    width: fit-content;
}

.homepage_sixth_section {
    padding: 100px 0 0 0;
    position: relative;
    overflow: visible;
}

.homepage_sixth_section .top_part {
    margin-bottom: 30px;
}

.homepage_sixth_section .top_part .left_side_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
}

.homepage_sixth_section .top_part .left_side_part .title span {
    color: var(--text_color_4);
}

.homepage_sixth_section .top_part .right_side_part {
    display: flex;
    justify-content: end;
}

.homepage_sixth_section .top_part .right_side_part p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.homepage_sixth_section .process-pin-wrap {
    position: relative;
    overflow: visible;
}

.homepage_sixth_section .process-pin-wrap .process-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -130px 0 -70px 0;
}

.homepage_sixth_section .process-pin-wrap .process-sticky .wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.homepage_sixth_section .process-pin-wrap .timeline-wrap {
    position: relative;
    height: 220px;
    margin-bottom: 34px;
}

.homepage_sixth_section .process-pin-wrap .center-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 3px;
    height: 200px;
    background: #E4E1E0;
    z-index: 10;
    pointer-events: none;
}

.homepage_sixth_section .process-pin-wrap .center-line::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #E4E1E0;
}

.homepage_sixth_section .process-pin-wrap .steps-viewport {
    position: absolute;
    left: 0;
    right: 0;
    top: 96px;
    height: 70px;
    z-index: 2;
    overflow: hidden;
}

.homepage_sixth_section .process-pin-wrap .steps-track {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.homepage_sixth_section .process-pin-wrap .step {
    position: relative;
    width: fit-content;
    min-width: 270px;
    height: 55px;
    background-color: var(--bg_color_3);
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.homepage_sixth_section .process-pin-wrap .step-base,
.homepage_sixth_section .process-pin-wrap .step-fill {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: var(--fs_18);
    white-space: nowrap;
}

.homepage_sixth_section .process-pin-wrap .step-base {
    justify-content: center;
    background-color: var(--bg_color_3);
    color: var(--text_color_3);
    z-index: 1;
    padding: 0 20px;
    font-family: var(--poppins_regular);
    font-size: var(--fs_20);
    letter-spacing: 3%;
}

.homepage_sixth_section .process-pin-wrap .step-fill {
    width: 0;
    overflow: hidden;
    background-color: var(--bg_color_4);
    color: var(--text_color_2);
    z-index: 2;
    font-family: var(--poppins_regular);
    font-size: var(--fs_20);
    letter-spacing: 3%;
}

.homepage_sixth_section .process-pin-wrap .step-fill .inner-fill {
    width: fit-content;
    min-width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    white-space: nowrap;
}

.homepage_sixth_section .process-pin-wrap .arrow {
    font-size: var(--fs_18);
    line-height: 1;
}

.homepage_sixth_section .process-pin-wrap .content-card {
    min-height: 280px;
    background-image: url(../images/process_bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #E4E1E0;
    padding: 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-radius: 4px;
}

.homepage_sixth_section .process-pin-wrap .card-text {
    max-width: 650px;
}

.homepage_sixth_section .process-pin-wrap .card-text #cardTitle {
    font-size: var(--fs_32);
    line-height: 1.1;
    color: var(--text_color_9);
    font-family: var(--poppins_medium);
    margin-bottom: 18px;
}

.homepage_sixth_section .process-pin-wrap .card-text p {
    font-size: var(--fs_20);
    font-family: var(--poppins_medium);
    line-height: 1.6;
    color: var(--text_color_8);
    margin-bottom: 0;
}

.homepage_sixth_section .process-pin-wrap .card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.reveal_words {
    overflow: hidden;
}

.reveal_words .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity, filter;
    font-style: normal;
}

.reveal_words.active .word {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.solution_fourth_section {
    position: relative;
    padding: 50px 0;
}

.solution_fourth_section .title_part {
    margin-bottom: 40px;
}

.solution_fourth_section .title_part .title {
    font-size: var(--fs_42);
    font-family: var(--poppins_semibold);
    color: var(--text_color_3);
}

.solution_fourth_section .title_part .title span {
    color: var(--text_color_4);
}

.solution_fourth_section .info {
    background-color: var(--bg_color_7);
    border: 1px solid #E4E1E0;
    padding: 20px 15px;
    margin-bottom: 15px;
}

.solution_fourth_section .info p {
    margin-bottom: 0;
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_1);
}

.solution_fourth_section .image_part img {
    right: 0;
    top: 0;
    position: absolute;
}

.solution_fifth_section {
    padding: 80px 0;
    /* background-image: url(../images/processbg.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.solution_fifth_section .content .title {
    font-size: var(--fs_42);
    font-family: var(--poppins_semibold);
    color: var(--text_color_3);
}

.solution_fifth_section .content .title span {
    color: var(--text_color_4);
}

.solution_fifth_section .image_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.solution_sixth_section {
    padding: 50px 0;
    position: relative;
}

.solution_sixth_section .top_part {
    margin-bottom: 30px;
}

.solution_sixth_section .top_part .left_side_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_42);
    color: var(--text_color_3);
}

.solution_sixth_section .top_part .left_side_part .title span {
    color: var(--text_color_4);
}

.solution_sixth_section .top_part .right_side_part {
    display: flex;
    justify-content: end;
}

.solution_sixth_section .top_part .right_side_part p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.manufacturing_third_section {
    padding: 80px 0 50px 0;
}

.manufacturing_third_section .right_side_part p {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_9);
}

.manufacturing_fourth_section {
    padding: 50px 0;
}

.manufacturing_fourth_section .heading_part .title {
    font-family: var(--poppins_semibold);
    font-size: var(--fs_34);
    color: var(--text_color_3);
}

.manufacturing_fourth_section .table_wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    background: var(--bg_color_2);
    margin-top: 40px;
}

.manufacturing_fourth_section .table_wrapper .casting_table {
    width: 100%;
    border-collapse: collapse;
}

.manufacturing_fourth_section .table_wrapper .casting_table th,
.manufacturing_fourth_section .table_wrapper .casting_table td {
    border: 1px solid #E4E1E0;
    padding: 14px 12px;
    font-size: var(--fs_16);
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    color: var(--text_color_9);
    font-family: var(--poppins_regular);
}

.manufacturing_fourth_section .table_wrapper .casting_table th {
    background-color: #FFEBE5;
    text-align: left;
}

.manufacturing_fourth_section .table_wrapper .casting_table th:first-child,
.manufacturing_fourth_section .table_wrapper .casting_table td:first-child {
    text-align: left;
}

.manufacturing_fourth_section .table_wrapper .casting_table th:not(:first-child),
.manufacturing_fourth_section .table_wrapper .casting_table td:not(:first-child) {
    min-width: 90px;
}

.manufacturing_fourth_section .table_wrapper .casting_table .check {
    color: var(--bg_color_4);
    font-size: var(--fs_18);
    display: inline-block;
    line-height: 1;
}
















table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    background: var(--bg_color_2);
}

table th,
table td {
    border: 1px solid #E4E1E0;
    padding: 14px 12px;
    font-size: var(--fs_16);
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    color: var(--text_color_9);
    font-family: var(--poppins_regular);
}

table th {
    background-color: #FFEBE5;
    text-align: left;
}

table th:first-child,
table td:first-child {
    text-align: left;
}

table th:not(:first-child),
table td:not(:first-child) {
    min-width: 90px;
}

table .check {
    color: var(--bg_color_4);
    font-size: var(--fs_18);
    display: inline-block;
    line-height: 1;
}

.manufacturing_fifth_section .container {
    border-radius: 4px;
    padding: 20px;
    background-color: var(--bg_color_7);
    border: 1px solid #E4E1E0;
    margin-top: 50px;
    margin-bottom: 50px;
}

.manufacturing_fifth_section .info .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_9);
    margin-bottom: 5px;
}

.manufacturing_fifth_section .info .subtitle {
    font-family: var(--poppins_medium);
    color: var(--text_color_4);
    font-size: var(--fs_20);
    margin: 15px 0 0 0;
}

.manufacturing_fifth_section .info p,
.manufacturing_fifth_section .info ul,
.manufacturing_fifth_section .info ul li {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.manufacturing_fifth_section .image_wrapper {
    margin: 20px 0;
}

.manufacturing_fifth_section .image_wrapper img {
    max-height: 400px;
    object-fit: contain;
}

.manufacturing_application_section {
    padding: 50px 0;
}

.manufacturing_application_section .container {
    background-color: var(--bg_color_7);
    border: 1px solid #E4E1E0;
    padding: 30px 20px;
}

.manufacturing_application_section .heading_part .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_9);
    margin-bottom: 5px;
}

.manufacturing_application_section .heading_part .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.manufacturing_application_section .card_part {
    margin-top: 30px;
}

.manufacturing_application_section .card_part .card {
    border: none;
    overflow: hidden;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
}

.manufacturing_application_section .card_part .card .image_wrapper {
    height: auto;
    width: 100%;
    background-color: var(--bg_color_2);
    border: 1px solid #EBEBEB;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.4s ease;
}

.manufacturing_application_section .card_part .card .image_wrapper .productimg {
    height: auto;
    min-height: 400px;
    width: 100%;
    object-fit: cover;
}

.manufacturing_application_section .card_part .card .pname {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_3);
    margin-bottom: 0;
    margin-top: 10px;
}

.manufacturing_application_section .card_part {
    position: relative;
}

.manufacturing_application_section .owl-prev-btn,
.manufacturing_application_section .owl-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: 1px solid #E4E1E0;
    background-color: var(--bg_color_2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.manufacturing_application_section .owl-prev-btn {
    left: -10px;
}

.manufacturing_application_section .owl-next-btn {
    right: -10px;
}

.manufacturing_application_section .owl-prev-btn svg,
.manufacturing_application_section .owl-next-btn svg {
    height: 30px;
    width: 30px;
    color: var(--text_color_3);
}

.manufacturing_application_section .owl-prev-btn:hover,
.manufacturing_application_section .owl-next-btn:hover {
    background-color: var(--text_color_3);
    border-color: var(--text_color_3);
}

.manufacturing_application_section .owl-prev-btn:hover svg,
.manufacturing_application_section .owl-next-btn:hover svg {
    color: var(--text_color_2);
}

.manufacturing_gallery_section {
    padding: 50px 0;
}

.manufacturing_gallery_section .container {
    background-color: var(--bg_color_7);
    border: 1px solid #E4E1E0;
    padding: 30px 20px;
}

.manufacturing_gallery_section .heading_part .title {
    font-family: var(--poppins_medium);
    font-size: var(--fs_32);
    color: var(--text_color_9);
    margin-bottom: 5px;
}

.manufacturing_gallery_section .heading_part .desc {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_8);
    margin-bottom: 0;
}

.manufacturing_gallery_section .card_part {
    margin-top: 30px;
}

.manufacturing_gallery_section .card_part .card {
    border: none;
    overflow: hidden;
    border-radius: 5px;
    background-color: transparent;
}

.manufacturing_gallery_section .card_part .card .image_wrapper {
    height: auto;
    width: 100%;
    background-color: var(--bg_color_2);
    border: 1px solid #EBEBEB;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.4s ease;
}

.manufacturing_gallery_section .card_part .card .image_wrapper:hover {
    border: 1px solid var(--bg_color_4);
}

.manufacturing_gallery_section .card_part .card .image_wrapper .productimg {
    height: auto;
    width: 100%;
    object-fit: contain;
}

.manufacturing_gallery_section .card_part .card .pname {
    font-family: var(--poppins_medium);
    font-size: var(--fs_20);
    color: var(--text_color_1);
    margin-bottom: 0;
    margin-top: 10px;
    text-align: center;
}

.solution_sixth_section .bottom_part .custom_info_card {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid #E4E1E0;
    border-radius: 4px;
    background-color: var(--bg_color_3);
    padding: 20px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    cursor: pointer;
}

.solution_sixth_section .bottom_part .custom_info_card .card-bg,
.solution_sixth_section .bottom_part .custom_info_card .card-overlay {
    position: absolute;
    inset: 0;
}

.solution_sixth_section .bottom_part .custom_info_card .card-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.4s ease;
    z-index: 1;
}

.solution_sixth_section .bottom_part .custom_info_card .card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #FF3300 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.solution_sixth_section .bottom_part .custom_info_card .card-content {
    position: relative;
    z-index: 3;
}

.solution_sixth_section .bottom_part .custom_info_card .card-icon {
    width: 48px;
    height: 48px;
    color: var(--bg_color_4);
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.solution_sixth_section .bottom_part .custom_info_card .title {
    margin: 0 0 10px;
    font-size: var(--fs_32);
    line-height: 1.25;
    color: var(--text_color_9);
    font-family: var(--poppins_medium);
    transition: all 0.4s ease;
}

.solution_sixth_section .bottom_part .custom_info_card .desc {
    margin: 0;
    font-size: var(--fs_16);
    font-family: var(--poppins_regular);
    line-height: 1.5;
    color: var(--text_color_8);
    transition: all 0.4s ease;
}

.solution_sixth_section .bottom_part .custom_info_card:hover .card-bg {
    opacity: 1;
    transform: scale(1);
}

.solution_sixth_section .bottom_part .custom_info_card:hover .card-overlay {
    opacity: 1;
}

.solution_sixth_section .bottom_part .custom_info_card:hover .card-icon,
.solution_sixth_section .bottom_part .custom_info_card:hover h3,
.solution_sixth_section .bottom_part .custom_info_card:hover p {
    color: var(--text_color_2);
}

.solution_sixth_section .bottom_part .custom_info_card.card-1 .card-bg {
    background-image: url('../images/key_capabilities.jpg');
}

.solution_sixth_section .bottom_part .custom_info_card.card-2 .card-bg {
    background-image: url('../images/key_capabilities.jpg');
}

.solution_sixth_section .bottom_part .custom_info_card.card-3 .card-bg {
    background-image: url('../images/key_capabilities.jpg');
}

.solution_sixth_section .bottom_part .custom_info_card.card-4 .card-bg {
    background-image: url('../images/key_capabilities.jpg');
}

.solution_sixth_section .bottom_part .custom_info_card.card-5 .card-bg {
    background-image: url('../images/key_capabilities.jpg');
}