.navbar-expand-lg {
    padding: 5px 0;
    transition: 0.3s ease-in;
}

header {
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.navbar-brand img {
    height: 80px;
    transition: 0.3s ease-in;
}

.navbar-expand-lg .navbar-nav .nav-link,
.navbar-expand-lg .navbar-nav .menu-item a {
    font-weight: 500;
    color: var(--black);
    position: relative;
    padding: 0;
    font-size: 16px;
    transition: 0.3s ease-in;
}

.navbar .dropdown-toggle::after,
.menu-item-has-children>a:after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    font-family: 'fontAwesome';
    content: "\f078";
    font-weight: 900;
    border: none;
    font-size: 10px;
}

.menu-item-has-children {
    position: relative
}

.navbar-nav .dropdown-menu,
.menu-item .sub-menu {
    box-shadow: 0px 8px 32px 0px #00000026;
    border: none;
    border-radius: 16px;
    padding: 17px 0;
    margin: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in;
    transform: translateY(15px);
    top: 200%;
    position: absolute;
    z-index: 9999;
    background: #fff;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    top: 40px;
    min-width: 10rem;
    width: max-content;
}

.navbar-nav .dropdown-menu .dropdown-item,
.navbar-expand-lg .navbar-nav .menu-item-has-children .sub-menu a {
    padding: 10px 25px;
    color: var(--black);
    font-weight: 400;
    display: block;
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu,
.navbar-nav .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.menu-item .sub-menu .sub-menu {
    left: 100%;
    top: 0;

}

.menu-item:hover .sub-menu .sub-menu {
    opacity: 0;
    visibility: hidden;
}

.menu-item .sub-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.navbar .sub-menu .menu-item-has-children>a:after {
    content: "\f054"
}

.sticky-header {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sticky-header .navbar-brand img {
    height: 70px;
}

.navbar-nav .dropdown-menu .dropdown-item:active,
.menu-item-has-children .sub-menu a:active {
    background: var(--lightgrey);
}

main {
    padding-top: 100px;
}


.banner-section {
    height: 90dvh;
    overflow: hidden;
}

.banner-section video {
    height: 100%;
    object-fit: cover;
}

.main-video-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 2;
    background: #0A1F44;
    background: linear-gradient(270deg, rgba(10, 31, 68, 0) 0%, rgba(10, 31, 68, 0.7) 100%);
}

.main-video-text h1,
.main-video-text h2 {
    font-weight: 700;
    font-size: 64px;
    color: var(--white);
}

.main-video-text p {
    font-weight: 600;
    font-size: 26px;
    color: var(--white);
}

.banner-section::before {
    background: #0A1F44;
    background: linear-gradient(180deg, rgba(10, 31, 68, 0) 0%, rgba(10, 31, 68, 1) 100%);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: 1;
}

.counter-box .counter-num {
    font-weight: 700;
    color: var(--white);
    font-size: 64px;
    margin-bottom: 0;
}

.counter-box p {
    margin-bottom: 0;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 18px;
}

.flip-card {
    perspective: 1000px;
    height: 400px;
}

.flip-card-inner {
    position: relative;
    width: 100%;

    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.front-img {
    height: 400px;

}

.flip-card-front img,
.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.front-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    background: linear-gradient(180deg, rgba(10, 31, 68, 0) 0%, rgba(10, 31, 68, 1) 100%);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #FFFFFF;
    height: 100%;
    display: flex;
    align-items: end;
    width: 100%;
    text-align: center;
}

.front-text .sub-title {
    margin-bottom: 0;
    width: 100%;
    color: var(--white);
}

.back-text .sub-title {
    margin-bottom: 10px;
    color: var(--accent-color);

}

.back-text p {
    color: var(--lightgrey);

    margin-bottom: 15px;
}



.back-text {
    background: var(--primary-color);
    align-items: center;
    padding: 35px;

}

.item {
    flex: 1;
}

.line {
    width: 1px;
    height: 80px;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.3;
}


.service-box .icon-bx-wraper {
    background: #fff;
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .05);
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.service-box .icon-bx-wraper:before {
    color: var(--primary-color);
    content: attr(data-name);
    font-size: 100px;
    font-weight: 700;
    line-height: 80px;
    opacity: .05;
    position: absolute;
    right: 30px;
    top: 30px;
    display: none;
}

.service-box .icon-bx-wraper:before,
.service-box .icon-lg i {
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}



.service-box .icon-lg {
    margin-bottom: 25px;
}

.service-box .icon-lg img {
    width: 80px;
    transition: 0.3s ease-in;
}

.icon-bx-wraper p:last-child {
    margin: 0;
}

.icon-bx-wraper p,
.icon-bx-wraper ul li {
    transition: 0.3s ease-in;
}

.service-box .icon-bx-wraper:after {
    background-color: var(--accent-color);
    bottom: 0;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -webkit-transform-origin: left;
    -o-transform-origin: left;
    transition: all .8s;
    -moz-transition: all .8s;
    -webkit-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    width: 0;
    z-index: -1;
}

.service-box .icon-bx-wraper:hover:before {
    opacity: .2;
}

.service-box .icon-bx-wraper:hover,
.service-box .icon-bx-wraper:hover .sub-title,
.service-box .icon-bx-wraper:hover:before {
    color: #fff;
}

.service-box .icon-bx-wraper:hover:after {
    left: 0;
    right: auto;
    transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -webkit-transform-origin: right;
    -o-transform-origin: right;
    width: 100%;
}

.service-box .icon-bx-wraper .sub-title {
    color: var(--accent-color);
    transition: 0.3s ease-in;
}

.service-box .icon-bx-wraper:hover .icon-lg img {
    filter: invert(159%) sepia(142%) saturate(41%) hue-rotate(244deg) brightness(207%) contrast(100%);
}

.service-box:hover .theme-btn3 {
    color: var(--white);
    border-color: var(--white);
}

.pbmit-ihbox-style-10 {
    padding: 70px 35px 40px 35px;
    border: 1px solid #d6d8db;
    border-radius: 30px;
    height: 100%;
    position: relative;
}

.pbmit-miconheading-style-10:nth-child(odd) .pbmit-ihbox-style-10 {
    border-radius: 30px 30px 0 0;
    border-width: 1px 1px 0 1px;
}

.timeline-wrapper {
    display: flex;
}

.pbmit-miconheading-style-10:nth-child(odd) .pbmit-ihbox-style-10:after,
.pbmit-miconheading-style-10:nth-child(odd) .pbmit-ihbox-style-10:before {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    height: 60px;
    width: 30px;
    box-shadow: 0 30px 0 0 var(--lightgrey);
    z-index: 1;
}

.pbmit-miconheading-style-10:nth-child(odd) .pbmit-ihbox-style-10:before {
    right: 100%;
    border-bottom-right-radius: 30px;
}

.pbmit-miconheading-style-10:nth-child(odd) .pbmit-ihbox-style-10:after {
    left: 100%;
    border-bottom-left-radius: 30px;
}

.pbmit-ihbox-style-10 .pbmit-ihbox-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.pbmit-ihbox-style-10 .pbmit-box-number {
    border-radius: 50%;
    color: var(--accent-color);
    background-color: var(--white);
    border: 1px solid #d6d8db;
    position: absolute;
    top: -25px;
    font-size: 17px;
    line-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    font-weight: 600;
}

.pbmit-ihbox-style-10 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-10 .pbmit-ihbox-svg-wrapper {
    font-size: 55px;
    position: relative;
    display: flex;
    height: 90px;
    width: 90px;
    line-height: 90px;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    color: var(--black);
    background-color: var(--white);
    fill: var(--black);
    z-index: 1;
}

.pbmit-ihbox-icon-wrapper svg,
.pbmit-fid-icon-wrapper svg,
.pbmit-service-icon svg,
.pbmit-ptable-line svg {
    width: 1em;
    height: 1em;
}

.pbmit-ihbox-style-10 .pbmit-icon-type-icon::after,
.pbmit-ihbox-style-10 .pbmit-ihbox-svg-wrapper::after,
.pbmit-ihbox-style-10 .pbmit-ihbox-icon-type-text::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 10px;
    z-index: -1;
    transform: scale(0);
    background-color: var(--accent-color);
    transition: all 200ms linear;
}

