@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

/*
font-family: "Google Sans", sans-serif;
*/

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('../fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('../fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Regular';
    src: url('../fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --theme-color: #154677;
    --black: #000;
    --white: #fff;
    --paragraph: #343434;
}

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
	font-family: 'Satoshi-Regular';
}

::selection {
    background-color: var(--theme-color);
    color: #fff;
    text-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi-Bold';
    margin: 0;
    padding: 0;
}

p {
    font-family: "Google Sans", sans-serif;
    font-size: 17px;
    padding: 0;
    margin: 0;
    color: var(--paragraph);
    font-weight: 400;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border: none;
}

a {
    text-decoration: none;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

.p-80 {
    padding: 80px 0;
}

.title1 h1 {
    font-size: 60px;
    color: var(--black);
    line-height: 65px;
    position: relative;
    text-shadow: 2px 2px #d5d5d563;
}

.title2 h2 {
    font-size: 65px;
    color: var(--white);
    position: relative;
}

.title3 h3 {
    font-size: 48px;
    color: var(--black);
    margin-bottom: 10px;
}

.title3 h6 {
    font-family: "Google Sans", sans-serif;
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title4 h4 {
    font-size: 34px;
    color: var(--black);
    transition: 0.6s;
}

.title5 h5 {
    font-size: 30px;
    color: var(--black);
}

.title6 h6 {
    font-size: 16px;
    color: var(--paragraph);
    font-weight: 500;
    margin-bottom: 0px;
    transition: 0.6s;
}

.btn01 {
    font-family: "Google Sans", sans-serif;
    position: relative;
    font-size: 16px;
    border-radius: 30px;
    padding: 10px 22px;
    color: var(--white);
    text-align: center;
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    transition: 0.6s;
    display: inline-block;
}

.btn01:hover {
    background-color: #22457645;
    border-color: #22457645;
    color: var(--theme-color);
}


/*// backToTop //*/
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; padding: 4px; background: linear-gradient(to bottom, #224576, #224576); border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 1000; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); border: 1px solid rgb(255 255 255 / 89%); transition: 0.6s; }
#backToTop .fa-arrow-up { font-size: 18px; color: #fff; top: -1px; position: relative; }
#backToTop:hover { background-color: #f15c5a; transform: scale(1.1); }
#backToTop:hover svg { transform: translateY(-3px); }
/*// backToTop //*/

.form-select:focus {
    box-shadow: none;
}

a {
    text-decoration: none;
}

.text_tag h6 {
    font-size: 20px;
    color: var(--tag);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ======================================================================= */
    /* header start */
/* ======================================================================= */

.headerarea {
    padding: 25px 0;
    /*box-shadow: hsla(0 0% 0% / 0.1) 0 0.5rem 1rem;*/
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 11;
}

.headerarea .logo, .footer_sec .logo {
    width: 100%;
    max-width: 250px;
    position: relative;
    display: inline-block;
}

.header-body {
    width: 100%;
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px;
}

.nav-menu > li > a:hover {
    color: var(--theme-color);
}

.headerarea.fix .logo {
    max-width: 230px;
}

.headerarea.fix {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    background-color: #fff;
    padding: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/**/
.lang-select {
    position: relative;
    width: 100px;
}

.lang-select .selected {
    font-family: "Google Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid #ccc;
    padding: 10px 10px;
    border-radius: 30px;
    cursor: pointer;
    background: #fff;
    width: 100px;
}

.lang-select .selected img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
}

.lang-select .selected span {
    flex: 1;
    font-size: 14px;
}

.lang-select .arrow {
    width: 6px;
    height: 6px;
    border: solid #333;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
    transition: 0.3s;
}

.lang-select.active .arrow {
    transform: rotate(-135deg);
}

.lang-select .dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    display: none;
    z-index: 10;
}

.lang-select.active .dropdown {
    display: block;
}

.lang-select .dropdown li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
}

.lang-select .dropdown li img {
    width: 20px;
    height: 14px;
}

.lang-select .dropdown li:hover {
    background: #f2f2f2;
}


/* ======================================================================= */
    /* banner_sec start */
/* ======================================================================= */
.banner_sec {
    width: 100%;
    max-width: 100%;
    height: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner_sec .title1 {
    width: 55%;
    position: relative;
    margin-top: 150px;
}

.banner_sec .title1 p {
    font-size: 22px;
    margin: 20px 0 20px;
    width: 60%;
    color: #000;
    text-shadow: 0px 2px 1px #ffffff36;
    font-weight: 500;
}
/*.banner_sec:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff1c;
}*/

.btn02 {
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 15px;
    color: var(--black);
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    background-color: var(--white);
    border: 1px solid var(--white);
    display: inline-block;
    transition: 0.6s;
    letter-spacing: 1px;
}

.btn02::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--theme-color);
    border-radius: 10px;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn02:hover::before {
    transform: scale(1);
}

.btn02:hover {
    border-color: var(--theme-color);
    color: var(--white);
    transform: scale(1);
}

/* ======================================================================= */
    /*  about_sec start */
/* ======================================================================= */
.on_counter {
    width: 100%;
    padding: 50px 0;
    border-bottom: 1px solid #cdcdcd;
}

.counter_card {
    width: 100%;
    position: relative;
    text-align: center;
}

.counter_card:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%), #a2a2a2, rgb(255 122 122 / 0%));
    transform: translateX(12px);
}

.on_counter h2 {
    font-size: 80px;
    color: var(--black);
    font-weight: 600;
}

.on_counter h6 {
    font-family: "Google Sans", sans-serif;
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
}

.on_counter .col-lg-3:last-child .counter_card:after {
    display: none;
}

/* ======================================================================= */
    /*  who_weare start */
/* ======================================================================= */
.who_weare {
    width: 100%;
}

.who_wearepic {
    width: 100%;
    height: 550px;
    position: relative;
    display: flex;
    overflow: hidden;
}

.who_wearepic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.who_weare .title3 p {
    margin-top: 15px;
}

.who_weare .btn02 {
    border-radius: 10px;
    text-transform: uppercase;
    margin-top: 25px;
}

.who_weare .btn02 {
    color: var(--white);
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
}

.who_weare .btn02::before {
    background-color: var(--black);
}

.who_weare .btn02:hover {
    border-color: var(--black);
}


/* ======================================================================= */
    /* key_differentiator start */
/* ======================================================================= */
.key_differentiator {
    width: 100%;
}

.key_differentiator .title3 {
    width: 65%;
    margin: 0 auto 80px;
}

/* .key_card {
    width: 100%;
    border: 2px solid #1D1D1D;
    border-right: none;
    border-top: none;
    padding: 0 0 20px 20px;
    border-radius: 0 0 0 25px;
    margin-bottom: 55px;
    position: relative;
    display: inline-block;
} */

/* .key_card:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 80px;
    height: 2px;
    background-color: #1D1D1D;
    z-index: -1;
} */
.key_card {
    width: 100%;
    border: 2px solid #E5E5E5;
    padding: 16px;
    border-radius: 25px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
	transition:0.5s;
}
.key_card:hover{
	border-color:#154677;
	background-color:#154677;
}
.key_cardin {
	width: 100%;
	height: 100%;
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}

.key_circle {
    width: 72px;
    height: 72px;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
	align-self:start;
    margin: 0 0 70px 15px;
    transition: 0.6s;
}
.key_circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(21 70 119 / 8%);
    border-radius: 50%;
    transform: translate(-10px, 2px);
}
.key_card:hover .key_circle::before {
    background-color: rgb(245 245 245 / 10%);
}
.key_circle img {
    max-width: 52px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(0%) sepia(6%) saturate(7478%) hue-rotate(260deg) brightness(91%) contrast(105%);
}
.key_card:hover .key_textbox{
	background-color:#ffffff;
}
.key_card:hover .key_circle img{
	filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(0%) hue-rotate(280deg) brightness(102%) contrast(102%);
}
.key_textbox p {
    font-size: 15px;
}
.key_textbox {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    background-color: #F6F5F2;
    transition: 0.5s;
	align-self:end;
}

.key_card h5 {
    font-size: 22px;
    color: var(--black);
    position: relative;
    margin-bottom: 35px;
}

.key_card h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.key_differentiator .btn02, .our_gallery .btn02 {
    color: var(--theme-color);
    background-color: transparent;
    border: 1px solid var(--theme-color);
    margin: 0 auto;
    display: table;
}

.key_differentiator .btn02::before, .our_gallery .btn02::before{
    background-color: var(--theme-color);
}

.key_differentiator .btn02:hover, .our_gallery .btn02:hover{
    border-color: var(--theme-color);
    color: var(--white);
}

/* ======================================================================= */
    /*  our_journey start */
/* ======================================================================= */
.our_journey {
    width: 100%;
    background-color: var(--theme-color);
}

.our_journey .title3 h3, .our_journey .title3 h6 {
    color: var(--white);
}

.our_journey .nav-link {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    color: #D3E1EF;
    text-align: center;
    line-height: 60px;
    font-weight: 500;
    position: relative;
	padding:0;
}

.our_journey .nav-link:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0;
    top: 62px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #d3e1ef;
    margin: 0 auto;
    z-index: 1;
}

.our_journey .nav-pills .nav-link.active::after {
    background-color: var(--theme-color);
    border: 3px solid #fff;
}

.our_journey .nav-link span {
	font-size: 16px;
	font-weight: 400;
	padding-top: 12px;
	display: block;
}

.our_journey .nav {
    justify-content: space-evenly;
    width: 85%;
    margin: 0 auto 80px;
    position: relative;
}

.our_journey .nav:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0;
    top: 70px;
    width: 100%;
    height: 1px;
    z-index: 0;
    border-bottom: 1px dashed #d3e1ef6e;
}

.our_journey .nav-pills .nav-link.active, .our_journey .nav-pills .show>.nav-link {
    color: var(--white);
    background-color: transparent;
}

