@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
    --primary-blue: #005887;
    --primary-red: #ec1950;
    --white: #ffffff;
    --black: #000000;
    --dark-grey: #282828;
    --grey: #abb3b6;
    --green: #0c8032;
    --light-blue: #00a1e4;
    --yellow : #ffba00;
    --light-grey : #888888;
    --medium-grey : #707070;
    --dark-white : #FBFBFB;
    --trans-dur: 0.3s;
	--trans-timing: cubic-bezier(0.65,0,0.35,1);
    
}

* {
    box-sizing: border-box;
}

body {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;    
    /* min-height: 1500px; */
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding-left: 0px;
}

.primary-blue {
    color: var(--primary-blue);
}

.primary-red {
    color: var(--primary-red);
}

.green-text {
    color: var(--green);
}

.medium-grey {
    color: var(--medium-grey);
}


.dark-white {
    color: var(--dark-white);
}
.dark-grey-text {
    color: var(--dark-grey);
}

.grey-text {
    color: var(--light-grey);
}

.primary-blue-bg {
    background: var(--primary-blue);
}

.primary-red-bg {
    background: var(--primary-red);
}
.black-bg {
    background: var(--black);
}

.row {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.header {
    position: relative;
    z-index: 1000;
}

.main-header {
    position: absolute;
    width: 100%;
    /* background: var(--primary-blue); */
    /* height: 125px; */
    display: flex;
}

.sub-header {
    position: fixed;
    width: 100%;
    /* background: var(--primary-blue); */
    /* height: 125px; */
}

.header_logo_section {
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.08));
    height: 138px;
    width: 23.4%;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 20;
}