.pbmit-ihbox-style-10 .pbmit-element-title {
    font-size: 24px;
    color: var(--primary-color);
    line-height: 30px;
    margin: 0;
    font-weight: 600;
    padding: 35px 0 25px 0;
}

.pbmit-ihbox-style-10 .pbmit-heading-desc {
    margin: 0;
    padding: 0 10px;
}

.pbmit-miconheading-style-10:nth-child(even) .pbmit-ihbox-style-10 {
    padding: 40px 35px 60px 35px;
    border-radius: 0 0 30px 30px;
    border-width: 0 0 1px 0;
}

.pbmit-miconheading-style-10:nth-child(even) .pbmit-ihbox-box {
    flex-direction: column-reverse;
}

.pbmit-miconheading-style-10:nth-child(even) .pbmit-box-number {
    bottom: -25px;
    top: auto;
}

.pbmit-miconheading-style-10:nth-child(even) .pbmit-element-title {
    padding: 25px 0 35px 0;
}

.pbmit-miconheading-style-10 {
    flex: 1;
}

.pbmit-icon-type-icon img {
    width: 50px;
}

.certificate-logo {
    text-align: center;
    /* aspect-ratio: 1;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; */
}

.certificate-logo img {
    height: 100px;
}

.tab-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.nav-pills {
    width: 300px;
    flex-direction: column;
}