.tab-contentpic {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

.tab-contentpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.tab-contentpic:hover img {
    transform: scale(1.1);
}

.tab-content_left {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    overflow: hidden;
}

.tab-content_left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.left_content {
    width: 85%;
    height: 85%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 35px;
}

.tab-content .title3 h3, .tab-content .title3 h6 {
    color: #000;
}

.tab-content .title3 h4 {
    font-family: 'Satoshi-Medium';
    font-size: 32px;
    color: #000;
    margin-bottom: 18px;
}
.actionbtn {
    width: 65px;
    height: 65px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    right: 4px;
}

.actionbtn .fa-arrow-right {
    font-size: 25px;
    color: var(--theme-color);
    transform: rotate(-45deg);
}

.our_journey .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 69px;
    width: 0;
    height: 3px;
    background: #D3E1EF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.our_journey .nav-link.active::before {
    width: 100%;
}
.nav-pills-carousel{
	position:relative;
}
.nav-pills-carousel .owl-nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translateY(43px);
	pointer-events: none;
}
.nav-pills-carousel .owl-nav .owl-prev span, .nav-pills-carousel .owl-nav .owl-next span{
	display:none;
}
.nav-pills-carousel .owl-nav .owl-prev, .nav-pills-carousel .owl-nav .owl-next {
    margin: 0;
    width: 50px;
    height: 50px;
    background-color: #ffffff !important;
    border-radius: 50%;
    position: relative;
	pointer-events:all;
}
.nav-pills-carousel .owl-nav .owl-prev{
	transform: translateX(-70px);
}
.nav-pills-carousel .owl-nav .owl-next{
	transform: translateX(70px);
}
.nav-pills-carousel .owl-nav .owl-prev::before, .nav-pills-carousel .owl-nav .owl-next::before {
	content: "\f105";
	position: absolute;
	font-family: FontAwesome;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #154677;
	font-size: 18px;
}
.nav-pills-carousel .owl-nav .owl-prev::before{
	transform: rotate(180deg);
}
/* ======================================================================= */
    /*  our_services start */
/* ======================================================================= */
.our_services {
    width: 100%;
}

.services_card {
    width: 100%;
    transform: scale(0.8);
    transition: 0.6s;
}

.services_cardpic {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

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

.services_cardtext {
    width: 100%;
    padding: 20px 0;
}

.services_cardtext h4 {
    font-family: 'Satoshi-Medium';
    font-size: 30px;
    color: var(--black);
    margin-bottom: 15px;
}

.services_cardtext p {
    display: none;
    margin-bottom: 15px;
}

.btn03 {
    font-family: "Google Sans", sans-serif;
    position: relative;
    font-size: 15px;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
    color: var(--black);
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid #827F7F;
    transition: 0.6s;
    display: inline-block;
}

.services_card:hover .btn03 {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}

/**/
.services-carousel .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center;}
.services-carousel .owl-nav button.owl-prev, .services-carousel .owl-nav button.owl-next { width: 45px; height: 45px; border: 1px solid #a5a5a5; background-color: #fff; border-radius: 50%; color: #000; font-size: 30px; pointer-events: all; box-shadow: 0px 0px 5px 0px #ddd;}
.services-carousel .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.services-carousel .owl-nav button.owl-prev span::after { content: '\f060'; color: #817979 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 18px; }
.services-carousel .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.services-carousel .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.services-carousel .owl-nav button.owl-next span::before { content: '\f061'; color: #817979 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 18px; }
.services-carousel .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.services-carousel .owl-nav button.owl-prev { left: 0px; position: relative; transition: 0.6s;}
.services-carousel .owl-nav button.owl-next { right: 0px; position: relative; transition: 0.6s;}
.services-carousel .owl-nav { position: absolute; display: inline-flex; bottom: 0; align-items: end; justify-content: flex-end; width: 100%; pointer-events: none; margin: 0 auto; }
.services-carousel .owl-nav button.owl-prev:hover, .services-carousel .owl-nav button.owl-next:hover { background: var(--theme-color); border-color: var(--theme-color); color: #fff; transition: all .3s ease-in-out; }
.owl-theme .owl-nav { margin-top: 0; }
.services-carousel .center .services_card {
    transform: scale(1.1, 1.0) translateY(54px);
    transition: 0.6s;
}

.services-carousel .center .services_cardtext p {
    display: block;
}

.services-carousel .center .btn03 {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}
.services-carousel .owl-stage-outer {
    padding-bottom: 90px;
    margin-top: 0px;
}

/* ======================================================================= */
    /*  our_reach start */
/* ======================================================================= */
.our_reach {
    width: 100%;
}

.our_reachcard {
    border-radius: 15px;
    padding: 0;
    transition: 0.6s;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
}
.our_reachcard img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    transform: translateZ(0);
}

.our_reachcard:hover img {
    transform: translateZ(0) scale(1.1);
}
.our_reachcard:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 55%);
    border-radius: 10px;
    inset: 0;
}
.our_reachcard:hover {
    border-color: var(--theme-color);
}

.our_reachtop {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 25px 0 0;
}

.our_reachtop:before {
    content: "";
    position: absolute;
    right: 0px;
    top: 40px;
    width: 100%;
    height: 1px;
    background-color: #DAD1D1;
    transition: 0.6s;
}

.our_reachcard:hover .our_reachtop:before {
    background-color: var(--theme-color);
}

.reach_circle {
    width: 75px;
    height: 75px;
    position: relative;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #DAD1D1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
}

.reach_circle img {
    max-width: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7500%) hue-rotate(148deg) brightness(94%) contrast(103%);
    transition: 0.6s;
}

.our_reachcard:hover .reach_circle img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(28%) saturate(4711%) hue-rotate(193deg) brightness(94%) contrast(84%);
}

.our_reachcard:hover .reach_circle {
    border-color: var(--theme-color);
}

.our_reachtop h6 {
    font-family: 'Satoshi-Medium';
    font-size: 14px;
    color: #787878;
    text-transform: uppercase;
}

.our_reachcard .our_reachbtm {
    padding: 16px;
    z-index: 1;
    inset: 0;
}

.our_reachbtm h5 {
    font-family: 'Satoshi-Medium';
    font-size: 24px;
    color: #fff;
    transition: 0.6s;
    padding-bottom: 5px;
    position: relative;
}
.our_reachbtm h5::after{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	width:0px;
	height:2px;
	margin: 0 auto;
	background-color:#ffffff;
	transition:all 0.3s ease-out;
}
.our_reachcard:hover .our_reachbtm h5::after{
	width:100%;
}

.our_reachbtm p {
    font-size: 15px;
}


/* ======================================================================= */
    /*  case_studies start */
/* ======================================================================= */
.case_studies {
    background-color: var(--theme-color);
}
.case_studies .title3 h3, .case_studies .title3 h6 {
    color: var(--white);
}
.case-studies-media .media-img{
    display: inline-flex;
    overflow: hidden;
    border-radius: 15px;
    height: 508px;
}
.case-studies-media .media-img img{
    width: 100%;
    object-fit: cover;
}
.case-studies-media .media-body {
    padding-left: 30px;
    padding-top: 30px;
}
.case-studies-media .media-body h4 {
    color: var(--white);
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 500;
}
.case-studies-media .media-body h4::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(100%, 110px);
    height: 2px;
    background-image: url(../images/line2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(174deg) brightness(102%) contrast(102%);
}
.case-studies-media {
    width: min(100%, 820px);
    margin-left: 80px;
}
.case-studies-media .media-body h6{
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    margin: 0 0 16px;
    color: var(--white);
}
.case-studies-media .media-body p{
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.case-studies-carousel .owl-prev {
  display: none !important;
}

.case-studies-carousel .owl-next {
  display: block !important;
}

.case-studies-slider-body .slider-counter {
    color: var(--white);
    font-size: 64px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}
.case-studies-slider-body .slider-counter span {
    position: relative;
    padding-left: 16px;
    margin-left: 30px;
    color: #C3C0C0;
    font-size: 36px;
}
.case-studies-slider-body .slider-counter span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 60%;
    background-color: #C3C0C0;
    transform: translateY(13px) rotate(10deg);
}
.case-studies-slider-body {
    position: relative;
}
.case-studies-slider-body .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: rgb(255 255 255 / 20%);
    width: min(100%, 695px);
    transform: translate(175px, 80px);
}
.case-studies-slider-body .owl-dots .owl-dot {
    width: min(100%, 112px);
    height: 2px;
    position: relative;
    transform: translateY(-16.5px);
    transition: 0.5s;
}
.case-studies-slider-body .owl-dots .owl-dot.active{
    background-color: var(--white);
}
.case-studies-slider-body .owl-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(360px, 90px);
    z-index: 9;
}
.case-studies-slider-body .owl-nav .owl-next .owl-next-icon {
    border: 1px solid var(--white);
    background-color: var(--white);
    color: #000;
    font-size: 17px;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 10px;
    position: relative;
}
.case-studies-slider-body .case-studies-carousel {
    margin-bottom: 32px;
}
.case-studies-slider-body .btn-download {
    border: 1px solid var(--white);
    background-color: var(--white);
    color: #000;
    font-size: 17px;
    font-weight: 500;
    padding: 15px 48px 15px 30px;
    border-radius: 10px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(-24px);
}
.case-studies-slider-body .btn-download::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transform: translate(-18px, 18px);
}
.case-studies-slider-nav .nav-media{
    display: flex;
    cursor: pointer;
}
.case-studies-slider-nav .nav-media .media-img {
    border-radius: 15px;
    overflow: hidden;
    display: inline-flex;
    width: min(100%, 210px);
    height: 105px;
}
.case-studies-slider-nav .nav-media .media-img img{
    width: 100%;
    object-fit: cover;
}
.case-studies-slider-nav .nav-media .media-body {
    padding-left: 16px;
    width: 185px;
}
.case-studies-slider-nav .nav-media .media-body h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--white);
    margin-bottom: 8px;
}
.case-studies-slider-nav .nav-media .media-body p {
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}
.case-studies-slider-body .case-studies-slider-nav {
    position: relative;
    z-index: 99;
}
.case-studies-slider-body .case-studies-slider-nav .nav-media{
    position: absolute;
    top: 0;
    right: 0;
}
.case-studies-slider-body .case-studies-slider-nav .nav-media:nth-child(2) {
    transform: translateY(380px);
}
/* ======================================================================= */
    /*  our_gallery start */
/* ======================================================================= */
.our_gallery {
    width: 100%;
}

.gallery_card {
    column-count: 4;
    --webkit-column-count: 4;
    --moz-column-count: 4;
    gap: 15px;
    padding: 0;
    margin-top: 100px;
}

.gallery_card .gallery_cardimg {
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    border-radius: 10px;
    overflow: hidden;
}

.gallery_card .gallery_cardimg:hover {
    margin-bottom: 1rem;
    cursor: pointer;
}

.gallery_cardimg img {
    height: auto;
    width: 100%;
    object-fit: cover;
    transition: 1s;
    border-radius: 15px;
}

.gallery_cardimg:hover img {
    opacity: 0.7;
    transform: scale(1.1);
}