.header_logo_section::before {
    content: "";
    background: url(../images/shapes/clip-shapes.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.header-logo {
    padding-left: 30px;
    padding-right: 40px;
}

.header-logo figure img {
    max-height: 62px;
    position: relative;
    z-index: 10;
    width: 100%;
}

.side-navs {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
}

.side-navs .top-navbar {
    background-color: var(--grey);
    padding-left: 10px;
    padding-right: 10px;
}

.side-navs .top-navbar .contact-nav {
    background: #dedede;
    border-radius: 0px 10px 0px 0px;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    height: 100%;
    margin-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.side-navs .top-navbar .contact-nav::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: url(../images/shapes/top-nav-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 50%;
    mix-blend-mode: hard-light;
}

.side-navs .top-navbar .contact-nav::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 25.9%;
    background: url(../images/shapes/shadow-clip.png);
    background-repeat: no-repeat;
    background-size: contain;
    left: 0px;

}

.language-selecter {
    background: var(--white);
    border-radius: 20px;
    padding: 5px 10px;
    display: flex;
}

.language-selecter i {
    color: var(--primary-blue);
}

.language-selecter select {
    width: 130px;
    background: none;
    border: 0px;
}

.contact-nav .contact_info {
    position: relative;
    z-index: 20;
    margin-right: 30px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.icon {
    background: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    border-radius: 100%;
    font-size: 18px;
}

.contact-nav .contact_info a {
    color: var(--dark-grey);
}

.contact-nav .contact_info a:hover {
    color: var(--primary-blue);
}

.side-navs .menu-nav {
    background: var(--primary-blue);
    border-top: 4px solid var(--white);
    height: 70px;
    border-radius: 20px 0px 0px 0px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.side-navs .menu-nav .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.side-navs .menu-nav .navbar-nav .nav-link {
    color: var(--white);
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 15px;
    padding-right: 15px;
    height: 100%;
    display: flex;
    align-items: center;
}

.side-navs .menu-nav .navbar-nav .nav-link.active {
    font-weight: 600;
}

.side-navs .menu-nav .navbar-nav .nav-link.active::before {
    content: "";
    width: 100%;
    height: 6px;
    background: var(--light-blue);
    position: absolute;
    left: 0px;
    bottom: 0px;
    border-radius: 6px 6px 0px 0px;
}

.side-navs .menu-nav .navbar-nav .nav-link:hover {
    color: var(--grey);
}

.inquiry-btn {
    height: 100%;
    padding: 0px 40px;
    display: flex;
    align-items: center;
    background: linear-gradient(-144deg, rgba(0, 94, 145, 1) 0%, rgba(0, 153, 236, 1) 100%);
    color: var(--white) !important;
    gap: 8px;
    margin-left: 30px;
    position: relative;
    z-index: 10;
}

.mobile-nav {
    background: var(--primary-blue);
    width: 100%;
    height: 100px;
    position: absolute;
    padding: 10px 30px;
}

.toggle-button {
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    z-index: 10;
}

.toggle-button .navbar-toggler {
    border: none;
    color: var(--white);
}

.toggle-button .navbar-toggler:focus {
    box-shadow: none;
}

.toggle-button .navbar-toggler:hover {
    color: var(--grey);
}

.mobile-offcanvas .offcanvas-end {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(60px) opacity(20%) brightness(5.6%);
    color: var(--white);
    padding: 20px;
    overflow-y: scroll;
}

.offcanvas-logo img {
    height: 50px;
    filter: drop-shadow(0px 4px 2px rgba(255, 255, 255, 0.9));
}

.mobile-offcanvas .offcanvas-end .container .col {
    margin-bottom: 15px;
    text-align: center;
}

.mobile-offcanvas .offcanvas-end .container .row a {
    backdrop-filter: blur(4px);
    color: hsla(0, 0%, 100%, .9);
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-color: #005887d6;
    border-color: 1px solid hsla(201.2, 100%, 26.1%, 0.60);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    text-align: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-offcanvas .offcanvas-end .container a:hover , .mobile-offcanvas .offcanvas-end .container a.active{
    color: var(--white) !important;
    background-color: hsla(201.2, 100%, 26.1%, 0.40);
}

.hero-section {
    position: relative;
    overflow: clip;
    /* padding-bottom: 150px; */
    z-index: 12;
}

.hero-section-slider .item {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
    background-position-x: center !important;
    background-position-y: 100% !important;
    min-height: 960px;
}

/* .hero-section-slider .item::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 48%);
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-section-slider .item::after {
    content: "";
    position: absolute;
    height: 100%;
    max-width: 100%;
    background: url(../images/clip-slide.png);
    mix-blend-mode: soft-light;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 20% 50%;
    bottom: 0px;
    right: -9px;
    width: 100%;
} */
.hero-section-slider .item .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 13;
    padding-top: 200px;
    /* padding-bottom: 100px; */
}

.hero-section-slider .item .container h1 {
    position: relative;
    padding-bottom: 35px;
    line-height: 1.2;
}

.hero-section-slider .item .container h1::after {
    content: "";
    background: url(../images/shapes/underline-bg.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    height: 26px;
    width: 100%;
    bottom: 0px;
    left: 0px;
    position: absolute;
}

.primary-btn,
.primary-btn:focus {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    gap: 5px;
    border-radius: 30px;
    border: 2px solid var(--white);
    background: linear-gradient(40deg, rgb(1, 107, 165) 0%, rgb(0, 153, 236) 100%);
    width: fit-content;
}

.primary-btn:hover {
    border: 2px solid var(--white);
    background: linear-gradient(240deg, rgb(1, 107, 165) 0%, rgb(0, 153, 236) 100%);
    color: var(--white);
}

img.product-imgs {
    /* box-shadow: 0px 0px 27px 50px rgba(255,255,190,0.24); */
    filter: drop-shadow(0px 13px 6px rgba(255, 255, 190, 0.50));
    position: relative;
    z-index: 12;
}

.round-section {
    height: 381px;
    overflow-x: clip;
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    /* bottom: -293px */
    bottom: -371px;
}

.round-section::before {
    content: "";
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 251, 227) 100%);
    position: absolute;
    top: -50px;
    left: auto;
    right: auto;
    width: 3132px;
    height: 381px;
    border-radius: 50%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    z-index: 11;
}

.about-section {
    position: relative;
    z-index: 10;
    background-color: var(--white);
    padding-bottom: 200px;
}

.about-section .container {
    position: relative;
    z-index: 12;
    padding-top: 100px;
}

.heading-text {
    position: relative;
    padding-bottom: 15px;
}

.heading-text::before {
    content: "";
    position: absolute;
    background: url(../images/shapes/underline-bg.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    height: 26px;
    max-width: 354px;
    width: 100%;
    bottom: 0px;
}

.secondary-btn {
    background: linear-gradient(40deg, rgba(1, 107, 165, 1) 0%, rgba(0, 153, 236, 1) 100%);
    border-radius: 30px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 1;
    width: fit-content;
    color: var(--white);
    transition: background 400ms, color 300ms, font-weight 200ms;
    border: 2px solid transparent;
}

.secondary-btn:hover {
    background: linear-gradient(270deg, rgb(243, 250, 255) 0%, rgba(221, 221, 221, 0.808) 100%);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.v_section {
    /* max-height: 462px; */
    height: 462px;
}

.video_play_btn_section {
    border-radius: 25px;
    height: 462px;
    width: 130%;
    position: absolute;
    background-color: black;
    overflow: clip;
    margin-left: -30%;
}

.video_play_btn_section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/video-bg.png);
    background-size: cover;
    background-position: 40% 60%;
    background-repeat: no-repeat;
}

.lightbox {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: scroll;
    position: fixed;
    display: none;
    z-index: 200;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}

.lightbox-container {
    position: relative;
    max-width: 960px;
    margin: 200px auto;
    display: block;
    padding: 0 3%;
    height: auto;
    z-index: 10;
}

.lightbox-content {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
    text-transform: uppercase;
    background: transparent;
    position: absolute;
    font-weight: 300;
    font-size: 15px;
    display: block;
    border: none;
    color: white;
    top: -25px;
    right: 6%;
}

.video-container {
    padding-bottom: 56.25%;
    position: relative;
    padding-top: 70px;
    overflow: hidden;
    height: 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}



.video-play-btn {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 100px;
    height: 100px;
    /* background: #fa183d; */
    border-radius: 50%;
    /* padding: 18px 20px 18px 28px; */
    box-shadow: none;
    border: none;
    background: none;
    z-index: 20;
}

.video-play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ba1f24;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-btn:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fa183d;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-btn:hover:after {
    background-color: darken(#fa183d, 10%);
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-play-btn span {
    color: var(--white);
    position: relative;
    z-index: 20;
}
.our_product_section {
    background: url(../images/our_product_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -120px;
    min-height: 1150px;
    position: relative;
    z-index: 20;
    padding-top: 110px;
    padding-bottom: 100px;
}
.Product-Slider {
    margin-top: 50px;    
    margin-bottom: 60px;
}
.product_item_card {
    position: relative;
    max-width: 486px;
    width: 100%;
    height: 526px;
    border-radius: 18px;
    background-color: rgb(249, 249, 239);
    box-shadow: 5px 8.66px 26px 0px rgba(24, 24, 24, 0.6);
    overflow: clip;
    padding: 50px 30px 32px;    
}
.product_item_card:hover {
    box-shadow: 0px 15px 26px 0px rgba(24, 24, 24, 0.9);
}
.product_item_card::before {
    content: "";
    position: absolute;
    width: 913px;
    height: 590px;
    background: url(../images/shapes/product-shapes.png);
    background-position: center;
    background-repeat: no-repeat;
    left: -110px;
    top: -66px;
    opacity: 3%;
}   
.product_item_card figure img {
    z-index: 11;
    position: relative;
    height: 350px;
    object-fit: contain;
}
.product_title {
    min-height: 60px;
    text-align: center;
    display: block;
    line-height: 1.3;
}
.product_item_card .product-details {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 15;
}
.product_title p {
    text-decoration: none;
    position: relative;
}
.product_title p:hover {
    text-decoration: underline !important;
}
.Product-Slider .owl-nav{
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0px;
    bottom: 0px;
    align-items: center;
    z-index: -1;
}
.Product-Slider .owl-nav button {
    background: var(--dark-grey) !important;
    color: var(--white) !important;
    width: 60px;
    height: 60px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
    font-size: 16px !important;
    margin: 0px !important;
}
.Product-Slider .owl-nav .owl-prev {
    position: absolute;
    left: -70px;
}
.Product-Slider .owl-nav .owl-next {
    position: absolute;
    right: -70px;
}
.our_services_section {
    background: url(../images/services-bg.png);
    background-position: 50% 15%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}
.services_title h5 {
    color: var(--dark-grey);
}
.our_testimonial_section {
    background-color: #252c2f;
    /* height: 832px; */
    position: relative;
    overflow: clip;
}
.our_testimonial_section::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: url(../images/testimonial-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 10%;
}
.our_testimonial_section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}
.testimonial-heading {
    padding-bottom: 100px;
}
.testimonial_slider {
    max-width: 970px;
    margin: auto;
}
.testimonial_slider .item {
    padding-top: 50px;    
}
.client-review-slider {
    max-width: 970px;
    width: 100%;
    border-radius: 18px;
    background: var(--white);
    /* height: 350px; */
    padding: 60px 45px;
}
.quote-img {
    width: 101px;
    height: 101px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--green);
    margin-top: -100px;
    position: relative;
    z-index: 32;
    color: var(--white);
    font-size: 60px;
}
.client-review-text {
    margin-top: 20px;
}
.client-review-text > * {
    font-size: 22px;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 25px;
}
.client-review-slider hr {
    border-top: 2px solid var(--grey);
    margin: 0px;
    margin-bottom: 25px;
}
.yellow-star {
    color: var(--yellow);
}
.grey-star {
    color: var(--grey);
}
.testimonial_slider .owl-nav button {
    color: var(--white) !important;
    font-size: 24px !important;
    opacity: 0.6;
    padding: 5px !important;
}
.testimonial_slider .owl-nav button.owl-prev {
    padding: 5px !important;
    left: -50px;
    position: absolute;
}
.testimonial_slider .owl-nav button.owl-next {
    padding: 5px !important;
    right: -50px;
    position: absolute;
}
.testimonial_slider .owl-nav {
    margin: auto;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0px;
    right: 0px;
    align-items: center;
    top: 0px;
    bottom: 0px;
    z-index: -1;
}
.get_in_touch_section {
    position: relative;    
}
.get_in_touch_section::before {
    content: "";
    position: absolute;
    height: 1290px;
    width: 100%;
    background: url(../images/get-in-touch-bg.png);
    background-size: cover;
    background-position: center 100%;
    background-repeat: no-repeat;
    opacity: 0.2;
    bottom: 0px;
    z-index: -1;
}
.get_in_touch_section::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(255,253,243,0) 48%, rgba(255,255,255,1) 100%);
    fill: 0%;
    z-index: 5;
    top: 0px;
}
.get_in_touch_section .container {
    padding-top: 100px;
    padding-bottom: 200px;
}
.get-in-touch-box {
    border: 3px solid var(--primary-blue);
    border-radius: 16px;
    background-color: rgb(255, 255, 255);
    box-shadow: 10px 17.321px 26px 0px rgba(24, 24, 24, 0.1);
    position: relative;
    z-index: 10;
    overflow: clip;
}
.get-in-contact {
    padding: 60px;
}
.get-in-touch-form textarea {
    height: 120px !important;
    resize: none;
}
.footer {
    background: url(../images/footer-bg.png);
    background-position: center 0%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -80px;
    padding-top: 80px;
    z-index: 50;
    position: relative;
}
.footer-logo img {
    max-height: 109px;
    max-width: 230px;
}
.footer .footer-links li > * {
    color: var(--white);
}
.footer .footer-links li {
    margin-bottom: 15px;
}
.footer .footer-links li a{
    font-size: 16px;
    color: var(--white);    
    width: fit-content;
    display: block;
    position: relative;
}
.footer .footer-links li:first-child {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.gst-in-box {
    border: 1px solid var(--white);
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.20);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}
.social-links li {
    background-color: var(--black);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.social-links li a {
    color: var(--white);
}
.footer hr {
    border-color: var(--white);
}
.map-frame {
    min-height: 400px;
}
.tm-linkHover01 .effect-1:before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
}
.tm-linkHover01 .effect-1:hover:before {
    transform: scaleX(1);
}
.tm-linkHover01 a:before, .tm-linkHover01 a:after, .tm-linkHover01 a > span:before, .tm-linkHover01 a > span:after {
    content: '';
    position: absolute;
    transition: transform .5s ease;
}
.social-links li:hover {
    background: var(--primary-red);
}

.banner-section {
    height: 520px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--black);
}
.about-header::after {
    content:"";
    background: url(../images/background/about-bg.webp);
    background-position: 50% 10%;
    background-repeat: no-repeat;
    background-size: cover;
    height:100%;
    width:100%;
    position:absolute;
    top: 0px;
    left: 0px;
    mix-blend-mode: luminosity;
    opacity: 50%;
}
.banner-section .container {
    margin-top: 90px;
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.banner-section h1 {
    position: relative;      
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    width: max-content;
    text-shadow: 0px 0px 12.9px #0C8032;
    color: var(--white);
}
.banner-section h1 span {
    color: var(--primary-red);
}
.header-h1-font {
    position: relative;
    padding-bottom: 10px;
}
.header-h1-font::after {
    content: "";
    position: absolute;
    background: url(../images/shapes/underline-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 24px;
    left: 0px;
    bottom: -10px;
    max-width: 336px;
}
.breadcrumb-item.active {
    color: var(--white);
}
.breadcrumb-item + .breadcrumb-item::before { 
    color: var(--white);
}
.info-section {
    margin-top: 40px;
    margin-bottom: 40px;
}
.info-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.about-us-section {
    background: url(../images/background/about-us-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: clip;
}
.about-us-section::before {
    content: '';
    position: absolute;
    background: var(--black);
    opacity: 62%;
    height: 100%;
    width: 100%;
}
.about-us-section .container-sm {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 3;
}
.image-block img {
    width:100%; 
    border-radius: 20px;
    position: relative;
    z-index: 1;
    max-width: 400px;
}
.image-block1 img{
    -webkit-box-shadow: -20px 20px 35px #dcdcdc, 20px -40px 35px #ffffff;
    box-shadow: -20px 20px 35px #dcdcdc, 20px -40px 35px #ffffff;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    width:100%;
}
.image-block img{
    -webkit-box-shadow: -20px 20px 35px #dcdcdc, 20px -40px 35px #ffffff;
    box-shadow: -20px 20px 35px #dcdcdc, 20px -40px 35px #ffffff;
    -webkit-border-radius: 20px;
}
.image-block {
    position: relative;
    z-index: 10;
    width: fit-content;
}
.upset {
    position:relative;
    z-index:5
}
.bg-shape:after{
    content: '';
    background: url(../images/shapes/shape-1.svg);
    background-size: auto;
    position: absolute;
    height: 150px;
    width: 150px;
    background-repeat: no-repeat;
    left: -40px;
    top: -40px;
    z-index: 0;
}
.bg-shape:before{
    content: '';
    background: url(../images/shapes/shape-2.svg);
    background-size: auto;
    position: absolute;
    height: 150px;
    width: 150px;
    background-repeat: no-repeat;
    right: -40px;
    bottom: -40px;
}
.mission-vision-section {
    margin-bottom: 60px;
    overflow: clip;
}
.mission-vision-section ul {
    padding-left: 16px;
    list-style: disc;
}
.history-section {
    position: relative;
    background: url(../images/background/history-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;    
    padding-top: 60px;
    padding-bottom: 140px;
}

/* timelien start*/
.timeline-div {
    max-width: 900px;
    margin: auto;
}

.timeline {
	margin: auto;
	width: 100%;
	max-width: 900px;
}
.timeline__arrow {
	background-color: transparent;
	border-radius: 0.25em;
	cursor: pointer;
	flex-shrink: 0;
	margin-inline-end: 0.25em;
	outline: transparent;
	width: 2em;
	height: 2em;
	transition: background-color calc(var(--trans-dur) / 2) linear, color var(--trans-dur);
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
    border: 0px;
}
.timeline__arrow:focus-visible,
.timeline__arrow:hover {
	background-color: transparent;
}
.timeline__item:not(:last-child):before {
	background-color: currentColor;
	content: "";
	display: block;
	position: absolute;
	top: 1em;
	left: 2.625em;
	width: 0.125em;
	height: 100%;
	transform: translateX(-50%);
}
.timeline__arrow-icon {
	display: block;
	pointer-events: none;
	transform: rotate(-90deg);
	transition: transform var(--trans-dur) var(--trans-timing);
	width: 100%;
	height: auto;
}
.timeline__date {
	font-size: 13px;
	line-height: 2.4;
    color: var(--white);
}
.timeline__dot {
	background-color: var(--white);
	border-radius: 50%;
	display: inline-block;
	flex-shrink: 0;
	margin: 0.625em 0;
	margin-inline-end: 0.5em;
	position: relative;
	width: 0.75em;
	height: 0.75em;
}
.timeline__item {
	position: relative;
	padding-bottom: 36px;
}
.timeline__item:not(:last-child):before {
	background-color: var(--white);
	content: "";
	display: block;
	position: absolute;
	top: 1em;
	left: 2.625em;
	width: 0.125em;
	height: 100%;
	transform: translateX(-50%);
}
[dir="rtl"] .timeline__arrow-icon {
	transform: rotate(90deg);
}
[dir="rtl"] .timeline__item:not(:last-child):before {
	right: 2.625em;
	left: auto;
	transform: translateX(50%);
}
.timeline__item-header {
	display: flex;
}
.timeline__item-body {
	border-radius: 0.375em;
	overflow: hidden;
	margin-top: 8px;
	margin-inline-start: 55px;
	height: 0;
}
.timeline__item-body-content {
	background-color: var(--dark-white);
	opacity: 0;
    font-size: 15px;
	padding: 10px;
    font-weight: 300;
	visibility: hidden;
	transition:	opacity var(--trans-dur) var(--trans-timing), visibility var(--trans-dur) steps(1,end);
}

.timeline__meta {
	width: 100%;
}
.timeline__title {
	font-size: 24px;
	line-height: 1.333;
    color: var(--white);
}
/* Expanded state */
.timeline__item-body--expanded {
	height: auto;
}
.timeline__item-body--expanded .timeline__item-body-content {
	opacity: 1;
	visibility: visible;
	transition-delay: var(--trans-dur), 0s;
}
.timeline__arrow[aria-expanded="true"] .timeline__arrow-icon {
	transform: rotate(0);
}
.timeline__item:last-child {
    padding-bottom: 0px;
}
/* timeline end */

.our-product-header::after {
    content:"";
    background: url(../images/background/our-products-bg.webp);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height:100%;
    width:100%;
    position:absolute;
    top: 0px;
    left: 0px;
    mix-blend-mode: luminosity;
    opacity: 50%;
}
.Our-product-detail-header::after {
    content:"";
    background: url(../images/background/product-bg.webp);
    background-position: 50% 20%;
    background-repeat: no-repeat;
    background-size: cover;
    height:100%;
    width:100%;
    position:absolute;
    top: 0px;
    left: 0px;
    mix-blend-mode: luminosity;
    opacity: 50%;
}
.Video-header::after {
    content:"";
    background: url(../images/background/videos-bg.webp);
    background-position: 50% 0%;
    background-repeat: no-repeat;
    background-size: cover;
    height:100%;
    width:100%;
    position:absolute;
    top: 0px;
    left: 0px;
    mix-blend-mode: luminosity;
    opacity: 50%;
}
.why-us-bg-header::after {
    content:"";
    background: url(../images/background/why-us-bg.webp);
    background-position: 50% 0%;
    background-repeat: no-repeat;
    background-size: cover;
    height:100%;
    width:100%;
    position:absolute;
    top: 0px;
    left: 0px;
    mix-blend-mode: luminosity;
    opacity: 50%;
}
.Gallery-header::after {
    content:"";
    background: url(../images/background/gallery-bg.webp);
    background-position: 50% 30%;
    background-repeat: no-repeat;
    background-size: cover;
    height:100%;
    width:100%;
    position:absolute;
    top: 0px;
    left: 0px;
    mix-blend-mode: luminosity;
    opacity: 50%;
}
.Gallery-detail-header::after {
    content:"";
    background: url(../images/background/gallery-details-bg.webp);
    background-position: 50% 35%;
    background-repeat: no-repeat;
    background-size: cover;
    height:100%;
    width:100%;
    position:absolute;
    top: 0px;
    left: 0px;
    mix-blend-mode: luminosity;
    opacity: 50%;
}
.Contact-header-bg::after {
    content:"";
    background: url(../images/background/contact-us-bg.webp);
    background-position: 50% 30%;
    background-repeat: no-repeat;
    background-size: cover;
    height:100%;
    width:100%;
    position:absolute;
    top: 0px;
    left: 0px;
    mix-blend-mode: luminosity;
    opacity: 50%;
}
.career-header::after{
    content:"";
    background: url(../images/background/career-bg.webp);
    background-position: 50% 20%;
    background-repeat: no-repeat;
    background-size: cover;
    height:100%;
    width:100%;
    position:absolute;
    top: 0px;
    left: 0px;
    mix-blend-mode: luminosity;
    opacity: 50%;
}
.Prodcut-section {
    margin-top: 60px;
    margin-bottom: 70px;
}
.product-divide-heading {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
.product-divide-heading h3{
    color: var(--primary-red);
    text-align: center;
    background: var(--white);
    padding: 0px 10px;
    font-weight: 600;
    font-size: 36px;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}
.product-divide-heading::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #c8c8c8;
    position: absolute;
}
.product-catloug-div {
    padding-bottom: 70px;
}
.product-catloug-div .product_item_card {
    background: var(--white);
    height: 506px;
    box-shadow: 5px 8.66px 10px 0px rgba(24, 24, 24, 0.60);
    transition: all .5s ease-out;
}
.product-catloug-div .product_item_card:hover {
    box-shadow: 5px 15px 10px 0px rgba(24, 24, 24, 0.90);
    transition: all .5s ease-out;
}
.product-catloug-div  .product_item_card figure img {
    width: 100%;
}
.product-detail-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    width: 100%;
    border-radius: 18px;
    background: rgba(0, 88, 135, 0.08);
    box-shadow: 0px 0px 38.5px -8px rgba(0, 0, 0, 0.13);
    overflow: hidden;
}
.product-detail-img img {    
    filter: drop-shadow(0px 8px 7.6px rgba(0,0,0,0.49));
    object-fit: cover;
    width: 100%;
    margin: auto;
    height: 100%;
}
.product-description > *{
    color: var(--medium-grey);
    font-size: 20px;
    margin: 0px;
    font-weight: 400;
    line-height: 150%;
}
.product-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.product-description ul {
    list-style: disc;
    padding-left: 16px;
}
.product-description ul li {
    line-height: 30px;
    margin-bottom: 3px;
}
.product-technical-section {
    margin-bottom: 130px;
}
.product-technical-section .table {
    border-color: #5B5B5B;
}
.product-technical-section .table thead tr th {
    color: #0241A0;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 15px;
}
.product-technical-section .table tbody tr {
    vertical-align: middle;
}
.product-technical-section .table thead tr th:nth-child(1) {
    min-width: 336px;
}
.product-technical-section .table tbody tr th {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}
.product-technical-section .table tbody tr td {
    padding: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #323232;
}
.our-video-section {
    margin-bottom: 140px;
}
.video-div {
    row-gap: 40px;
}
.video-box {
    border-radius: 15px;
    box-shadow: 3px 5px 24.7px -1px rgba(0, 88, 135, 0.57);
    height: 300px;
    max-width: 400px;
    width: 100%;
    overflow: clip;
}
.why-choose-section {
    margin-bottom: 60px;
}
.why-choose-section figure {
    box-shadow: 0px 6px 48px 0px rgba(0, 0, 0, 0.32);
    border-radius: 20px;
}
.why-us-description {
    display: flex;
    flex-direction: column;
    gap: 23px;
}
.why-us-description > * {
    margin: 0px;
    color: #323232;
}
.why-us-description p , .why-us-description span, .why-us-description ul {
    font-size: 20px;
    line-height: 24px;
}
.customer-section {
    background: linear-gradient(180deg, #005887 0%, #000 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: clip;
    padding-top: 60px;
    padding-bottom: 140px;
}
.customer-section::after {
    content: "";
    background:   linear-gradient(0deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.34) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    position: absolute;
    width: 100%;
    height: 100%;
    mix-blend-mode: luminosity;   
    top: 0px;
}
.customer-section::before {
    content: "";
    background:  url(../images/background/support-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 80%;
    position: absolute;
    width: 100%;
    height: 100%;
    mix-blend-mode: luminosity;
    top: 0px;
}
.customer-section .container-sm {
    position: relative;
    z-index: 3;
}
.customer-section .customer-description > * {
    margin: 0px;
}
.customer-section .customer-description {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.customer-section .customer-description ol ,  .customer-section .customer-description ul {
    list-style: decimal;
}
.customer-section .customer-description li {
    margin-bottom: 5px;
}
.customer-section img {
    box-shadow: 0px 4px 19.1px 13px rgba(0, 0, 0, 0.35);
}
.gallery-section {
    margin-bottom: 140px;
}
.gallery-section .header-h1-font {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-section .header-h1-font::after { 
    left: auto;
}
.gallery-box {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 18px;
    background: #FFF;
    box-shadow: 0px 4px 22px -1px rgba(0, 0, 0, 0.25);
    transition: all .3s linear;
}
.gallery-box figure {
    height: 304px;
    border-radius: 12px;
    box-shadow: 0px 4px 15.5px -8px rgba(0, 0, 0, 0.54);
    position: relative;
    overflow: clip;
    transition: all .3s linear;
}
.gallery-box figure .hover-object {
    visibility: hidden;
    transition: all .3s linear;
}
.gallery-box:hover figure .hover-object {
    position: absolute;
    background: rgba(2, 65, 160, 0.81);
    visibility: visible;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 35px;
    transition: all .3s linear;
}
.gallery-detail-section {
    margin-bottom: 140px;
}
.image-box {
    max-width: 400px;
    width: 100%;
    max-height: 300px;
    height: 100%;
    position: relative;
    transition: all .3s ease-in-out;
    border: 2px solid var(--white);
}
.image-box img{
    max-width: 400px;
    width: 100%;
    max-height: 300px;
    height: 100%;
    object-fit: cover;    
    position: relative;
    transition: all .3s ease-in-out;
}
.image-box::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: -1;
    transition: all .3s ease-in-out;
}
.image-box:hover::after {
    left: 0px;
    top: 0px;
    transition: all .3s ease-in-out;
}
.image-box .open-img {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: radial-gradient(21.83% 21.83% at 50% 51.33%, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.72) 100%);
    transition: all .3s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}
.image-box:hover {
    border: 2px solid #CDCDCD;
    transition: all .3s ease-in-out;
}
.image-box:hover .open-img {
    visibility: visible;
    z-index: 1;
    font-size: 40px;
    transition: all .3s ease-out;
}
.contact-us-bg {
    background: var(--primary-blue);
    height: 270px;
}
.contact-us-info {
    margin-top: -200px;
}
.contact-card {
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0px 4px 52.8px -14px rgba(0, 0, 0, 0.25);
    display: flex;    
    align-items: center;
    gap: 11px;
}
.contact-card .icons {
    color: var(--primary-blue);
    font-size: 52px;
}
.send-us-section {
    margin-bottom: 140px;
}
.send-us-section .send-box {
    border-radius: 18px;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    box-shadow: 0px 4px 32.5px -3px rgba(0, 88, 135, 0.44);
    overflow: clip;
}
.send-form-box {
    padding: 30px;
}
.send-form-box input , .send-form-box textarea{
    border-radius: 18px 16px;
    background: #F6F8F9;
    border: 0px;
    padding: 18px;
}
.send-form-box textarea {
    height: 180px;
    resize: none;
}
.send-form-box input::placeholder {
    color: #7F879E;
    font-size: 14px;
    opacity: 1;
}
.map-box {
    min-height: 400px;
    height: 100%;
}
.about-career-section .header-h1-font::after {
    max-width: 220px;
}
.benefits-section {
    border-top: 5px solid var(--primary-red);
    border-bottom: 5px solid var(--primary-red);
    background: url(../images/background/benefit-section.jpg);
    background-position: 50% 40%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.benefits-section::after {
    content: "";
    background: rgba(0, 0, 0, 0.47);
    backdrop-filter: blur(5px);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
}
.benefits-section .container-sm{
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.benefits-section h3::after {
    left: 0pc;
    right: 0pc;
    margin: auto;
}
.benefits-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
}
.benefit-icon {
    height: 50px;
}
.benefit-icon i, .benefit-icon svg{
    font-size: 50px;
    height: 50px;
    color: var(--white);
}
.job-post-section {
    margin-top: 60px;
    margin-bottom: 140px;
}
.jobs-divide-heading {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.jobs-divide-heading h3{
    color: var(--primary-red);
    text-align: center;
    background: var(--white);
    padding: 0px 10px;
    font-weight: 600;
    font-size: 36px;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}
.jobs-divide-heading::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #c8c8c8;
    position: absolute;
}
.job-divs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.job-box {
    padding: 30px 23px;
    border-radius: 15px;
    background: linear-gradient(270deg, #FCFCFC 0%, #EEE 100%);
    box-shadow: 0px 7px 20.7px -7px rgba(0, 0, 0, 0.25);
}
.job-description {
    color: #606060;
    margin-bottom: 20px;
    font-size: 16px;
}
.job-location {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
}
.grey-btn {
    background: linear-gradient(270deg, rgb(243, 250, 255) 0%, rgba(221, 221, 221, 0.808) 100%);    
    border-radius: 30px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 1;
    width: fit-content;
    color: var(--primary-blue);    
    transition: background 400ms, color 300ms, font-weight 200ms;
    border: 2px solid var(--primary-blue);    
}
.grey-btn:hover {
    background: linear-gradient(40deg, rgba(1, 107, 165, 1) 0%, rgba(0, 153, 236, 1) 100%);
    color: var(--white);
    border: 2px solid transparent;
}
.applymodal textarea{
    height: 150px !important;
    resize: none;
}
#on-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}
#popup {
    width: 1000px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.175);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    position: relative;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    padding: 20px;
}
#popup .close-modal {
    background: none;
    box-shadow: none;
    border: none;
    top: -24px;
    right: -10px;
    position: absolute;
}
.enquiry-section {
    margin-bottom: 140px;
}
.enqiry-box {
    border-radius: 18px;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    box-shadow: 0px 4px 32.5px -3px rgba(0, 88, 135, 0.44);
    overflow: clip;
    padding: 30px;
}
.enqiry-box textarea {
    height: 180px !important;
    resize: none;
}