.nav-pills .nav-link {
    text-align: left;
    margin-bottom: 12px;
    border-radius: 8px;
    padding: 15px;
    background: #f8f9fa;
    color: #000;
    transition: 0.3s;
}

.nav-pills .nav-link:hover {
    background: #e9ecef;
}

.nav-pills .nav-link.active {
    background-color: #0d6efd;
    color: #fff;
}

.tab-title {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.tab-desc {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.85;
}

.nav-link.active .tab-desc {
    opacity: 1;
}

.tab-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-content img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.factory-counter {
    background: var(--lightgrey);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drone-video video {
    height: 500px;
    object-fit: cover;
}

.h-500 {
    height: 490px;
    overflow: hidden;
}

.factory-counter h2 {
    font-weight: 700;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.factory-counter p {
    margin-bottom: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.bg-before-blue::before {
    top: 0;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    position: absolute;
    background: var(--primary-color);
    height: 100%;
    border-radius: 30px;
}

.case-study-img img {
    height: 400px;
    overflow: hidden;
    transition: 0.3s ease-in;
}

.case-study-wrap:hover img {
    transform: scale(1.2);
}

.case-study-text {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 35px;
    background: #343A40;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.case-study-tags a {
    display: block;
    padding: 5px 10px;
    background: var(--white);
    border-radius: 50px;
    font-size: 14px;
    color: var(--accent-color);
}

.case-study-text h3 a {
    color: var(--white);
    margin-bottom: 25px;
}

.case-swiper .swiper-button-next,
.case-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: unset;
    transform: none;
    bottom: 0;
}

.case-swiper .swiper-button-next:after,
.case-swiper .swiper-button-prev:after {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 700;
}

.case-swiper .swiper-button-next {
    right: 45%;
}

.case-swiper .swiper-button-prev {
    left: 45%;
}

.case-swiper {
    padding-bottom: 70px;
}

.industriz-blogbox-style1 .ttm-date {
    position: absolute;
    bottom: 0;
    padding: 5px 15px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 0 5px 0 0;
}

.industriz-blogbox-style1 .ttm-featured-outer-wrapper.ttm-post-featured-outer-wrapper {
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
}

.industriz-blogbox-style1 .ttm-featured-wrapper {
    overflow: hidden;
    position: relative;
}

.ttm-featured-wrapper img {
    width: 100%;
    height: auto;
}

.industriz-box-blog.industriz-blogbox-style1 .industriz-box-desc {
    padding: 35px;
    background-color: var(--lightgrey);
    border-radius: 0 0 15px 15px;
    min-height: 165px !important
}

.industriz-box-title h4 {
    margin-bottom: 0;
}

.industriz-box-title h4 a {
    color: var(--primary-color);
}

.industriz-box-title h4 a:hover {
    color: var(--accent-color);
}

.industriz-box:hover img {
    transform: scale(1.2);
}

.industriz-box img {
    transition: 0.3s ease-in;
}

.footer {
    background: url('../images/footer.webp') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.page-numbers {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--primary-color)
}

.page-numbers.current {
    background: var(--primary-color);
    color: var(--accent-color)
}

.page-numbers.prev,
.page-numbers.next {
    width: 70px
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 40, 0.9);
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Top Heading */
.footer-heading {
    font-size: 38px;
    font-weight: 700;
    max-width: 700px;
}

/* Contact Box */
.contact-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.contact-item {
    padding: 25px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:last-child {
    border-right: none;
}

/* Footer Links */
.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--lightgrey);
    text-decoration: none;
    font-size: 14px;
}

.footer ul li a:hover {
    color: var(--accent-color);
}

/* Bottom Bar */
.footer-bottom {
    background: var(--black);
    padding: 15px 0;
    font-size: 14px;
}

.social-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
}

.footer-logo img {
    height: 70px;
}

.contact-item a {
    display: block;
    color: var(--white);
}

.contact-item i {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.inner-banner-wrap-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.inner-banner-wrap-img img {
    height: 400px;
    object-fit: cover;
}

.inner-banner-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000063;
    top: 0;
    left: 0;
    z-index: 1;
}

.inner-banner-wrap-text .breadcrumb-item,
.inner-banner-wrap-text .breadcrumb-item a,
.inner-banner-wrap-text .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
    font-weight: 600;
}