.gallery_cardimg .overlay-text {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: #26a1da0f;
    transition: 0.6s;
    opacity: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.gallery_cardimg .overlay-text .fa-plus {
    color: #fff;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--theme-color);
}

.gallery_cardimg:hover .overlay-text {
    display: block;
    opacity: 1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
}

/* ======================================================================= */
    /*  testimonial_sec start */
/* ======================================================================= */
.testimonial_sec {
    width: 100%;
}

.testimonial_sec .title3 {
    width: 38%;
}

.rating_box {
    width: 100%;
    background-color: var(--theme-color);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.rating_box ul li {
    display: inline-block;
    font-size: 25px;
    color: #fff;
}

.rating_box h6 {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    color: #fff;
    font-weight: normal;
    margin: 5px 0 45px;
}

.rating_box p {
    color: #fff;
    margin: 0 0 25px;
}

.rating_box img {
    max-width: 149px;
    object-fit: contain;
}

.testimonial_right {
    width: 100%;
    border: 1px solid #C5C2C2;
    border-radius: 20px;
    padding: 40px;
}

.testimonial_card {
    width: 100%;
}

.testimonial_card ul li {
    display: inline-block;
    font-size: 25px;
    color: #FD9606;
}

.testimonial_card ul li span {
    font-size: 24px;
    color: #000;
    margin-left: 15px;
    font-weight: 500;
}

.testimonial_card p {
    margin: 25px 0 40px;
    width: 90%;
}

.testimonial_card h5 {
    font-size: 22px;
    color: var(--black);
    margin-bottom: 8px;
    position: relative;
}

.testimonial_card h5:after {
    content: "";
    position: absolute;
    left: 0;
    top: -15px;
    width: 175px;
    height: 2px;
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.testimonial_card h6 {
    font-family: 'Satoshi-Regular';
    font-size: 16px;
    color: var(--paragraph);
    margin-bottom: 0;
}

/**/
.testimonial_carousel .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center;}
.testimonial_carousel .owl-nav button.owl-prev, .testimonial_carousel .owl-nav button.owl-next { width: 45px; height: 45px; border: 1px solid #a5a5a5; background-color: #fff; border-radius: 50%; color: #000; font-size: 30px; pointer-events: all; box-shadow: 0px 0px 5px 0px #ddd;}
.testimonial_carousel .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.testimonial_carousel .owl-nav button.owl-prev span::after { content: '\f060'; color: #817979 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 18px; }
.testimonial_carousel .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.testimonial_carousel .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.testimonial_carousel .owl-nav button.owl-next span::before { content: '\f061'; color: #817979 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 18px; }
.testimonial_carousel .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.testimonial_carousel .owl-nav button.owl-prev { left: 0px; position: relative; transition: 0.6s;}
.testimonial_carousel .owl-nav button.owl-next { right: 0px; position: relative; transition: 0.6s;}
.testimonial_carousel .owl-nav { position: absolute; display: inline-flex; bottom: 0; align-items: end; justify-content: flex-end; width: 100%; pointer-events: none; margin: 0 auto; }
.testimonial_carousel .owl-nav button.owl-prev:hover, .testimonial_carousel .owl-nav button.owl-next:hover { background: var(--theme-color); border-color: var(--theme-color); color: #fff; transition: all .3s ease-in-out; }
.owl-theme .owl-nav { margin-top: 0; }
/**/

/* ======================================================================= */
    /*  blog_sec start */
/* ======================================================================= */
.blog_sec {
    width: 100%;
    padding-bottom: 120px;
}

.blogpost_card {
    width: 100%;
    margin-bottom: 15px;
}

.blogpost_cardpic {
    height: 400px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.blogpost_cardpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.blogpost_card:hover .blogpost_cardpic img {
    transform: scale(1.1);
}

.blogpost_cardbtm {
    width: 85%;
    margin: -45px auto 0;
    position: relative;
    z-index: 1;
}

.datebox {
    width: 100px;
    height: 110px;
    background-color: var(--theme-color);
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.datebox h5 {
    font-size: 35px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    margin-left: 6px;
}

.datebox h5 span {
    font-family: 'Satoshi-Regular';
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}

.datebox h6 {
    font-size: 13px;
    color: #fff;
    transform-origin: 76% 45%;
    transform: rotate(-90deg);
    font-weight: 300;
    text-transform: uppercase;
}

.blogpost_righttext {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 12%);
}

.date_row {
    width: 100%;
}

.date_circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #077cc13d;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date_circle .fa-calendar-days {
    font-size: 14px;
    color: var(--theme-color);
}

.date_row h6 {
    font-size: 16px;
    color: var(--theme-color);
    font-weight: 500;
}

.blogpost_righttext h4 {
    font-family: 'Satoshi-Medium';
    font-size: 20px;
    color: #000;
    font-weight: 500;
    width: 100%;
    margin: 0 0 15px;
    line-height: 30px;
}

.blogpost_righttext a {
    font-family: "Google Sans", sans-serif;
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.6s;
}

.blogpost_righttext a i {
    font-size: 14px;
}

.blogpost_righttext a:hover {
    color: var(--theme-color);
}

/**/
.blog-carousel .owl-nav { position: absolute; width: 100%; left: 0; right: 0; text-align: center;}
.blog-carousel .owl-nav button.owl-prev, .blog-carousel .owl-nav button.owl-next { width: 45px; height: 45px; border: 1px solid #a5a5a5; background-color: #fff; border-radius: 50%; color: #000; font-size: 30px; pointer-events: all; transition: 0.6s; margin: 0 5px; }
.blog-carousel .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.blog-carousel .owl-nav button.owl-prev span::after { content: '\f060'; color: #000 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 18px; }
.blog-carousel .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.blog-carousel .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.blog-carousel .owl-nav button.owl-next span::before { content: '\f061'; color: #000 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 18px; }
.blog-carousel .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.blog-carousel .owl-nav button.owl-prev { left: 0px; position: relative; transition: 0.6s;}
.blog-carousel .owl-nav button.owl-next { right: 0px; position: relative; transition: 0.6s;}
.blog-carousel .owl-nav { position: absolute; display: flex; bottom: -70px; align-items: center; justify-content: center; width: 100%; pointer-events: none; margin: 0 auto; } 
.blog-carousel .owl-nav button.owl-prev:hover, .blog-carousel .owl-nav button.owl-next:hover { background-color: var(--theme-color); border: 1px solid var(--theme-color); color: #fff; transition: all .3s ease-in-out; } 
.owl-theme .owl-nav { margin-top: 0; } 
.blog-carousel .owl-dots .owl-dot span { width: 100px; height: 2px; margin: 0; background: #DDDDDD; display: block; -webkit-backface-visibility: visible; transition: opacity .2s ease; border-radius: 0; } 
.blog-carousel button { height: auto; } 
.blog-carousel .owl-dots { display: flex; justify-content: center; padding-top: 55px; }
.blog-carousel .owl-dots .owl-dot span { display: none; }
.blog-carousel .owl-dots .owl-dot { width: 8px; height: 8px; background-color: rgb(14 18 91 / 50%); border-radius: 50%; margin: 0 4px; transition: 0.5s; }
.blog-carousel .owl-dots .owl-dot.active { background-color: #0E125B; }
.blog-carousel .owl-dots .owl-dot.active span, .blog-carousel .owl-dots .owl-dot:hover span { background: var(--green); }
/**/

/* ======================================================================= */
    /* contact_info start */
/* ======================================================================= */
.contact_info {
    width: 98%;
    max-width: 1920px;
    height: 100%;
    border-radius: 25px;
    padding: 45px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px auto;
    background-position: center center;
    z-index: 1;
}

.contact_info:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: linear-gradient(to top, #000000a6, #00000000);
    z-index: -1;
}

.info_box {
    width: 95%;
    background-color: var(--white);
    border-radius: 20px;
    padding: 45px 35px;
}

.info_box .nav-link {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    padding: 10px 15px;
    border-radius: 12px;
    text-decoration: none;
    background: 0 0;
    border: 2px solid #938D8D;
    position: relative;
}

.info_box .nav {
    gap: 10px;
    margin-bottom: 40px;
}

.info_box .nav-pills .nav-link.active, .info_box .nav-pills .show>.nav-link {
    color: var(--theme-color);
    background-color: #e8edf2;
    border-color: var(--theme-color);
    position: relative;
}

.info_box .nav-pills .nav-link.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    margin: 0 auto;
    width: 59px;
    height: 13px;
    background-image: url(../images/active.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.info_box .info_card { margin-bottom: 10px; padding: 0 0 10px; }
.info_box .info_card img { max-width: 22px; filter: brightness(0) saturate(100%) invert(14%) sepia(23%) saturate(6589%) hue-rotate(214deg) brightness(99%) contrast(93%); }
.info_box .info_card:last-child { border-bottom: none; }
.info_box .info_card-img { width: 50px; height: 50px; background-color: #d0dae4; border-radius: 50%; text-align: center; justify-content: center; margin-right: 15px; display: flex; align-items: center; font-size: 20px; color: #000; }
.info_box .info_card-body h5 {
    font-size: 20px;
    color: var(--theme-color);
    margin-bottom: 8px;
}
.info_box .info_card-body h6, .info_box .info_card-body h6 a {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--paragraph);
    line-height: 24px;
}

.info_right {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
}

.info_right .title3 h6, .info_right .title3 h3 {
    color: var(--white);
    text-align: left;
}

.info_right .btn02 {
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
    margin-top: 25px;
}

/* ======================================================================= */
    /*  footer_sec start */
/* ======================================================================= */
.footer_sec {
    width: 100%;
    position: relative;
}

.footer-col {
    padding: 65px 20px 45px;
    border-right: 1px solid #d9d9d9;
}

.footer-col:last-child {
  border-right: none;
}

.footer-social {
    padding: 26px 0 0;
}

.footer-social ul {
    display: flex;
    justify-content: center;
}

.footer-social ul li {
    display: inline-block;
    margin-right: 2px;
}

.footer-social ul li:last-child {
    margin-right: 0;
}

.footer-social ul li a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #224576;
    color: #224576;
    margin-right: 8px;
    font-size: 17px;
    font-weight: normal;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: border-color 0.4s ease;
}

.footer-social ul li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--theme-color);
    border-radius: 8px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.footer-social ul li a:hover::before {
    transform: scale(1);
}

.footer-social ul li a:hover {
    border-color: transparent;
    color: var(--white);
}


.footer_card { width: 100%; padding: 0 0 0 20px; }
.footer_sec h5 { font-family: 'Satoshi-Medium'; font-size: 24px; color: var(--black); margin: 0 0 15px; }
.footer_card ul { padding: 0; }
.footer_card ul li { width: 100%; }
.footer_card ul li a { font-family: "Google Sans", sans-serif;  display: block; position: relative; font-size: 16px; color: var(--paragraph); font-weight: 400; padding: 0 0 10px 16px; list-style: disc; transition: 0.6s; }
.footer_card ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 1px;
    background-color: #303030;
    opacity: 0;
    transition: 0.6s;
}

.footer_card ul li a:hover:before {
    opacity: 1;
    background-color: var(--theme-color);
}

.footer_card ul li a:hover {
    color: var(--theme-color);
}

.footer_card p {
    padding-bottom: 10px;
    font-size: 16px;
}

.copyright {
    width: 100%;
    position: relative;
    padding-top: 35px;
    margin-top: 35px;
    border-top: 1px solid #d9d9d9;
}

.copyright p {
    font-size: 15px;
    text-align: center;
    padding-right: 15px;
}

.copyright p span {
    font-weight: 600;
}

.footer_sec .footer-col:nth-child(1) {
    width: 28%;
    padding-right: 0;
    padding-left: 0;
	text-align:center;
}

.footer_sec .footer-col:nth-child(2) {
    width: 20%;
}

.footer_sec .footer-col:nth-child(4) {
    width: 27%;
}

.isopic {
    width: 100%;
    position: relative;
    padding-top: 25px;
    margin-top: 25px;
    margin-left: -3%;
}

.isopic img {
    max-width: 130%;
    object-fit: contain;
    width: 130%;
}

.isopic:before {
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
}

.whatsapp_float {
    position: absolute;
    bottom: 340px;
    right: 50px;
    text-decoration: none;
    z-index: 999;
    transition: 0.3s;
}

.whatsapp_float img {
    max-width: 70px;
    object-fit: contain;
}

.whatsapp_float:hover {
    transform: scale(1.1);
}

/* ======================================================================= */
    /*  inner banner start */
/* ======================================================================= */
.about_ban {
    width: 100%;
    padding: 80px 0;
    height: 100%;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
	z-index: 1;
}

.about_ban:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(255 255 255 / 78%) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
}

.about_ban .title1 h1 {
    margin-bottom: 10px;
}

.about_ban .title1 {
    margin-top: 100px;
}

.breadcrumb {
    font-family: "Google Sans", sans-serif;
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
    position: relative;
    margin-bottom: 0;
}

.breadcrumb a, .breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before {
    color: var(--black);
}

/* ======================================================================= */
    /*  inner service listing area start */
/* ======================================================================= */
.innerServiceListing{
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 6px 40px rgb(0 0 0 / 7%);
    padding: 25px;
}
.innerServiceListing .imgBox {
    border-radius: 15px;
    background-color: #000000;
    height: 395px;
    display: flex;
    position: relative;
    overflow: hidden;
}
.innerServiceListing .imgBox img{
    width: 100%;
    object-fit: cover;
}
.innerServiceListing .imgBox span {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--theme-color);
    color: var(--white);
    transform: translate(24px, -24px);
    padding: 8px 38px 8px 16px;
    border-radius: 8px;
}
.innerServiceListing .imgBox span::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 16px;
    background-image: url(../images/arrow-right.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(2712%) hue-rotate(162deg) brightness(96%) contrast(114%);
    transform: translate(-10px, 13px);
}
.innerServiceListing .heading {
    margin-bottom: 32px;
}
.innerServiceListing .heading h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    margin: 0 0 10px;
    color: var(--black);
}
.innerServiceListing .heading p{
    color: var(--black);
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
}
.card.innerServiceListing-card{
    border-radius: 15px;
    border: 1px solid #EFE8E8;
    padding: 20px;
}
.card.innerServiceListing-card .card-icon {
    width: min(100%, 58px);
    height: 58px;
    background-color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    padding: 12px;
    margin-bottom: 16px;
}
.card.innerServiceListing-card .card-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.card.innerServiceListing-card .card-body{
    padding: 0;
}
.card.innerServiceListing-card .card-body h4 {
    color: var(--black);
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 8px;
}
.card.innerServiceListing-card .card-body p{
    color: #1D1D1D;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}
.innerServiceListing{
    margin-bottom: 25px;
}
.innerServiceListing:last-child{
    margin-bottom: 0;
}
/* Every odd section = reverse layout automatically */
.innerServiceListing:nth-child(odd) .row {
    flex-direction: row-reverse;
}

.innerServiceListing:nth-child(odd) .imgBox span {
    left: auto;
    right: 0;
    transform: translate(-24px, -24px);
}

/* Every even section = normal layout */
.innerServiceListing:nth-child(even) .row {
    flex-direction: row;
}

.innerServiceListing:nth-child(even) .imgBox span {
    left: 0;
    right: auto;
    transform: translate(24px, -24px);
}
/* ======================================================================= */
    /*  inner contact area start */
/* ======================================================================= */
.inner-contact-form-box{
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: inset 6px 4px 20.4px rgb(0 0 0 / 10%);
}
.inner-contact-form-box h2 {
    position: relative;
    font-size: 34px;
    font-weight: 600;
    line-height: 44px;
    padding-bottom: 16px;
    margin-bottom: 24px;
}
.inner-contact-form-box h2::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(100%, 75px);
    height: 1px;
    background-image: url(../images/line.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.form-group label{
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    display: block;
    margin-bottom: 8px;
}
.form-group label sup{
    color: #FF0000;
}
.form-control{
    height: 60px;
    background-color: #F3F3F5;
    border: 1px solid #F3F3F5;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    color: var(--black);
    border-radius: 8px;
}
.form-control::placeholder{
    color: #626262;
}
.form-control:focus{
    box-shadow: none;
    border-color: #F3F3F5;
    background-color: #F3F3F5;
}
.inner-contact-form-box .btn01 {
    border-radius: 8px;
    padding-right: 15px;
    position: relative;
}
.inner-contact-form-box .btn01::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 15px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/arrow-right.png);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7466%) hue-rotate(116deg) brightness(99%) contrast(99%);
    transform: translate(-14px, 14px);
}
.form-group {
    margin-bottom: 16px;
}
textarea.form-control {
    resize: none;
    height: 278px;
    padding: 20px;
}
select.form-control {
    position: relative;
    cursor: pointer;
    background-size: 45px;
    background-repeat: no-repeat;
    background-position: right;
    background-image: url(../images/down-arrow.png);
    background-origin: content-box;
}
.inner-contact-area .contact-map {
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 24px;
}
.inner-contact-area .contact-map iframe{
    width: 100%;
    height: 100%;
}
.inner-contact-area .inner-footer-location .info_box {
    position: relative;
    padding: 0;
    padding-left: 30px;
}
.inner-contact-area .inner-footer-location .info_box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--theme-color);
    border-radius: 30px;
}
.inner-contact-area .inner-footer-location .info_box .nav-link {
    font-size: 14px;
    padding: 8px 10px;
}
.inner-contact-area .inner-footer-location .info_box .nav {
    gap: 8px;
}
.inner-contact-area .inner-footer-location .info_box .info_card-body p {
    font-size: 16px;
    color: #000000;
    line-height: 26px;
}
/* ======================================================================= */
    /* about_sec1  start */
/* ======================================================================= */
.about_sec1 {
    width: 100%;
}

.about_sec1pic {
    width: 92%;
    height: 600px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.about_sec1pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.about_sec1pic:hover img {
    transform: scale(1.1);
}

.about_sec1 .title3 p {
    margin-top: 15px;
}

.years_experience {
    width: 85%;
    margin: 35px auto 0;
}

.years_experiencepic {
    height: 210px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.years_experiencepic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.years_experiencepic:hover img {
    transform: scale(1.1);
}

.about_sec1 .on_counter {
    width: 100%;
    padding: 0;
    border-bottom: none;
}

.about_sec1 .counter_card:after {
    display: none;
}
/* ======================================================================= */
    /* commitment_sec  start */
/* ======================================================================= */
.commitment_sec {
    width: 100%;
}

.commitment_sec .title3 {
    width: 38%;
}

.commitment_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    align-items: center;
    border-bottom: none;
    padding: 0;
}

.commitment_gridbox {
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    transition: 0.6s;
	text-align:left;
}
.commitment_gridbox h2, .commitment_gridbox h6{
	width:100%;
}

.commitment_gridbox:hover {
    background-color: var(--theme-color);
}

.commitment_gridbox:hover h2 {
    color: #fff;
}

.commitment_gridbox:hover h6 {
    color: #fff;
}

.commitment_sec .counter_card:after {
    display: none;
}

.commitment_sec .on_counter h2 {
    font-size: 60px;
    transition: 0.6s;
}

.commitment_right {
    width: 100%;
    background-color: #1D1D1D;
    border-radius: 15px;
    padding: 20px 20px 20px 30px;
}

.commitment_pic {
    height: 300px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.commitment_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.commitment_pic:hover img {
    transform: scale(1.1);
}

.commitment_right h4 {
    font-family: 'Satoshi-Medium';
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.commitment_right ul li {
    width: 100%;
    position: relative;
    font-family: "Google Sans", sans-serif;
    font-size: 17px;
    color: var(--white);
    padding: 0 0 15px 25px;
}

.commitment_right ul li:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url(../images/bullet.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

/* ======================================================================= */
    /* project_references  start */
/* ======================================================================= */
.project_references {
    width: 100%;
}

.references_card {
    width: 100%;
    transition: 0.6s;
}

.references_pic {
    height: 360px;
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

.references_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.references_pic:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/shape2.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    mix-blend-mode: screen;
	display:none;
}

.actionbtn2 {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 5px;
    right: 5px;
    transition: 0.6s;
	display:none;
}

.actionbtn2 .fa-arrow-right {
    font-size: 20px;
    color: var(--theme-color);
    transform: rotate(-45deg);
    transition: 0.6s;
}

.references_card:hover .actionbtn2 {
    background-color: var(--theme-color);
}

.references_card:hover .fa-arrow-right {
    color: var(--white);
    transform: rotate(45deg);
}

.references_tag {
    width: auto;
    display: inline-block;
    background-color: #00000059;
    border-radius: 30px;
    padding: 7px 15px;
    border: 1px solid #fff;
    text-align: center;
    font-family: "Google Sans", sans-serif;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: 0.6s;
}

.references_card:hover .references_tag {
    opacity: 0;
}

.references_btm {
    width: 93%;
    height: 200px;
    display: flex;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    opacity: 1;
    transition: 0.6s;
}

.references_card:hover .references_btm {
    opacity: 1;
}

.references_btm img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	display:none !important;
}
.references_btm_content {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 20px;
    padding: 12px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
}

.references_btm h5 {
    font-size: 18px;
    color: var(--black);
}

.references_btm p {
    font-size: 14px;
    margin: 10px 0 15px;
    line-height: normal;
}

.references_btm h6 {
    font-family: "Google Sans", sans-serif;
    font-size: 12px;
    color: var(--theme-color);
    position: relative;
    padding-left: 18px;
}

.references_btm h6:before {
    content: "\f058";
    position: absolute;
    left: 0px;
    top: 0;
    font-family: FontAwesome;
    font-size: 13px;
    color: var(--theme-color);
}

/**/
.references-carousel .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center;}
.references-carousel .owl-nav button.owl-prev, .references-carousel .owl-nav button.owl-next { width: 45px; height: 45px; border: 1px solid #a5a5a5; background-color: #fff; border-radius: 50%; color: #000; font-size: 30px; pointer-events: all; box-shadow: 0px 0px 5px 0px #ddd;}
.references-carousel .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.references-carousel .owl-nav button.owl-prev span::after { content: '\f060'; color: #817979 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 18px; }
.references-carousel .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.references-carousel .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.references-carousel .owl-nav button.owl-next span::before { content: '\f061'; color: #817979 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 18px; }
.references-carousel .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.references-carousel .owl-nav button.owl-prev { left: 0px; position: relative; transition: 0.6s;}
.references-carousel .owl-nav button.owl-next { right: 0px; position: relative; transition: 0.6s;}
.references-carousel .owl-nav { position: absolute; display: inline-flex; bottom: 0; align-items: end; justify-content: flex-end; width: 100%; pointer-events: none; margin: 0 auto; }
.references-carousel .owl-nav button.owl-prev:hover, .references-carousel .owl-nav button.owl-next:hover { background: var(--theme-color); border-color: var(--theme-color); color: #fff; transition: all .3s ease-in-out; }
.owl-theme .owl-nav { margin-top: 0; }
/**/



/* ======================================================================= */
    /* performance_sec start */
/* ======================================================================= */
.performance_sec {
    width: 100%;
}
.performance_sec .title3 {
    width: min(100%, 485px);
    margin: 0 auto;
}

.performance_left {
    width: 88%;
}

.performance_left h4 {
    font-size: 35px;
    color: var(--black);
    position: relative;
    margin-bottom: 35px;
}

.performance_left h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 120px;
    height: 2px;
    background-image: url(../images/line2.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.performance_left h5 {
    font-size: 15px;
    color: var(--theme-color);
    margin-bottom: 10px;
    text-decoration: underline;
    margin-top: 20px;
}

.performance_left h6 {
    font-family: 'Satoshi-Medium';
    font-size: 14px;
    color: var(--black);
}

.performance_left p {
    font-size: 16px;
}

.performance_left .btn02 {
    color: var(--white);
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    margin-top: 20px;
}


.performance_sec .slider {
    padding: 0;
    color: #fff;
}

.performance_sec .swiper-container {
    width: 100%;
    height: 100%;
}

.performance_sec .slider__flex {
    display: flex;
    align-items: flex-start;
}

.performance_sec .slider__col {
    display: flex;
    flex-direction: column;
    width: 150px;
    margin-right: 32px;
}

.performance_sec .slider__prev, .performance_sec .slider__next {
    cursor: pointer;
    text-align: center;
    font-size: 26px;
    color: var(--theme-color);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.performance_sec .slider__prev:focus,
.performance_sec .slider__next:focus {
    outline: none;
}

.performance_sec .slider__thumbs {
    height: calc(400px - 96px);
}

.performance_sec .slider__thumbs .slider__image {
    transition: 0.25s;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
    border-radius: 10px;
}

.performance_sec .slider__thumbs .slider__image:hover {
    opacity: 1;
}

.performance_sec .slider__thumbs .swiper-slide-thumb-active .slider__image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}

.performance_sec .slider__images {
    height: 430px;
    width: 100%;
    position: relative;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.performance_sec .slider__images .slider__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 3s;
}

.performance_sec .slider__images .slider__image:hover img {
    transform: scale(1.1);
}

.vdo_icon {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.performance_sec .slider__image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.performance_sec .slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .performance_sec .slider__flex {
        flex-direction: column-reverse;
    }

    .performance_sec .slider__col {
        flex-direction: row;
        align-items: center;
        margin-right: 0;
        margin-top: 24px;
        width: 100%;
    }

    .performance_sec .slider__images {
        width: 100%;
    }

    .performance_sec .slider__thumbs {
        height: 100px;
        width: calc(100% - 96px);
        margin: 0 16px;
    }

    .performance_sec .slider__prev,
  .performance_sec .slider__next {
        height: auto;
        width: 32px;
    }
}

/* ======================================================================= */
    /*  map_sec start */
/* ======================================================================= */
.map_sec {
    width: 100%;
}

.map_sec .container-fluid {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.map-section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    position: relative;
    width: 90%;
    max-width: 1400px;
    display: none;
}
.map-img {
    width: 100%;
    display: block;
}

.marker {
    position: absolute;
    width: 42px;
    height: 42px;
    background: #1f4b75;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.marker::after {
    content: "↻";
}

.m1 {
    top: 51%;
    left: 44%;
}

.m2 {
    top: 26%;
    left: 47%;
}

.m3 {
    top: 24%;
    left: 58%;
}

.info-card {
    position: absolute;
    top: 48%;
    left: 60%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    width: 260px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-card h5 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
}

/* ======================================================================= */
    /*  motor_services start */
/* ======================================================================= */
.motor_services {
    width: 100%;
}

.motor_left {
    width: 100%;
}

.motor_services .title3 h3 {
    font-size: 44px;
}

.motor_services_pic {
    height: 400px;
    position: relative;
    display: flex;
    border-radius: 25px;
    overflow: hidden;
}

.motor_services_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.motor_services_pic:hover img {
    transform: scale(1.1);
}

.motor_right {
    width: 100%;
    padding: 0 25px;
}

.motor_icon {
    width: 90px;
    height: 90px;
    position: relative;
    background-color: #e8ecf1;
    border-radius: 15px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.motor_icon img {
    max-width: 48px;
    object-fit: contain;
}

.motor_right h5 {
    font-family: 'Satoshi-Medium';
    font-size: 22px;
    color: var(--black);
    margin-bottom: 8px;
}

.motor_right p {
    font-size: 16px;
    margin: 0;
}

.motor_right .d-flex.gap-4 {
    margin-bottom: 30px;
}

.motor_services .row:nth-child(2n) {
    flex-direction: row-reverse;
    margin: 35px 0;
}

.motor_services .row:nth-child(2n) .motor_left {
    margin-left: auto;
}

/* ======================================================================= */
    /*  project_gallery start */
/* ======================================================================= */
.gallery_sec {
    width: 100%;
}

.filter {
    padding: 0 0 20px;
    margin-bottom: 20px;
    text-align: center;
}

.filter a {
    font-family: "Google Sans", sans-serif;
    margin: 5px;
    color: #000;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 7px 15px;
    border-radius: 10px;
    display: inline-block;
    font-size: 17px;
    font-weight: 400;
}

.filter a.current {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}
.key_differentiator .btn02 {
    margin-top: 35px;
}
.copyright.mobile-copyright{
	display:none;
}
/* ======================================================================= */
    /*   start */
/* ======================================================================= */
.postid-273 .motor_right{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	align-items: start;
}
.postid-273 .motor_right .motor_icon {
    width: 75px;
    height: 75px;
}
.postid-273 .motor_right .motor_icon img {
    max-width: 35px;
}
.postid-273 .motor_right .gap-4 {
    gap: 0.8rem!important;
	align-items:center;
}
.postid-273 .motor_right h5 {
    font-size: 20px;
}
.postid-273  .motor_right p {
    font-size: 15px;
}
.postid-273  .motor_right .d-flex.gap-4 {
    margin-bottom: 8px;
}






/* // categories_box start */
.categories_box {
    width: 100%;
    background-color: #fff;
    padding: 25px 15px;
    border-radius: 10px;
    border: 1px solid #154677;
    box-shadow: 0 4px 15px 0px rgb(0 0 0 / 10%);
}

.categories_box h5 {
    font-size: 22px;
    color: #3A0E44;
    font-weight: 600;
    padding-left: 0px;
    margin-bottom: 15px;
    position: relative;
}

.categories_box h5::before {
    content: "";
    position: absolute;
    left: -15px;
    height: 100%;
    width: 3px;
    background-color: #154677;
}

.categories_box_card {
    width: 100%;
    padding: 0px;
}

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

.categories_box_card ul li {
    width: 100%;
}

.categories_box_card ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    text-decoration: none;
    background-color: #F6F7F8;
    box-shadow: inset 0px 4px 4px 0 rgb(0 0 0 / 10%);
    transition: 0.3s;
}



.categories_box_card ul li a:hover {
   color: #fff;
  background-color: #154677;
  box-shadow: none;
}

.categories_box_card .fa-arrow-right {
    margin-right: 10px;
    font-size: 14px;
}
.about_sec1pic10{
	width: 100%;
	height: 469px;
	position: relative;
}
.about_sec1pic10::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../images/new-ss.jpg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
	z-index:91;
}
.about_sec1pic10 img{
	width:100%;
	object-fit:cover;
	transform: scale(1);
}
.about_sec1 .title3 {
    padding: 55px 40px;
    box-shadow: 0 12px 25px rgb(0 0 0 / 5%);
    border-radius: 30px;
    border-bottom: 1px solid #154677;
}
.about_sec1 .title3 h3 {
    font-size: 36px;
    margin-bottom: 24px;
}
.about_sec1 .title3 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about_sec1 .title3 ul li {
    background-image: url(../images/details-check.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 37px;
}
.our-foundation-area {
    position: relative;
    background-color: #f5f5f5;
}
.our-foundation-area .content-box h3 {
    font-size: 34px;
    color: #000000;
    line-height: 44px;
    margin-bottom: 10px;
}
.our-foundation-area .content-box p {
    font-size: 16px;
}
.our-foundation-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 710px;
    height: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../images/gg.jpg);
    opacity: 0.09;
}
.our-foundation-area .container{
	position:relative;
	z-index:1;
}
.our-foundation-box {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 8px rgb(0 0 0 / 5%);
    border-radius: 10px;
}
.our-foundation-box {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 8px rgb(34 69 118 / 18%);
    border-radius: 10px;
	transition:all 0.5s ease-out;
}
.our-foundation-box:hover{
	transform: translateY(-10px);
}
.our-foundation-box .icon {
    width: 55px;
    height: 55px;
    background-color: #224576;
    border-radius: 50%;
    margin-bottom: 14px;
    padding: 8px;
}
.our-foundation-box .icon img{
	width:100%;
	height:100%;
	object-fit:content;
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(209deg) brightness(102%) contrast(101%);
}
.our-foundation-box h4 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 8px;
    color: #000000;
}
.our-foundation-box p {
    margin: 0;
    font-size: 15px;
    line-height: 24px;
    color: #000000;
}
.core-commitment-area {
    background-image: url(https://webtechnomind.in/work/ElectroCore-Arabia-Company/wp-content/uploads/2026/05/address_bg-scaled.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	background-attachment: fixed;
	position: relative;
}
.core-commitment-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(12 36 60 / 95%);
}
.core-commitment-area .container{
	position:relative;
}
.core-commitment-area .title3 h3{
	color:#ffffff;
}
.core-commitment {
    padding: 32px;
    background-color: #ffffff;
    border-radius: 16px;
	transition:all 0.5s ease-out;
}
.core-commitment .media-icon {
    width: 60px;
    height: 60px;
    background-color: #224576;
    border-radius: 8px;
    padding: 8px;
}
.core-commitment .media-icon img{
	width:100%;
	height:100%;
	object-fit:content;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(137deg) brightness(103%) contrast(101%);
}
.core-commitment .media-body {
    padding-left: 16px;
}
.core-commitment .media-body h4 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 8px;
    color: #000000;
}
.core-commitment .media-body p {
    font-size: 15px;
    line-height: 24px;
}
.core-commitment-area .title3 {
    margin-bottom: 32px;
}

/*-- 404 page design --*/
.errorPage-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

  .errorPage-area .wrap{
    text-align: center;
    max-width: 420px;
  }

  .errorPage-area .code {
    font-size: 135px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #154677;
}

  .errorPage-area .code span{ color: #d0d0d0; }

  .errorPage-area h1{
    margin-top: 20px;
    font-size: 30px;
    font-weight: 500;
  }

  .errorPage-area p{
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #767676;
  }

  .errorPage-area .actions{
    margin-top: 32px;
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  .errorPage-area .btn{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    transition: opacity 0.15s ease;
  }

  .errorPage-area .btn-primary{
    background: #1a1a1a;
    color: #ffffff;
  }

  .errorPage-area .btn-secondary{
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
  }

  .errorPage-area .btn:hover{ opacity: 0.85; }

  .errorPage-area .btn:focus-visible{
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
  }

  @media (max-width: 420px){
    .errorPage-area .code{ font-size: 72px; }
    .errorPage-area .actions{ flex-direction: column; }
  }
.error404 .title1 h1{
	color:#ffffff;
}
.error404 .breadcrumb a,
.error404 .breadcrumb-item.active,
.error404 .breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
}
/* ======================================================================= */
    /* transformer services  start */
/* ======================================================================= */

.transformer-services-sec-one .title3{
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px;
}
.transformer-services-sec-one .accordian-box{
    border-radius: 25px;
    background: #F4F5FF;
    background: -webkit-linear-gradient(132deg, rgba(244, 245, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -moz-linear-gradient(132deg, rgba(244, 245, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(132deg, rgba(244, 245, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 25px;
}
.accordian-box .nav-tabs {
    background-color: #ffffff;
    border: 0;
    padding: 10px;
    border-radius: 30px;
    gap: 5px;
    margin-bottom: 24px;
	justify-content: center;
}
.accordian-box .nav-tabs .nav-link {
    background: #f9f9f9;
    border-radius: 30px;
    font-size: 16px;
    padding: 9px 12px;
    color: #000000;
    line-height: 24px;
    transition: all 0.5s ease-out;
    position: relative;
    width: max-content;
    box-shadow: 0px 0px 2px hsl(0deg 0% 21.63% / 36%);
}
/* .accordian-box .nav-tabs .nav-link {
    background: #f9f9f9;
    border-radius: 30px;
    font-size: 14px;
    padding: 8px 12px;
    color: #000000;
    line-height: 19px;
    transition: all 0.5s ease-out;
    position: relative;
    width: 16.2%;
} */
.accordian-box .nav-tabs .nav-link.active{
    background: #154677;
    background: -webkit-linear-gradient(180deg, rgba(21, 70, 119, 1) 0%, rgba(39, 130, 221, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(21, 70, 119, 1) 0%, rgba(39, 130, 221, 1) 100%);
    background: linear-gradient(180deg, rgba(21, 70, 119, 1) 0%, rgba(39, 130, 221, 1) 100%);
    color: #ffffff;
}
.accordian-box .tab-content{
    border-radius: 25px;
    background-color: #ffffff;
    padding: 25px;
}
.accordian-box .tab-content .img-box{
    height: auto;
    overflow: hidden;
    border-radius: 25px;
    background-color: #000000;
}
.accordian-box .tab-content .img-box img{
    width: 100%;
    object-fit: cover;
}
.accordian-box .tab-content .media .media-icon {
    width: 96px;
    height: 96px;
    background-color: rgb(21 70 119 / 8%);
    border-radius: 20px;
    padding: 18px;
}
.accordian-box .tab-content .media .media-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.accordian-box .tab-content .media .media-body {
    color: #000000;
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    padding-left: 16px;
}
.accordian-box .tab-content .media{
    margin-bottom: 32px;
}
.accordian-box .tab-content .content-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
    display: flex;
    flex-direction: column;
	margin-bottom: 24px;
}
.accordian-box .tab-content .content-box ul li {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 0;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center left;
    background-image: url(../images/details-check.png);
    padding-left: 32px;
}
.accordian-box .tab-content .row{
    flex-direction: row-reverse;
}
.transformer-services-sec-two .title3{
    margin-bottom: 40px;
}
.transformer-services-sec-two .img-box{
    height: 438px;
    overflow: hidden;
    border-radius: 25px;
}
.transformer-services-sec-two .img-box img{
    width: 100%;
    object-fit: cover;
}
.transformer-services-sec-two .content-box{
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgb(0 0 0 / 5%);
    padding: 0px 25px;
    border-radius: 25px;
}
.transformer-services-sec-two .content-box h4 {
    font-size: 38px;
    font-weight: 500;
    line-height: 48px;
    padding-bottom: 16px;
    margin-bottom: 32px;
    color: #000000;
    position: relative;
}
.transformer-services-sec-two .content-box h4::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 110px;
    height: 2px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    background-image: url(../images/line-new.png);
}
.transformer-services-sec-two .content-box ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.transformer-services-sec-two .content-box h5{ margin:10px 0px;}
.transformer-services-sec-two .content-box ul li {
    color: #1D1D1D;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    position: relative;
    padding-left: 22px;
}
.transformer-services-sec-two .content-box ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #154677;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgb(21 70 119 / 15%);
    transform: translate(0px, 10px);
}
.transformer-services-sec-two .listing-area .listing-body-area{
    margin-bottom: 32px;
}
.transformer-services-sec-two .listing-area .listing-body-area:last-child{
    margin-bottom: 0;
}
.transformer-services-sec-two .listing-area .listing-body-area:nth-of-type(2n){
    flex-direction: row-reverse;
}
/* ======================================================================= */
    /* moto services  start */
/* ======================================================================= */
.moto-services-sec-one .title3 {
    max-width: 960px;
}
.moto-services-sec-one .title3 p{
    margin-bottom: 16px;
}
.moto-services-sec-one .title3 p:last-child{
    margin-bottom: 0;
}
.moto-services-sec-one .section-two-area .img-box{
    height: 736px;
    overflow: hidden;
    position: relative;
}
.moto-services-sec-one .section-two-area .img-box::before{
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/moto-shape-one.jpg);
    mix-blend-mode: screen;
}
.moto-services-sec-one .section-two-area .img-box img{
    width: 100%;
    object-fit: cover;
}
.moto-services-sec-one .section-two-area .title3{
    text-align: left;
}
.moto-services-sec-one .section-two-area .title3 h4 {
    font-size: 34px;
    font-family: 'Satoshi-Medium';
    line-height: 44px;
    margin-bottom: 10px;
}
.moto-services-sec-one .section-two-area .accordion-item .media-body .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 0;
    font-size: 20px;
}
.moto-services-sec-one .section-two-area .accordion-item .media-body .accordion-body{
    padding: 0;
}
.moto-services-sec-one .section-two-area .accordion-item {
    margin-bottom: 16px;
    padding: 12px;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    background-color: #FBFBFB;
}
.moto-services-sec-one .section-two-area .accordion-item .media-icon {
    background-color: #154677;
    width: 60px;
    height: 48px;
    border-radius: 25px;
    margin-right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}
.moto-services-sec-one .section-two-area .accordion-item .media-body .accordion-button:not(.collapsed) {
    color: #000000;
    margin-bottom: 2px;
}
.moto-services-sec-one .section-two-area .accordion-item .media-body .accordion-button::after {
    background-color: rgb(21 70 119 / 10%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-position: center;
    background-size: 16px;
}
.moto-services-sec-one .section-two-area .accordion-item .media-body .accordion-body p {
    font-size: 15px;
    padding-right: 40px;
}
.moto-services-sec-one .section-three-area {
    box-shadow: 0 4px 15px rgb(0 0 0 / 7%);
    border-radius: 20px;
    padding: 24px 14px;
}
.moto-services-sec-one .section-three-area .imgBox {
    height: 400px;
    background-color: #000000;
    border-radius: 20px;
    overflow: hidden;
}
.moto-services-sec-one .section-three-area .imgBox img{
    width: 100%;
    object-fit: cover;
}
.moto-services-sec-one .section-three-area .title3{
    text-align: left;
}
.moto-services-sec-one .section-three-area .title3 h4 {
    font-size: 34px;
    font-family: 'Satoshi-Medium';
    line-height: 44px;
    color: #000000;
    margin-bottom: 8px;
}
.moto-services-sec-one .section-three-area .title3 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.moto-services-sec-one .section-three-area .title3 ul li {
    background-image: url(../images/details-check.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 27px;
}
.electricalTesting-area{
    background-color: #154677;
}
.electricalTesting-area .title3 {
    text-align: center;
    width: 100%;
    max-width: 615px;
    margin: 0 auto 48px;
}
.electricalTesting-area .title3 h3 {
    color: #ffffff;
    font-family: 'Satoshi-Medium';
    font-size: 42px;
    margin-bottom: 12px;
}
.electricalTesting-area .title3 p{
    color: #ffffff;
    font-weight: 400;
}
.electricalTesting-area .imgBox {
    height: 660px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
.electricalTesting-area .imgBox img{
    width: 100%;
    object-fit: cover;
}
.electricalTesting-area .content-box h4{
    color: #ffffff;
    font-size: 34px;
    font-family: 'Satoshi-Medium';
    line-height: 44px;
}
.electricalTesting-area .content-box ul {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    gap: 12px;
    border-left: 1px solid #9f9f9f;
    margin-left: 14px;
}
.electricalTesting-area .content-box ul li {
    color: #ffffff;
    position: relative;
    padding-left: 30px;
}
.electricalTesting-area .content-box ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 0 0 8px rgb(255 255 255 / 16%);
}
.electricalTesting-area .content-box p {
    color: #ffffff;
    margin-top: 16px;
}
.electricalTesting-area .content-box{
    padding-right: 24px;
}
.electricalTesting-area .row{
    flex-direction: row-reverse;
}
.electricalTesting-area{
    position: relative;
}
.electricalTesting-area::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
}
.transformer-services-sec-two .content-box p{
    margin-bottom: 20px;
}
.transformer-services-sec-two .content-box p:last-child{
    margin-bottom: 0;
}
.transformer-services-sec-two .content-box h6{
    margin: 16px 0;
    font-size: 30px;
    line-height: 40px;
}
.transformer-services-sec-two.new .content-box{
    padding: 25px;
}
.moto-services-sec-one .section-two-area{
    flex-direction: row-reverse;
    margin-bottom: 32px;
}
.motor_services_picarea{
	position:relative;
}
.motor_services_picarea .motor_services_pic10{
	height:560px;
	display:flex;
	overflow:hidden;
	border-radius: 30px;
}
.motor_services_picarea .motor_services_pic10 img, .motor_services_picarea .motor_services_pic11 img{
	width:100%;
	object-fit:cover;
}
.motor_services_picarea .motor_services_pic11 {
    position: absolute;
    top: 120px;
    width: 279px;
    height: 340px;
    display: flex;
    overflow: hidden;
    border-radius: 30px;
    border: 10px solid #ffffff;
    left: -80px;
}
.motor_right h4 {
    font-size: 40px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 24px;
}
.motor_right ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.motor_right ul li {
    background-image: url(../images/details-check.png);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center left;
    font-size: 16px;
    color: #000000;
    padding-left: 30px;
}

/* ======================================================================= */
    /* our_servicesB start */
/* ======================================================================= */
.our_servicesB {
	width: 100%;
}

.our_servicesB .headertext {
	width: 80%;
	margin: 0 auto 50px;
}

.our_servicesB .accordion {
	width: 100%;
	max-width: 90%;
	margin: 0 auto;
}

.our_servicesB .accordion-item {
	border-radius: 0;
	margin: 0;
	border: none;
	overflow: hidden;
	border-top: 1px solid #E3E3E3;
}

.our_servicesB .accordion-item .accordion-header .accordion-button {
	font-size: 24px;
	color: #000;
	padding: 15px;
	border-left-color: #077CC1;
	border-radius: 0 !important;
	transition: 0.5s;
	box-shadow: none;
	transition: 0.5s;
	font-weight: 500;
	background-color: transparent;
	position: relative;
}

.our_servicesB .accordion-item .accordion-header .accordion-button.collapsed {
	border-left: 2px solid var(--theme-color2);
	border-radius: 8px !important;
	background-color: #ffffff;
	color: #000000;
}

.our_servicesB .accordion-item .accordion-collapse .accordion-body {
	width: 100%;
    /* max-width: 95%; */
	background-color: #ffffff;
	margin: 0 auto 2.5%;
	border-radius: 20px;
    /* padding: 30px; */
	font-size: 16px;
	font-family: 'GoliLight';
    /* line-height: 26px; */
	color: #000000;
}

.our_servicesB .accordion-item .accordion-header .accordion-button::after {
	content: '\f068';
	font-size: 16px;
	font-family: FontAwesome;
	background-image: none;
	width: 35px;
	height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 50%;
	color: #000000;
	transition: 0.5s;
}

.our_servicesB .accordion-item .accordion-header .accordion-button.collapsed::after {
	content: '\2b';
	background-color: #077cc11a;
}
/*.our_servicesB .accordion-item .accordion-header .accordion-button::before {
    content: "Q.";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--theme-color2);
    transform: translate(22px, 26px);
}*/
.calculatorlist-img {
	height: 250px;
	display: flex;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}

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

.our_servicesB .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
	background-color: #154677;
	color: #fff;
}

.calculatorlist-content p {
	margin: 0;
	width: 90%;
}

.calculatorlist-content p .btn {
	margin-top: 16px;
}
.our_servicesB .accordion-item .accordion-header .accordion-button {
	font-size: 24px;
	color: #000;
	padding: 15px;
	border-left-color: #077CC1;
	border-radius: 0 !important;
	transition: 0.5s;
	box-shadow: none;
	transition: 0.5s;
	font-weight: 500;
	background-color: transparent;
	position: relative;
	padding-left: 50px;
}

.our_servicesB .accordion-item .accordion-header .accordion-button.collapsed {
	border-left: 2px solid var(--theme-color2);
	border-radius: 8px !important;
	background-color: #ffffff;
	color: #000000;
}

.our_servicesB .accordion-item .accordion-collapse .accordion-body {
	width: 100%;
	background-color: #ffffff;
	margin: 0 auto 2.5%;
	border-radius: 20px;
	font-size: 16px;
	color: #000000;
}

.our_servicesB .accordion-item .accordion-header .accordion-button::after {
    content: '\f068';
    font-size: 16px;
    font-family: FontAwesome;
    background-image: none;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    color: #000000;
    transition: 0.5s;
    position: absolute;
    top: 12px;
    left: 0;
}

.our_servicesB .accordion-item .accordion-header .accordion-button.collapsed::after {
	content: '\2b';
	background-color: #077cc11a;
}

.our_servicesB .accordion-item .calculatorlist-content h6 {
    position: relative;
    font-size: 17px;
    margin-left: 32px;
    margin-bottom: 12px;
    padding-left: 25px;
	font-family: 'Satoshi-Regular';
}
/* .our_servicesB .accordion-item .calculatorlist-content h6 strong{
	font-family: 'Satoshi-Bold';
} */
.our_servicesB .accordion-item .calculatorlist-content h6::before {
    content: '';
    background-image: url(../images/details-check.png);
    background-size: 18px;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
}
.our_servicesB .accordion-item .calculatorlist-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 65px;
    margin-bottom: 15px;
}
.our_servicesB .accordion-item .calculatorlist-content ul li {
    color: #1D1D1D;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    position: relative;
    padding-left: 22px;
	font-family: "Google Sans", sans-serif;
}
.our_servicesB .accordion-item .calculatorlist-content ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #154677;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgb(21 70 119 / 15%);
    transform: translate(0px, 10px);
}
.key-technologis-area .title3 {
    margin-bottom: 40px;
}

/* 06.07.2026 BB */
.key-technologis-area.our_servicesB.p-80.pt-0 p {
	width: 80%;
	margin: 0 auto 15px;
}
.key-technologis-area.our_servicesB.p-80.pt-0 .accordion-body p {
    width: 100%;
	padding-right: 50px;
}
.key-technologis-area.our_servicesB.p-80.pt-0 .accordion-button {
    font-family: 'Satoshi-Medium';
}
.moto-services-sec-one.electricalTesting-area10.electricalTesting-area10215.p-80 {
	width: 100%;
	background-color: #154677;
}

.moto-services-sec-one.electricalTesting-area10.electricalTesting-area10215.p-80 .imgBox1010 {
	width: 95%;
	height: 450px;
	position: relative;
	display: flex;
	border-radius: 20px;
	overflow: hidden;
}

.moto-services-sec-one.electricalTesting-area10.electricalTesting-area10215.p-80 .imgBox1010 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.moto-services-sec-one.electricalTesting-area10.electricalTesting-area10215.p-80 .title3 h3, .moto-services-sec-one.electricalTesting-area10.electricalTesting-area10215.p-80 .title3 p {
	color: #fff;
}
.moto-services-sec-one.electricalTesting-area10.electricalTesting-area10215.p-80 .title3 h3 {
	margin-bottom: 20px;
}
.moto-services-sec-one.electricalTesting-area10.electricalTesting-area10215.p-80 ul li {
    font-size: 17px;
    color: #fff;
    padding-bottom: 3px;
    position: relative;
    background-image: url(../images/bullet123.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 30px;
    margin-bottom: 15px;
}
.transformer-services-sec-two.new.p-80 .title3 p {
	width: 75%;
	margin: 0 auto 15px;
}
.transformer-services-sec-two.new.p-80 .img-box.d-flex {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	border-radius: 20px;
	overflow: hidden;
}
.transformer-services-sec-two.new.p-80 .img-box.d-flex img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.transformer-services-sec-two.new .content-box ul li::before {
    display: none;
}
.transformer-services-sec-two.new .content-box ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transformer-services-sec-two.new .content-box ul li {
    font-size: 17px;
    color: #000;
    padding-bottom: 3px;
    position: relative;
    background-image: url(../images/details-check.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 4px 5px;
    padding-left: 30px;
}
.transformer-services-sec-two.new.p-80 .facilities p {
	font-size: 20px;
	width: 55%;
	margin: 50px auto 35px;
	text-align: center;
}
.transformer-services-sec-two.new.p-80 .facilities ul {
	display: grid;
    grid-template-columns: 1fr 1fr;
	grid-gap: 15px;
	width: 75%;
	margin: 0 auto;
}
.transformer-services-sec-two.new.p-80 .facilities ul li {
    font-size: 17px;
    color: #000;
    padding-bottom: 3px;
    position: relative;
    background-image: url(../images/details-check.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 30px;
}
.transformer-services-sec-two150.p-80 {
	width: 100%;
	background-color: #154677;
}
.transformer-services-sec-two150.p-80 .title3 h3, .transformer-services-sec-two150.p-80 .title3 p {
    color: #fff;
}
.transformer-services-sec-two150.p-80 .title3 p {
    width: 82%;
	margin: 0 auto 15px;
}
.manpower .title3 {
    text-align: left;
    margin: 50px 0;
    width: 60%;
}
.manpower .title3 p {
	width: 100% !important;
	text-align: left;
}
.imgBox101015 {
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin: 0 auto 25px;
}
.imgBox101015 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.manpowerstrength .title3 p {
	color: #fff;
	width: 100% !important;
    text-align: left !important;
	width: 75% !important;
	margin-left: 0 !important;
}
.manpowerstrength .row h5 {
	color: #fff;
	margin: 10px 0 25px;
}
.manpowerstrength ul li {
    font-size: 17px;
    color: #fff;
    padding-bottom: 3px;
    position: relative;
    background-image: url(../images/bullet123.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 0px 4px;
    padding-left: 30px;
    margin-bottom: 15px;
}
.transformer-services-sec-two.new.p-80 .title3 p {
	width: 100%;
	text-align: left;
}
.transformer-services-sec-two102.p-80.pt-0 .title3 p {
	width: 82%;
    margin: 0 auto 15px;
}
.transformer-services-sec-two102.p-80.pt-0 .title3  {
    margin: 0 0 50px;
}
.transformer-services-sec-two102.p-80.pt-0 {
	width: 98%;
	max-width: 1920px;
	margin: 0 auto;
	background-color: #F4F5FF;
	border-radius: 25px;
	padding: 70px 0 !important;
}
.cardcertifications .nav-item {
	width: 100%;
}
.transformer-services-sec-two102.p-80.pt-0 .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-color: transparent;
}
.transformer-services-sec-two102.p-80.pt-0 .nav-tabs .nav-link {
    padding: 15px;
    border-bottom: 1px solid #ccc;
    font-size: 19px;line-height: 21px;
	position: relative;border-radius: 10px;
}
.transformer-services-sec-two102.p-80.pt-0 .nav-link {
	font-family: 'Satoshi-Medium';
    color: #000;
}
.transformer-services-sec-two102.p-80.pt-0 .card-header-tabs .nav-link.active {
    color: #fff;
}
.transformer-services-sec-two102.p-80.pt-0 .col-md-7 .card-body {
    background-color: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 10px;
}
.transformer-services-sec-two102.p-80.pt-0 .technicalbodytext {
	width: 75%;
	padding: 15px 25px 15px 15px;
}
.transformer-services-sec-two102.p-80.pt-0 .technicalbodytext h3 {
	margin-bottom: 15px;
	font-size: 35px;line-height: 37px;
	color:#103f8f;
}
.row.listing-body-area.align-items-center .content-box h3 {
	margin-bottom: 20px;
}
.technicalbody .technicalbodytext ul li {
    font-size: 17px;
    color: rgb(0, 0, 0);
    padding-bottom: 3px;
    position: relative;
    background-image: url("../images/details-check.png");
    background-size: 18px;
    background-repeat: no-repeat;
    padding-left: 30px;
    background-position: 5px 5px;
	margin-bottom: 15px;
  line-height: normal;
}
.technicalbody .technicalbodytext ol {
    margin-top: 25px;
	padding-left: 15px;
	position: relative;
}

.technicalbody .technicalbodytext ol li {
    background-image: none !important;
	font-family: 'Satoshi-Regular';
	padding-left: 20px;
}
.technicalbody .technicalbodytext ol li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #154677;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgb(21 70 119 / 15%);
    transform: translate(0px, 10px);	
}

.technicalbodyimg {
    width: 70%;
  height: 100%;
  position: relative;
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 30, 70, 0.12);
  border: 1px solid #ddd;
}

.technicalbodyimg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}
/* .transformer-services-sec-two102.p-80.pt-0 .nav-tabs .nav-link:after {
    content: "\f0a9";
    position: absolute;
    top: 16px;
    right: 10px;
    font-family: 'FontAwesome';
    font-size: 20px;
} */
.cardcertifications{background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(10,30,70,.08);
  padding: 28px;}
.nav-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;margin-right: 10px;
}
.card-header-tabs .nav-link.active{background: linear-gradient(135deg,#0b3d91,#123f8f);
  color: #fff;}
.card-header-tabs .nav-link.active .nav-icon{background: #fff;color:#0b3d91;}
.card-header-tabs .nav-tabs .nav-link{ border-radius:10px;}
.title-underline{width: 54px;
  height: 4px;
  background: #103f8f;
  border-radius: 3px;
  margin: 10px 0 26px 0;}

.card-header-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #123f8f;
}

.row.section-three-area.align-items-center .title3 {
	padding-left: 25px;
}
.transformer-services-sec-two150.p-80 .manpowerstrength ol li {
    background-image: none !important;
	padding-left: 20px;
}
.transformer-services-sec-two150.p-80 .manpowerstrength ol li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgb(255 255 255 / 15%);
    transform: translate(0px, 10px);
}
.transformer-services102.transformer-services-sec-two.new.p-80.pt-0 .nav {
    align-items: center;
    justify-content: center;
	width: 35%;
	margin: 0 auto 25px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 10px;
	padding: 10px;
	border-radius: 30px;
}
.transformer-services102.transformer-services-sec-two.new.p-80.pt-0 .title3 {
    margin-bottom: 20px;
}

.transformer-services102.transformer-services-sec-two.new.p-80.pt-0 .nav-link {
    color:#000;
}
.transformer-services102.transformer-services-sec-two.new.p-80.pt-0 .nav-tabs .nav-item.show .nav-link, .transformer-services102.transformer-services-sec-two.new.p-80.pt-0 .nav-tabs .nav-link.active {
    border-radius: 30px;
    background: #154677;
    background: linear-gradient(182deg, rgba(21, 70, 119, 1) 0%, rgba(39, 130, 221, 1) 99%);
	color: #fff;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: transparent;
}
.transformer-services102.transformer-services-sec-two.new.p-80.pt-0 .title3 p {
	width: 90%;
	margin: 0 auto 15px;
	text-align: center;
}
.transformer-services102.transformer-services-sec-two.new.p-80.pt-0 .title3 {
	margin-bottom: 50px;
}
.imgBox1015 {
	width: 85%;
	height: auto;
	position: relative;
	margin-left: auto;
}
.imgBox1015 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50em;
	overflow: hidden;
}
.imgBox1015:before {
	content: '';
	position: absolute;
	top: 15px;
	right: 15px;
	width: 100%;
	height: 100%;
	border: 2px solid #154677;
	border-radius: 50em;
}

.core_value {
    width: 100%;
    background-color: var(--theme-color);
}

.core_value .title3 h3 {
    color: var(--white);
}

.core_value .acc-list {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
}

.core_value .acc-item {
    cursor: pointer;
    overflow: visible;
    position: relative;
}

.core_value .acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.22);
    position: relative;
    z-index: 2;
}

.core_value .acc-item.active .acc-header {
    border-bottom: none;
    padding-bottom: 10px;
}

.core_value .acc-item:last-child .acc-header {
    border-bottom: none;
}

.core_value .acc-title {
    font-family: 'Satoshi-Medium';
    font-size: 30px;
    color: #fff;
    margin: 0;
}

.core_value .acc-chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.8px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
    transform: rotate(45deg);
}

.core_value .acc-body {
    background: #EFF5F5;
    border-radius: 18px;
    padding: 0 500px 0 30px;
    margin-bottom: 4px;
    position: relative;
    min-height: 0;
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease;
}


.core_value .acc-item.active .acc-body {
    padding: 35px 500px 35px 30px;
    max-height: 600px;
    opacity: 1;
}

.core_value .acc-body-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 15px;
}

.core_value .acc-body-text {
    font-size: 12.5px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
}

.core_value .acc-body-img {
    width: 320px;
    height: 395px;
    border-radius: 16px;
    object-fit: cover;
    position: absolute;
    right: 112px;
    top: -115px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
    z-index: 10;
    transform: rotate(-10deg);
}

.core_value .acc-body-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.core_value .acc-action-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    /*box-shadow: 0 4px 14px rgba(229, 57, 53, 0.5);*/
    z-index: 11;
    transform: rotate(-45deg);
}
.manpowerstrength ol {
	padding-left: 0px;
	margin-top: 15px;
}
.transformer-services-sec-two.new.p-80 .title3 p {
    text-align: center;
    width: 70%;
    margin: 0 auto 15px;
}
.transformer-services-sec-two.new.newpart3.p-80 .title3 p {
    text-align: left;
	width: 100%;
}
.inner-contact-area .inner-footer-location .info_box .nav-link.active{
	transition:all 0.5s ease-out;
}
.inner-contact-area .inner-footer-location .info_box .nav-link.active {
	border-color: var(--theme-color);
	color: var(--theme-color);
	position: relative;
	background-color: #e5eaf0;
}
.inner-contact-area .inner-footer-location .info_box .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    margin: 0 auto;
    width: 59px;
    height: 13px;
    background-image: url(../images/active.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


/*-- projectsection start --*/
.projectlistingsection {
    background-color: #fbfbfb;
}
.projectlistingsection .projectsectioncontent {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 4%);
}
.projectlistingsection .projectsectioncontent h3 {
    color: #000000;
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}
.projectlistingsection .projectsectioncontent h3 span {
    display: block;
    text-transform: uppercase;
    position: relative;
    font-family: 'Satoshi-Regular';
    color: #154677;
    font-size: 16px;
    padding-left: 24px;
    margin-bottom: 2px;
}
.projectlistingsection .projectsectioncontent h3 span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 22px;
/*     background-image: url(../images/lightning-bolt.webp); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: translate(0px, 8px);
    filter: brightness(0) saturate(100%) invert(19%) sepia(90%) saturate(1072%) hue-rotate(186deg) brightness(91%) contrast(90%);
}
.projectlistingsection .projectsectioncontent ul.dateLocation {
    margin-bottom: 14px;
}
.projectlistingsection .projectsectioncontent ul.dateLocation li {
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 400;
    padding-left: 0;
	width: auto;
}
.projectlistingsection .projectsectioncontent ul.dateLocation li::before{
    display: none;
}
.projectlistingsection .projectsectioncontent ul.dateLocation li i {
    color: #154677;
    margin-right: 8px;
    font-size: 16px;
}
.projectlistingsection .projectsectioncontent p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
}
.projectlistingsection .projectsectioncontent h4 {
    font-size: 24px;
    line-height: 34px;
    color: #000000;
    margin-bottom: 10px;
}
.projectlistingsection .projectsectioncontent ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.projectlistingsection .projectsectioncontent ul li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
	width: 100%;
}
.projectlistingsection .projectsectioncontent ul li::before {
    content: '\f058';
    position: absolute;
    color: #154677;
    font-family: FontAwesome;
    top: 3px;
    left: 0;
    font-size: 14px;
}
.projectlistingsection .projectsectioncontent .result {
    margin-top: 24px;
    background-color: rgb(21 70 119 / 20%);
    padding: 20px;
    border-radius: 16px;
    border-left: 3px solid #224576;
    font-size: 15px;
    line-height: 24px;
}
.projectlistingsection .projectsectioncontent .result span {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    color: #154677;
    margin-bottom: 4px;
}
.projectlistingsection .img-box .img {
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;
}
/* .projectlistingsection .img-box .img-listing {
    border-radius: 12px;
    overflow: hidden;
    width: 100px;
    height: 100px;
    position: relative;
    display: inline-flex;
    margin-right: 5px;
} */
.projectlistingsection .img-box .img-listing img {
    border-radius: 12px;
    overflow: hidden;
    width: 110px!important;
    height: 92px;
}
.projectlistingsection .img-box .img img, .projectlistingsection .img-box .img-listing img{
    width: 100%;
	height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    transform: translateZ(0);
}
/* .projectlistingsection .img-box .img:hover img, .projectlistingsection .img-box .img-listing:hover img{
    transform: scale(1.1);
} */
.projectlistingsection .img-box .img .tag {
    position: absolute;
    z-index: 9;
    color: #ffffff;
    top: 0;
    right: 0;
    background-color: #154677;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 500;
    transform: translate(-16px, 16px);
}
.projectlistingsection .img-box a {
	width:100%;
}
.projectlistingsection .img-box .img {
    position: relative;
    height: 588px;
    display: flex;
    width: 100%;
}

/* .projectlistingsection .img-box .img a::before, .projectlistingsection .img-box .img-listing a::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 60%);
    transition: all 0.5s ease-out;
    opacity: 0;
    z-index: 1;
}
.projectlistingsection .img-box .img:hover a::before, .projectlistingsection .img-box .img-listing:hover a::before{
    opacity: 1;
} */
.projectlistingsection:nth-of-type(2n) {
    background-color: rgb(237 246 255);
}
.projectlistingsection:nth-of-type(2n) .row{
    flex-direction: row-reverse;
}
.img-box{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.img{
    width:100%;
    position:relative;
}
.gallery-thumb {
    height: 100px;
}
.gallery-hidden {
    display: none;
}
/* .img-listing{
    width:calc((100% - 40px) / 5);
    position:relative;
    display:none;
} */

/* .img-listing.show{
    display:block;
} */






















































