@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/* ===========================  Root Configuration Start =====================================  */
:root {
    /* Colors  */
    --color-primary: #1d1655;
    --color-grey: #e8eff9;
    --color-white: #ffffff;
    --color-dark: #333333;
    --header-color: #1d145285;
    /* Custom Container */
    --custom-container-width: 1920px;
    --custom-container-side-padding: 30px;
    /* Fonts */
    --font-family: "DM Sans", sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 600;
    --font-weight-bold: 700;
    --header-height: 57px;
    --custom-font-size: clamp(30px, 8.59375vw, 165px);
    --big-font: clamp(30px, 2.916666666666667vw, 3.5rem);
    /* Other  */
    --section-padding: 40px;
    --border-radius: 8px;
    --default-transition: 0.3s all ease-in-out;
}
@media (min-width: 576px) {
    :root {
        --header-height: 62px;
    }
}
@media (min-width: 768px) {
    :root {
        --section-padding: 50px;
    }
}
@media (min-width: 992px) {
    :root {
        /* --section-padding: 50px; */
    }
}
@media (min-width: 1400px) {
    :root {
        --header-height: 74px;
        --section-padding: 80px;
        --custom-container-side-padding: 50px;
    }
}
@media (min-width: 1600px) {
    :root {
        --section-padding: 100px;
        --custom-container-side-padding: clamp(50px, 5.208333333333333vw, 100px);
    }
}
/* ===========================  Root Configuration End =====================================  */
/* ===========================  Default Configuration Start =====================================  */
/* Lenis CSS Start */
html.lenis,
html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
/* Lenis CSS End */
html,
body {
    font: var(--font-weight-regular) 16px/1.5 var(--font-family);
    color: var(--color-dark);
}
@media (min-width: 768px) and (max-width: 1399.97px) {
    html,
    body {
        font: var(--font-weight-regular) 14px/1.5 var(--font-family);
    }
}
ul:last-of-type,
ol:last-of-type {
    margin: 0;
    padding: 0 0 0 18px;
}
ul,
ol {
    padding: 0 0 0 18px;
}
ul.list-style-none {
    list-style-type: none !important;
    padding: 0;
    margin: 0;
}
header ul,
footer ul {
    list-style: none;
    padding: 0 !important;
    margin: 0;
}
li:not(header ul li, footer ul li, .post-filter ul li) {
    margin-bottom: 10px;
}
li:not(header ul li, footer ul li):last-child {
    margin-bottom: 0;
}
a,
a:not([class]) {
    text-decoration: none;
}
a:not(header a, footer a, .btn, .btn-reverse) {
    color: var(--color-primary);
}
a:not(header a, footer a, .btn, .btn-reverse):hover {
    text-decoration: underline;
}
:is(.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6) {
    font-weight: var(--font-weight-bold);
}
p {
    font-weight: 400;
}
.heading {
    font-size: clamp(30px, 2.083333333333333vw, 40px);
    color: var(--color-primary);
}
.bg-primary .heading,
.foreground-content .heading {
    color: var(--color-white);
}
.inner-btn,
.default-a a:not(.btn) {
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--default-transition);
}
.inner-btn:hover,
.default-a a:hover:not(.btn) {
    color: var(--color-primary);
}
/* ===========================  Default Configuration End =====================================  */
/* -------------------- Custom Classes Start -------------------- */
/* Fade-up Animation Start */
[data-animation="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 600ms ease-out,
        transform 600ms ease-out;
}
[data-animation="fade-up"].animate {
    opacity: 1;
    transform: translateY(0);
}
/* Fade-up Animation End */
/* -------------------- Custom Classes End -------------------- */
/* Background Overlay Start */
.background-overlay {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}
.background-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}
.background-overlay.overlay-black::after {
    background: #0f0f0f;
    background: linear-gradient(#0000004d, #0000004d);
}
.background-overlay.overlay-bottom::after {
    background: linear-gradient(to top, rgb(0 0 0 / 62%), rgb(181 17 17 / 0%) 50%);
}
.background-overlay.overlay-bottom-black::after {
    background: linear-gradient(to top, rgb(0 0 0 / 70%), rgb(181 17 17 / 0%) 40%);
}
.background-overlay.overlay::after {
    background: #00000063;
}
/* Background Overlay End */
/* Background Video Start */
.background-video {
    width: 100vw;
    height: 56.25vw;
    /* 9/16 * 100 = 56.25, for 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16/9 * 100 = 177.77, for 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
/* Background Video End */
/* ===========================  Image Class start =====================================  */
.img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.for-background-image {
    position: relative;
}
.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
}
.foreground-content {
    position: relative;
    z-index: 2;
}
/* =======================  Image Class End ================================  */
/* =======================  Padding & Color Class start ====================  */
/* Padding  */
.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}
/* Colors  */
.bg-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-white);
}
.text-primary {
    color: var(--color-primary) !important;
}
.bg-grey {
    background-color: var(--color-grey) !important;
    color: var(--color-dark);
}
.bg-white {
    background-color: var(--color-white);
    color: var(--color-dark);
}
.bg-blur {
    background-color: var(--header-color);
    backdrop-filter: blur(10px);
}
/* =========================== Padding & Color Class End =====================================  */
/* =========================== Bootstrap Class Start =====================================  */
.rounded {
    border-radius: var(--border-radius) !important;
}
.card-body,
.big-card {
    padding: 1rem;
}
.card-body.extra-padding {
    padding: 1.25rem;
}
.card-body p:last-of-type,
.big-card p:last-of-type {
    margin-bottom: 0px;
}
.card {
    border: unset !important;
    overflow: hidden;
    border-radius: var(--border-radius) !important;
    width: 100%;
}
.cards {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 1.5rem;
}
.cards.cards-equal-height .card {
    flex: 1 0 0;
    overflow: unset;
}
.banner-row .card,
.figures-wrapper .card {
    border-radius: 0px !important;
}
.banner-row .btn:hover {
    border: 1px solid var(--color-white);
}
.banner-row .card-group {
    border-radius: var(--border-radius);
    overflow: hidden;
}
.card-group {
    display: flex;
}
.card-group > .card {
    margin-bottom: 0px !important;
}
.contact-content p:first-of-type {
    max-width: 400px;
}
:is(.bg-primary, .bg-grey).card {
    background-color: var(--color-white);
}
.bg-white .card {
    background-color: var(--color-grey);
}
.figures-wrapper .big-font {
    line-height: 1;
}
hr {
    margin: 0.5rem 0;
}
@media (min-width: 1600px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1520px !important;
    }
}
@media (min-width: 576px) {
    .banner-row .card {
        border-radius: var(--border-radius);
    }
}
@media (min-width: 768px) {
    .card-body.extra-padding {
        padding: 2rem;
    }
    .big-card {
        padding: 2rem;
    }
}
@media (min-width: 1400px) {
    .card-body {
        padding: 1.25rem;
    }
}
/* =========================== Bootstrap Class End =====================================  */
/* =========================== Button CSS Start =====================================  */
.btn,
.btn-reverse {
    display: inline-flex;
    align-items: center;
    font-weight: var(--font-weight-medium);
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--default-transition);
    text-decoration: none;
    border-radius: var(--border-radius) !important;
    position: relative;
    font-size: 14px;
}
.btn,
.btn-reverse:hover {
    background-color: var(--color-primary);
    color: white;
}
header .btn-reverse,
header .btn-reverse:hover {
    border: 1px solid var(--color-white);
}
.btn-reverse {
    background-color: white;
    color: var(--color-dark);
    border: 1px solid var(--color-white);
}
.btn-group .btn-reverse {
    border: 1px solid var(--color-primary);
}
.btn:hover,
.btn:focus-visible {
    background-color: white !important;
    color: var(--color-primary) !important;
    border: 1px solid var(--color-primary);
}
.btn::after,
.btn-reverse::after {
    content: "\F231";
    position: absolute;
    right: 2px;
    top: 0px;
    font-family: "bootstrap-icons" !important;
    transform: rotate(-40deg);
    font-size: 8px;
}
:is(.btn, .btn-reverse):not(:is(header, .footer-belt) :is(.btn, .btn-reverse)) {
    margin-top: 20px;
}
:is(p + a.btn, p + a.btn-reverse):is(:last-child:not(div + .btn)) {
    margin-top: calc(30px - 1rem);
}
.border-radius {
    overflow: hidden;
    border-radius: var(--border-radius) !important;
}
@media (min-width: 576px) {
    .btn,
    .btn-reverse {
        padding: 12px 15px;
        font-size: 1rem;
    }
    .btn::after,
    .btn-reverse::after {
        right: 3px;
        font-size: 13px;
    }
}
@media (min-width: 1200px) {
    .btn,
    .btn-reverse {
        padding: 12px 25px 12px 20px;
    }
}
/* =========================== Button CSS End =====================================  */
/* =========================== Custom Class CSS Start =====================================  */
.last-child-mb-0 *:last-child {
    margin-bottom: 0 !important;
}
.image-scale {
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .custom-container {
        padding-left: var(--custom-container-side-padding);
        padding-right: var(--custom-container-side-padding);
        max-width: var(--custom-container-width);
        margin: 0 auto;
    }
}
@media (min-width: 1200px) {
    header .nav-link:hover,
    header .nav-link:active,
    header .nav-link:focus,
    header a:not(.btn):hover {
        text-decoration: none;
        color: var(--color-white) !important;
    }
}
/* ===========================  Custom Class CSS End =====================================  */
/* -------------------- View Gallery Start -------------------- */
.view-gallery {
    position: relative;
}
.view-gallery::before,
.view-gallery::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}
.view-gallery::before {
    content: "";
    background-color: rgba(29, 22, 85, 0.5);
}
.view-gallery::after {
    content: "\F52A";
    font-family: "bootstrap-icons";
    color: var(--color-white);
    display: grid;
    place-items: center;
    font-size: 36px;
}
.view-gallery:hover::before,
.view-gallery:hover::after {
    opacity: 1;
}
/* -------------------- View Gallery End -------------------- */
/* -------------------- Last Element Margin Bottom Start -------------------- */
.last-element-margin-0 p:last-child {
    margin-bottom: 0;
}
/* -------------------- Last Element Margin Bottom End -------------------- */
/* -------------------- Image with Content Start -------------------- */
.image-with-content-wrapper {
    min-height: 330px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.image-with-content {
    position: relative;
    padding: 1rem;
    background-color: var(--color-white);
    color: var(--color-dark);
}
:is(.bg-white) .image-with-content {
    background-color: var(--color-grey);
}
.image-with-content p:last-of-type {
    margin-bottom: 0;
}
@media (min-width: 576px) {
    .image-with-content-wrapper {
        min-height: 500px;
        height: 100%;
        overflow: hidden;
        border-radius: var(--border-radius);
    }
    .image-with-content-wrapper img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .image-with-content {
        position: absolute;
        left: 0;
        bottom: 0;
        max-width: 360px;
        background-color: rgba(0, 0, 0, 0.6) !important;
        color: var(--color-white);
        border-radius: var(--border-radius);
    }
    .image-with-content {
        margin: 1rem;
    }
}
@media (min-width: 768px) {
    .image-with-content {
        padding: 1.5rem;
        margin: 1.5rem;
    }
}
/* -------------------- Image with Content End -------------------- */
/* ===========================  Header Section Start =====================================  */
header {
    background-color: var(--color-primary);
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    transition:
        transform 300ms ease-in-out,
        background-color 300ms ease-in-out;
}
header.active {
    color: var(--color-white);
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 576px) {
    header {
        background-color: rgba(29, 20, 82, 0.5);
        position: fixed;
    }
    header.active {
        background-color: var(--color-primary);
    }
}
.navbar {
    padding: 6px 0;
}
.nav-item {
    padding: 12px;
}
.navbar-brand {
    max-width: 120px;
}
@media (min-width: 576px) {
    .banner {
        height: 100vh;
    }
    .navbar-brand {
        max-width: 100%;
    }
}
@media (min-width: 1200px) {
    header {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}
@media (max-width: 575.97px) {
    .banner .background-overlay::after {
        display: none;
    }
    .banner-card {
        margin-top: 0.75rem;
    }
}
/* Nav Btn Over */
/* Navbar Css Start  */
.custom-side-bar {
    margin-top: var(--header-height);
}
/* Offcanvas Css Start  */
.offcanvas-backdrop.fade.show {
    display: none;
}
.offcanvas.offcanvas-end {
    border: none;
}
.offcanvas {
    background-color: var(--color-grey);
}
/* Offcanvas Css Over  */
/* Toggle Menu Css Start  */
.navbar-toggler:focus {
    box-shadow: unset;
}
.menu-icon {
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s;
    align-items: end;
    padding: 14px 13px;
    border: unset;
}
.menu-icon-lines {
    width: 70%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 450ms;
}
.menu-icon-line-2 {
    width: 100%;
}
.menu-icon.close {
    transition: all 950ms;
    transform: rotate(45deg);
}
.menu-icon.close .menu-icon-line-2 {
    width: 0;
}
.menu-icon.close .menu-icon-line-1 {
    width: 120%;
    transform: translate(2px, 8px);
}
.menu-icon.close .menu-icon-line-3 {
    width: 120%;
    transform: translate(2px, -7px) rotate(90deg);
}
/* Toggle Menu Css Over */
/* Navbar Media Queries Start  */
@media (min-width: 1300px) {
    .nav-item {
        padding: 5px 15px;
    }
}
@media (min-width: 1200px) {
    .custom-side-bar {
        margin-top: 0;
    }
    .nav-link {
        color: var(--color-white);
    }
    .navbar-nav {
        align-items: center;
    }
}
@media (min-width: 1400px) {
    .nav-item {
        padding: 5px 18px;
    }
    .navbar {
        padding: 12px 0;
    }
}
/* Banner Section Css Start  */
/* ****************** Header Nav-Link Css Start ********************* */
.nav-link {
    position: relative;
    display: inline-block;
    font-weight: var(--font-weight-bold);
    padding: 0 !important;
}
.nav-link::after {
    content: "";
    height: 2px;
    background-color: var(--color-primary);
    display: block;
    visibility: hidden;
    transform: scaleX(0);
    transition: 0.3s all ease-in-out;
    margin-top: 4px;
    width: 100%;
    left: 0;
    position: absolute;
}
.nav-link:hover::after {
    visibility: visible;
    transform: scaleX(1);
}
@media (min-width: 1200px) {
    .nav-link::after {
        background-color: var(--color-white);
    }
}
/* ****************** Header Nav-Link Css Over  ********************* */
/* ===========================  Header Section End =====================================  */
/* ===================  Banner Section Start =========================  */
/* Banner Css Start */
.swiper-slide-active .banner-content {
    animation: slideShock 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes slideShock {
    0% {
        opacity: 0;
        transform: scale(0.95) translateX(100px);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}
/* Smooth Animations For Text Elements */
.banner .swiper-slide-active .big-font {
    animation: slideInSmooth 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
    opacity: 0;
    transform: translateX(90px);
}
.banner {
    position: relative;
}
.figures-wrapper .card-group {
    flex-direction: column;
}
@media (min-width: 576px) {
    .card-group > .card {
        flex: 1 0 0% !important;
        margin-bottom: 0;
    }
    .contact-margin-top {
        margin-top: var(--header-height);
    }
}
@media (min-width: 992px) {
    .figures-wrapper {
        position: absolute;
        right: var(--custom-container-side-padding);
        bottom: 50px;
        width: 350px;
        z-index: 10;
        justify-content: end;
    }
    .figures-wrapper .card-group {
        flex-direction: column;
    }
}
@media (min-width: 1200px) {
    .figures-wrapper {
        width: 600px;
    }
    .figures-wrapper .card-group {
        flex-direction: row;
    }
}
.swiper-slide-active .btn-group,
.swiper-slide-active .figures-wrapper {
    animation: slideInSmooth 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
    opacity: 0;
    transform: translateX(60px);
}
@keyframes slideInSmooth {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Banner Css Over  */
.banner-row {
    padding: 1.5rem 1rem;
}
@media (min-width: 576px) {
    .banner-row {
        padding: 0px 20px;
        padding-bottom: clamp(16px, 2.604166666666667vw, 50px);
        position: relative;
        z-index: 2;
        align-items: center;
    }
}
@media (min-width: 992px) {
    .hero-banner,
    .banner-slider {
        height: calc(100vh - var(--header-height));
    }
    .image-card {
        padding: 30px;
    }
}
@media (min-width: 768px) {
    .image-card {
        padding: 15px;
    }
    .banner-row {
        padding-left: var(--custom-container-side-padding);
        padding-right: var(--custom-container-side-padding);
    }
}
@media (max-width: 575px) {
    .banner-row {
        background-color: var(--color-grey);
    }
    .banner-row h1 {
        color: var(--color-primary) !important;
    }
}
/* ===========================  Banner Section End =====================================  */
/* -------------------- Inner Page Banner Start -------------------- */
.inner-banner {
    position: relative;
}
.inner-banner-content {
    background-color: var(--color-grey);
    color: var(--color-primary);
    text-align: center;
    padding: 1.5rem 0;
}
@media (min-width: 576px) {
    .inner-banner::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        pointer-events: none;
        background: linear-gradient(to top, rgb(0 0 0 / 62%), rgb(181 17 17 / 0%) 50%);
    }
    .inner-banner-content {
        position: absolute;
        z-index: 1;
        padding: 0;
        background-color: transparent;
        color: var(--color-white);
        bottom: clamp(16px, 2.604166666666667vw, 50px);
        left: var(--custom-container-side-padding);
    }
}
/* -------------------- Inner Page Banner End -------------------- */
/* Products Section Css Start  */
.custom-big-font {
    font-size: var(--custom-font-size);
    line-height: 0.74;
    color: var(--color-primary);
}
.big-font {
    font-size: var(--big-font);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0;
}
.custom-heading {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 20px;
}
.heading-block {
    margin-bottom: 26px;
}
.heading-block *:last-child {
    margin-bottom: 0;
}
.animations p {
    animation: topToBottom 5s linear infinite;
    position: absolute;
    margin: 0;
    padding: 0;
    opacity: 0;
    font-weight: var(--font-weight-bold);
}
.animations p:nth-child(1) {
    animation-delay: 0s;
}
.animations p:nth-child(2) {
    animation-delay: 1.67s;
}
.animations p:nth-child(3) {
    animation-delay: 3.33s;
}
@keyframes topToBottom {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    5% {
        opacity: 1;
        transform: translateY(0px);
    }
    28% {
        opacity: 1;
        transform: translateY(0px);
    }
    35% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 0;
        transform: translateY(50px);
    }
}
@media (min-width: 768px) {
    .heading-block {
        margin-bottom: 40px;
    }
}
@media (min-width: 992px) {
    .custom-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
}
/* Products Section Css Over  */
/* ===========================  About Section Start =====================================  */
/* ===========================  Border Card Section End =====================================  */
.hero-banner .card.border-box {
    opacity: 1 !important;
}
.bg-image-card {
    background-color: rgb(0 0 0 / 61%) !important;
    color: var(--color-white);
}
/* ===========================  Border Card Section End =====================================  */
/* ===========================  Other Services Section Start =====================================  */
.other-services-wrap {
    display: flex;
    flex-direction: column;
}
@media (min-width: 992px) {
    .sticky-top {
        position: sticky !important;
        top: calc(var(--header-height) + 50px);
    }
}
/* ===========================  Other Services Section End =====================================  */
/* ===========================  Blog Section Start =====================================  */
.news-events {
    display: flex;
    gap: 8px;
}
.post-filter {
    display: flex;
    width: 100%;
}
.post-filter-item {
    display: flex;
    flex: 1;
    background-color: var(--color-white);
    padding: 10px 15px;
    outline: unset !important;
    font-size: 1rem;
    font-weight: 500;
    justify-content: space-between;
    transition: all 200ms ease-in-out;
    border-radius: var(--border-radius);
    border: unset;
}
.post-filter .dropdown-menu {
    transform: unset !important;
    top: calc(100% + 3px) !important;
}
.dropdown-menu li:not(:last-child) .dropdown-item {
    border-bottom: 1px solid #dee2e6;
}
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--color-primary);
}
.dropdown-item {
    padding: 10px;
}
.post-filter .dropdown-menu {
    width: 100%;
    border-radius: var(--border-radius);
    border: var(--bs-border-width) solid var(--bs-border-color);
    overflow: hidden;
}
.dropdown-menu:not(.dropdown-mega-menu) {
    padding: 0 !important;
}
@media (min-width: 1400px) {
    .dropdown-menu {
        --tab-content-spacing: 0.9rem;
    }
}
.dropdown-toggle::after {
    content: "\F285";
    font-family: "bootstrap-icons" !important;
    right: 0px;
    position: relative;
    transition: transform 350ms ease-in-out;
    border: unset;
    margin-left: 8px;
    transform: rotate(90deg);
}
/* ===========================  Blog Section End =====================================  */
/* ===========================  Industries Section Start =====================================  */
.left-content {
    display: flex;
    height: 100%;
}
.image-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 500px;
}
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 992px) {
    .image-card {
        height: 100%;
    }
}
/* ===========================  Industries Section End =====================================  */
/* =========================== Footer Section Start =====================================  */
.border-both {
    border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
}
.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
}
footer a,
footer p {
    font-size: 1rem;
}
footer a:hover:not(.btn),
.footer-link-end li a:hover,
.footer-link a:hover {
    opacity: 1;
    text-decoration: none;
}
.footer-link-end li {
    display: inline-block;
    margin-right: 10px;
}
.social-icon li {
    display: inline-block;
    margin-right: 10px;
}
.footer-link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.footer-link li {
    padding: 0px 1rem;
}
.footer-link li:last-child {
    padding-bottom: 0;
}
/* Footer Accordion Start  */
footer .nav-link {
    opacity: 0.8;
    transition: 0.3s all ease-in-out;
}
.footer-careers {
    padding: 30px 0 30px 0px;
}
.footer-content {
    padding: 30px 0px 0px 0px;
    height: 100%;
}
@media (min-width: 1200px) {
    .footer-content {
        border-right: 1px solid rgba(255, 255, 255, 0.28);
        padding: 25px;
    }
    .footer-careers {
        padding: 30px 0 30px 30px;
    }
}
@media (min-width: 1400px) {
    .footer-content {
        padding: 30px;
    }
}
/* =========================== Footer Section End =====================================  */
/* About Page Css Start  */
.company-logo img {
    width: 150px;
}
/* Global section Css Start  */
.cards.cards-fix-height .card {
    width: 100%;
    display: inline-flex;
    height: 215px;
    flex-direction: column;
    align-items: flex-start;
}
.cards.cards-fix-height .card-body {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.cards.cards-fix-height .card img {
    width: 50px;
}
@media (min-width: 992px) {
    .cards.cards-fix-height .card {
        height: 340px;
    }
    .cards.cards-fix-height .card img {
        width: auto;
    }
    .company-logo img {
        width: 200px;
    }
}
/* Global Section Css Over   */
/* About Page Css Over  */
/* Product Image Section Start  */
.cylinder-liner img {
    width: 80%;
}
.table {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    display: block;
    border-radius: var(--border-radius);
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-color-type: var(--color-dark) !important;
    --bs-table-bg-type: var(--color-grey) !important;
}
.table-transparent th,
td {
    background-color: transparent !important;
}
@media (min-width: 992px) {
    .table {
        display: inline-table;
    }
}
/* Product Image Section Over  */
/* Career Page Css Start */
.current-opening .card {
    height: 100%;
    overflow: unset !important;
}
.current-opening .card-group {
    flex-direction: column !important;
    display: flex;
}
.form-group {
    margin-bottom: 1rem;
}
label {
    margin-bottom: 0.5rem;
}
#message {
    min-height: 130px;
}
@media (min-width: 576px) {
    .current-opening .card-group {
        height: 100%;
    }
}
/* Career Page Css Over */
/* Contact Us Page Css Start  */
.contact-box a {
    text-decoration: none;
    color: var(--color-dark);
    transition: var(--default-transition);
}
.contact-box a:hover {
    text-decoration: underline;
}
.map {
    height: 450px;
}
/* Contact Us Page Css Over  */
/* Blog Page Css Start */
/* Category Dropdown Styling */
.form-select,
.form-control {
    border-radius: var(--border-radius);
    padding: 10px 15px;
    transition: all 0.3s ease;
}
.form-select:hover,
.form-control:hover {
    border-color: var(--color-primary);
}
.form-select:focus,
.form-control:focus {
    border-color: var(--color-primary);
    outline: none;
}
.form-select:focus,
.form-control:focus {
    box-shadow: none !important;
}
/* Search Input Styling */
/* Search Button */
.search-btn {
    background: var(--color-primary);
    border: none;
    border-radius: var(--border-radius);
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-btn:hover {
    transform: translateY(-2px);
}
.search-btn:active {
    transform: translateY(0);
}
.search-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .search-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .search-btn {
        margin-left: 10px;
    }
}
/* Accessibility */
.form-select:disabled,
.form-control:disabled {
    background-color: var(--color-white);
    color: var(--color-primary);
    cursor: not-allowed;
}
.inner-blog-btn .card-body p:last-of-type {
    font-weight: var(--font-weight-bold);
}
.inner-blog-btn a {
    transition: var(--default-transition);
}
.inner-blog-btn :first-of-type a {
    border: 1px solid var(--color-white) !important;
    height: 100%;
    border-radius: 8px 0px 0px 8px !important;
}
.inner-blog-btn :last-of-type a {
    border: 1px solid var(--color-primary) !important;
    border-radius: 0px 8px 8px 0px !important;
}
.inner-blog-btn :first-of-type a:hover,
.inner-blog-btn a:last-of-type:hover {
    background-color: transparent !important;
    border: 1px solid var(--color-primary) !important;
}
.inner-blog-btn a:last-of-type:hover {
    color: var(--color-dark) !important;
}
.inner-blog .card-body a {
    text-decoration: none;
    color: var(--color-dark);
}
/* Blog Page Css Over  */
/* Gallery Section Css Start  */
/* Swiper Btn Css Start  */
.btn-control {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.swiper-button-next {
    margin-right: 5px;
}
.swiper-button-prev {
    margin-left: 5px !important;
}
.swiper-mygallery .swiper-button-next,
.swiper-mygallery .swiper-button-prev {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    width: unset !important;
    height: unset !important;
    margin-top: unset !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.swiper-mygallery .swiper-button-next::after {
    content: "\F12F" !important;
}
.market-served .swiper-button-prev::after {
    right: 69px;
    position: fixed;
    content: "\F12F" !important;
}
.market-served .swiper-button-next,
.market-served .swiper-button-prev {
    top: 93%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    content: "\F138";
    font-size: 15px !important;
    color: var(--color-white);
    background-color: var(--color-primary);
    font-family: "bootstrap-icons" !important;
    padding: 7px 10px;
    transition: var(--default-transition);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-primary);
}
.market-served .swiper-button-next:hover::after,
.market-served .swiper-button-prev:hover::after {
    background-color: var(--color-white);
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background-color: transparent;
    transition: var(--default-transition);
}
@media (min-width: 576px) {
    .market-served .swiper-button-next,
    .market-served .swiper-button-prev {
        top: 93%;
        display: none;
    }
}
@media (min-width: 992px) {
    .swiper-button-next::after,
    .swiper-button-prev::after {
        content: "\F138";
        font-size: 25px !important;
        color: var(--color-white);
        background-color: var(--color-primary);
        font-family: "bootstrap-icons" !important;
        padding: 5px 10px;
        transition: var(--default-transition);
        border-radius: var(--border-radius);
        border: 1px solid var(--color-primary);
    }
}
/* Swiper Btn Css Over  */
.swiper-mygallery {
    position: relative;
    overflow: hidden;
}
.swiper-mygallery .swiper-slide img {
    width: 100%;
    transition: transform 0.5s ease;
    /* border-radius: 20px; */
    object-fit: cover;
    transition: all 0.5s ease-out;
}
.swiper-mygallery .swiper-slide-active img {
    opacity: 1;
    transition: transform 0.5s ease-out;
}
.swiper-container {
    overflow: hidden;
}
.swiper-mygallery .swiper-slide {
    transition: transform 0.5s ease-out;
    transform: scale(0.85);
}
.swiper-navigation-icon {
    display: none;
}
.swiper-mygallery .swiper-slide-active {
    transform: scale(1) !important;
}
.swiper-mygallery .swiper-slide-prev {
    transform: scale(0.85) translateX(-20px);
}
.swiper-mygallery .swiper-slide-next {
    transform: scale(0.85) translateX(20px);
}
/*
/* Gallery Section Css Over  */
/* Form Section Start  */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: #000000 !important;
    transition: background-color 9999s ease-in-out 0s;
    box-shadow: 0 0 0px 1000px #ffffff inset;
}
/* Form Section Over  */