.contact-form {
    padding: 35px;
    border-radius: 20px;
    background: var(--primary-color);
}

.contact-form input {
    background: #fff;
    border-radius: 8px;
    padding: 11px 15px;
    border: 1px solid rgb(119 119 119 / .2);
}

.contact-form input[type="submit"] {
    border-radius: 10px;
    border: none;
    padding: 14px 26px 14px 26px;
    background: var(--accent-color);
}

.contact-card {
    background: var(--grey-color);
    /* box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .05); */
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 20px;
}

.footer h5 {
    color: var(--white);
}

.icon-box {
    font-size: 20px;
    position: relative;
    display: flex;
    height: 50px;
    width: 50px;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    color: var(--white);
    background-color: var(--accent-color);
    margin-bottom: 25px;
}

.contact-card a {
    color: var(--black);
}

.contact-card a:hover {
    color: var(--accent-color);
}

.address-block {
    background: var(--white);
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, .05);
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 20px;
}

.address-block h5 {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.address-block i {
    color: var(--accent-color);
}

.address-block p a {
    color: var(--black);
}

.address-block p a:hover {
    color: var(--accent-color);
}

.address-block iframe {
    margin-top: 25px;
    border-radius: 20px;
    overflow: hidden;
}

.address-block .icon-box i {
    color: var(--white);
}

.about-style7-content ul {
    position: relative;
    display: block;
    padding-left: 0;
}

.about-style7-content ul li {
    position: relative;
    display: block;
    color: #242424;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.about-style7-content ul li::before {
    position: relative;
    right: 0;
    top: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    font-family: "FontAwesome";
    content: "\f00c";
    line-height: 10px;
    margin-right: 5px;
    color: var(--accent-color);
    width: 25px;
    height: 25px;
    border: 1px solid var(--accent-color);
    display: block;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.about-style2__img .single-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-style2__img .single-box img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.about-style2__img .single-box:hover img {
    transform: scale3d(1.2, 1.2, 1.2);

}

.vision-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc((100% - 370px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: 1;
}

.vision-style1__bg-2 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc((100% + 370px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    background-color: #00346a;
    background-blend-mode: overlay;
    z-index: -1;
}

.vision-style1__bg-2::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0px;
    bottom: 0;
    left: 0;
    background-color: #00346a;
    opacity: 0.85;
}

.vision-style1__content {
    position: relative;
    display: block;
    padding-left: 400px;
}

.vision-style1__content-inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 100px;
}

.fact-counter-box-style2 {
    position: relative;
    display: block;
    width: 220px;
    border-right: 1px solid rgb(255, 255, 255, 0.35);
    padding-top: 18px;
    padding-bottom: 18px;
}

.fact-counter-box-style2 ul {
    position: relative;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fact-counter-box-style2 ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fact-counter-box-style2 ul li .counting {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 50px;
    line-height: 1.2em;
}

.fact-counter-box-style2 ul li .counting h2 {
    color: #ffffff;
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 900;
    font-family: var(--thm-font-2);
}

.fact-counter-box-style2 ul li .counting span.k {
    position: relative;
    display: inline-block;
    line-height: 40px;
    font-family: var(--thm-font-2);
    font-weight: 900;
    font-size: 46px;
    top: -1px;
    margin-left: 3px;
}

.fact-counter-box-style2 ul li h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
}

.left-img {
    height: 100%;
}

.industrial-section {
    display: flex;
    flex-wrap: wrap;
    /* min-height: 500px; */
}

/* LEFT IMAGE */
.left-img {
    flex: 1 1 50%;
}

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

/* RIGHT CONTENT */
.right-content {
    flex: 1 1 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    padding: 70px 40px;
}

/* STATS */
.stats {
    width: 200px;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.stat-box {
    margin-bottom: 35px;
}

.stat-number {
    font-size: 35px;
    font-weight: 700;
}

.stat-text {
    font-size: 14px;
    opacity: 0.8;
}

.main-text {
    padding-left: 35px;
}

.pbmit-timeline-post-items::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: calc(50% - 1px);
    width: 1px;
    height: 100%;
    background: rgb(22 34 45 / 20%);
}

.pbmit-timeline-inner {
    padding-bottom: 40px;
}

.pbmit-timeline-inner {
    margin: 0 -3px;
}

.pbmit-ourhistory-row {
    align-items: center;
    position: relative;
}

.pbmit-timeline-inner:nth-child(even) .pbmit-ourhistory-left,
.pbmit-timeline-inner:nth-child(odd) .pbmit-ourhistory-right {
    padding-right: 30px;
    padding-left: 15px;
}

.pbmit-ourhistory-right .content {
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgb(22 34 45 / 40%);
    background-color: var(--white);
}

.pbmit-ourhistory-right .content .pbmit-year {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.pbmit-ourhistory-right .content .simple-text p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 26px;
}

.pbmit-ourhistory-center {
    display: flex;
    justify-content: center;
    position: relative;
}

.pbmit-history-line {
    width: 130px;
    height: 1px;
    background-color: rgb(22 34 45 / 20%);
}

.pbmit-history-center-dot {
    content: "";
    position: absolute;
    left: 50%;
    height: 20px;
    width: 20px;
    background-color: var(--accent-color);
    box-shadow: 0 0 0 4px var(--white), 0 0 0 5px rgb(22 34 45 / 20%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.4s ease-in;
}

.pbmit-timeline-inner:nth-child(even) .pbmit-ourhistory-right,
.pbmit-timeline-inner:nth-child(odd) .pbmit-ourhistory-left {
    padding-right: 15px;
    padding-left: 30px;
}

.pbmit-timeline-image img {
    border-radius: 10px;
}

.pbmit-timeline-inner:nth-child(even) .row.pbmit-ourhistory-row {
    flex-direction: row-reverse;
    align-items: center;
}

.app-card2 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    border-bottom: 5px solid var(--accent-color);
}

/* Image */
.app-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.app-body {
    padding: 35px;
    position: relative;
}



/* Hover */
.app-card2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.app-card2 p {
    margin-bottom: 0;
}

.benefits-sec ul li {
    margin-bottom: 10px;
}

.benefits-sec ul li strong {
    display: block;
    color: var(--accent-color);
    font-family: var(--title-font);
}

.benefits-sec ul li::marker {
    color: var(--accent-color);
}

.first-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.first-lines svg {}

.z-1 {
    z-index: 1;
}

.second-line {
    bottom: 14px;
    left: 0px;
}

.custom-card {
    background: #f5f4f2;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    height: 100%;
    transition: 0.3s;
}

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

.card-number {
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 100px;
    color: #cfcfcf;
    font-weight: bold;
    line-height: 1;
    opacity: 0.3;
}



.card-text {
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 14px;
}

.feature-box {
    text-align: center;
    padding: 35px;
    transition: 0.3s;
    align-items: center;
    display: flex;
    aspect-ratio: 1;
    border: 1px solid #fff;
    border-radius: 50%;
    justify-content: center;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .icon-box {
    height: 90px;
    width: 90px;
    margin: 0 auto 20px;
    border-radius: 10px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 40px;
    height: 40px;
}

.feature-text {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.indust-sec .sub-title {
    font-size: 22px;
}

.principal-img {
    width: 60%;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
}

.principal-text {
    margin-left: -120px;
    background-color: var(--primary-color);
    flex-grow: 1;
    padding: 50px;
    z-index: 1;
    color: var(--white);
    /* box-shadow: 0 10px 50px rgba(0, 0, 0, .05); */
    border-radius: 30px;
    transition: 0.3s ease-in;
}

.principal-text h4 {
    font-weight: 700;
    font-size: 20px;
    color: var(--accent-color);
}

.principal-text h5,
.principal-text h6 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
}

.single-team-style1 {
    position: relative;
    display: block;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    margin-bottom: 25px;
    overflow: hidden;
}

.single-team-style1:hover img {
    transform: scale(1.2);
}

.single-team-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
}

.single-team-style1 .img-box img {
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .img-box .title-box {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 25px;
    z-index: 3;
    background: var(--primary-color);
    border-radius: 0 50px 0 0;
}

.single-team-style1 .img-box .title-box h3 {
    font-size: 21px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--white);
}

.single-team-style1 .img-box .title-box span {
    color: var(--accent-color);
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cap-card {
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
    transition: 0.3s;
}

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

.cap-icon img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cap-title {
    font-weight: bold;
    font-size: 18px;
}

.cap-text {
    font-size: 14px;
    color: var(--black);
}


.cap-text-wrap {
    position: absolute;
    padding: 25px;
    bottom: 25px;
    left: 25px;
    background: var(--white);
    right: 25px;
    text-align: center;
    border-radius: 15px;
}

.cap-text-wrap h3 {
    font-size: 20px;
}

.operational img {
    width: 100%;
    border-radius: 20px;
}

.operational h2 {
    font-weight: bold;
    margin-bottom: 20px;
}



/* SECTION 3 - FEATURE LIST STYLE */


.quality-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.quality-icon {
    min-width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
}

.quality-text {
    font-size: 15px;
    color: #555;
}

.quality-box:last-child {
    border: none;
}

.textimonial-box {
    padding: 35px;
    border-radius: 20px 20px 20px 0;
    background: var(--white);
    position: relative;
}

.textimonial-box h6 {
    margin-bottom: 0;
    color: var(--accent-color);
}

.textimonial-box h4 {
    margin-top: 35px;
    margin-bottom: 0;
}

.textimonial-box:after {
    content: '';
    position: absolute;
    bottom: -24px;
    border-right: 25px solid transparent;
    border-left: 0 solid transparent;
    border-top: 25px solid #fff;
    left: 0;
}

.testimonial-swiper {
    padding-bottom: 70px;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: var(--white);
    width: 5px;
    height: 5px;
    transition: 0.3s ease-in;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
}

.testimonial-swiper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10px;
}

.faq-accordion .accordion-button {
    border-radius: 35px !important;
    background: var(--primary-color);
    color: var(--white);
}

.faq-accordion .accordion-item {
    margin-bottom: 15px;
    border-radius: 30px;
    border: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.faq-accordion .accordion-button:not(.collapsed)::after,
.faq-accordion .accordion-button::after {
    filter: invert(41%) sepia(53%) saturate(2685%) hue-rotate(3deg) brightness(107%) contrast(102%);
}

.pbmit-ourhistory-row:hover .pbmit-history-center-dot {
    box-shadow: 0 0 0 4px var(--white), 0 0 0 5px rgb(255 107 0);
    width: 40px;
    height: 40px;
}

.pbmit-ourhistory-row:hover .pbmit-history-line {
    background: var(--accent-color);
}

.gallery-text {
    bottom: 25px;
    padding: 10px 25px;
    left: 50%;
    background: var(--white);
    border-radius: 8px 8px;
    transform: translateX(-50%);
}

.gallery-text h3 {
    font-size: 18px;
}

.main-video-banner {
    height: 100%;
}

.blog-article {
    padding: 35px;
    background: var(--white)
}

.publication-date {
    padding: 5px 15px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 5px;
    display: inline-block
}

.blog-article h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px
}

.blog-article h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 35px
}

.blog-article h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 35px
}

.blog-article h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 35px
}

.blog-article h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 35px
}

.blog-article h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 35px
}

.blog-article a {
    color: var(--primary-color);
    text-decoration: underline
}

.blog-article ul li::marker {
    color: var(--primary-color)
}

.blog-banner .inner-banner-wrap::before {
    display: none
}

.blog-article ul li+li {
    margin-top: 8px
}

.sidebar__post .sidebar__post-list {
    margin: 0;
}

.sidebar__post .sidebar__post-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 15px 0;
    border-bottom: 1px solid rgb(10 31 68 / 31%);
}

.sidebar__post .sidebar__post-list li:last-child {
    padding-bottom: 0;
    border: none;
}

.sidebar__post .sidebar__post-list .sidebar__post-image {
    margin-right: 20px;
    -webkit-box-flex: 80px;
    -ms-flex: 80px 0 0px;
    flex: 80px 0 0;
}

.sidebar__post .sidebar__post-list .sidebar__post-image>img {
    width: 80px;
    border-radius: 10px;
    height: 80px;
    object-fit: cover;
}

.sidebar__post .sidebar__post-list .sidebar__post-content {
    position: relative;
    top: -3px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 {
    font-size: 18px;
    margin: 0;
    line-height: 26px;
    letter-spacing: 0;
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--white);
    padding: 0px 8px;
    background-color: var(--accent-color);
    border-radius: 5px;
    margin-bottom: 8px;
    display: inline-block;
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
    color: var(--white);
    font-size: 14px;
    padding-right: 3px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
    color: var(--primary-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.sidebar__tags {
    position: relative;
    display: block;

    overflow: hidden;
    z-index: 1;
}

.sidebar__single+.sidebar__single {
    margin-top: 45px;
}


.sidebar__tags-list a {
    font-size: 14px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    color: var(--primary-color);
    border: 1px solid var(--accent-color);
    display: inline-block;
    padding: 5px 28px 5px;
    margin-left: 5px;
    border-radius: 10px;
    line-height: 2;
}

.sidebar__tags-list a+a {
    margin-top: 10px;
}

.request-form {
    padding: 35px;
    background: var(--white);
    border-radius: 10px;
}

.form-section {
    margin-bottom: 25px;
    padding: 25px;
    background: var(--grey-color);
    border-radius: 10px;
}

.request-form .sub-title, .form-section .sub-title {
    margin-bottom: 10px;
}

.request-form input, .request-form select, .form-section input,
.form-section select {
    background-color: #fff;
    border-radius: 8px;
    padding: 11px 15px;
    border: 1px solid rgb(119 119 119 / .2);
}

.request-form label, .form-section label {
    font-size: 14px;    margin-bottom: 5px;
}
.request-form textarea{
	  background-color: #fff;
    border-radius: 8px;
    padding: 11px 15px;
    border: 1px solid rgb(119 119 119 / .2);height:120px
}.request-form input[type="submit"]{
	    padding: 14px 26px 14px 26px;
    background: var(--accent-color);border-color: var(--accent-color)
}
.float-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 9999;
}.wp-block-categories{
	display:flex;justify-content:center;flex-wrap:wrap;padding:0;margin-bottom:55px; gap:20px
}.wp-block-categories .cat-item{
	font-family: var(--title-font);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    outline: 0;
    border: none;
   
    border:1px solid var(--accent-color);  background: var(--grey-color);
    color: #fff;
    transition: 0.3s ease-in;
    position: relative;
    overflow: hidden;
}.wp-block-categories .cat-item a{color: var(--black); padding: 14px 26px 14px 26px;display:block}
	.wp-block-categories .cat-item.current-cat{
	 background: var(--accent-color);
}.wp-block-categories .cat-item.current-cat a{color: var(--white);}
.download-btn{
      display: flex;
    justify-content: space-between;align-items: center;
    gap: 25px;
    padding: 10px 25px;
    background: #ffffff;
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
       border-radius: 48px;
    padding-right: 15px;transition: 0.3s all ease-in;font-weight: 600;
}.download-btn i{
    background: var(--primary-color);
    width: 40px;height: 40px;flex-shrink: 0;border-radius: 50%;display: flex;align-items: center;justify-content: center;color: #fff;
}.download-btn:hover{
    background: var(--accent-color);color: #fff;
}
.career-top {
    display: flex;
    gap: 12px;
}
.career-icon {
    background: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 16.4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;

}

.career-icon i {
    font-size: 20px;color: var(--accent-color);
}

.career-card {
    border: 2px solid #F3F4F6;
    border-radius: 16px;
    padding-top: 34px;
    padding-right: 34px;
    padding-bottom: 34px;
    padding-left: 34px;
    background: var(--white);
    display: flex;
    justify-content: space-between;gap: 35px;

}

.career-heading h3 a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.53px;

}

.career-heading ul {
    padding-left: 0;
    display: flex;
    gap: 24px;
}

.career-left ul li {
    color: #364153;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.31px;
    margin-bottom: 5px;
}

.career-heading ul li {
    list-style: none;
    display: flex;
    gap: 5px;
    color: #4A5565;
    align-items: center;

    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.15px;


}

.career-left ul li::marker {
    color: var(--primary-color);
}

.career-heading ul li span {
    display: block;
    height: 24px;
}
.career-heading ul li span i{
    color: var(--accent-color);
}


.career-card p {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.31px;

}

.career-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.5px;

}

.career-right {
    flex-shrink: 0;
}