/*
*  html5resetcss
*/

html,
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

body {
    background: #f5f6f5;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 400;
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

nav ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

ins {
    background-color: #ff9;
    color: #2e2e2e;
    text-decoration: none
}

mark {
    background-color: #ff9;
    color: #2e2e2e;
    font-style: italic;
    font-weight: bold
}

del {
    text-decoration: line-through
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

input,
select {
    vertical-align: middle
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #676767;
}

 ::-moz-placeholder {
    /* Firefox 19+ */
    color: #676767;
}

 :-ms-input-placeholder {
    /* IE 10+ */
    color: #676767;
}

 :-moz-placeholder {
    /* Firefox 18- */
    color: #676767;
}

.loadScreen {
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
}

.loadScreen img {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    width: 50px;
}

img {
    width: 100%;
    height: auto;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    background: transparent;
    text-decoration: none !important;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}


/* Custom CSS
============================================= */

.container {
    width: 100% !important;
    max-width: 1750px;
}

.header {
    width: 100%;
    float: left;
    border-bottom: 1px solid #e5eaef;
}

.header .container {
    display: flex;
    align-items: center;
    gap: 0;
}

.siteLogo {
    width: 200px;
    padding: 15px 0;
}

.siteLogo a {
    display: block;
}

.headerNav {
    margin-left: auto;
    display: block;
}

.headerNav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.headerNav ul li {
    display: flex;
}

.headerNav ul li a {
    display: block;
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    color: #2e2e2e;
    position: relative;
}

.headerNav ul li.current a,
.headerNav ul li:hover a {
    color: #e74c3c;
}

.headerNav ul li.current a::after,
.headerNav ul li:hover a::after {
    width: 100%;
    left: 0;
}

.headerNav ul li a::after {
    background: #e74c3c;
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: -3px;
    content: '';
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.headerNav ul ul {
    position: absolute;
    display: block;
    top: 35px;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* border-radius: 0 0 8px 8px; */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    list-style: none;
    transition: all ease-in-out 0.2s !important;
}

.headerNav ul li {
    position: relative;
    display: block;
}

.headerNav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.headerNav ul ul li a {
    color: #2e2e2e !important;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.headerNav ul ul li:last-child a {
    border: none !important;
}

.headerNav ul ul li a.current,
.headerNav ul ul li a:hover {
    background: #2a5298;
    color: #f8f9fa !important;
}

.headerNav ul ul ul,
.headerNav ul ul ul ul {
    position: absolute;
    left: 101%;
    top: 9px;
    list-style: none;
    /* opacity: 0; */
    /* visibility: hidden; */
    z-index: 1000;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.headerNav ul li i {
    display: inline-block;
    padding-left: 5px;
    font-size: 12px;
    position: relative;
    top: -1px;
}

.headerNav ul ul li i {
    right: 10px;
    position: absolute;
    top: 18px;
    font-size: 12px;
    padding-left: 3px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.headerNav ul li:last-child a {
    border: none !important;
}

.headerNav ul ul li a::after,
.headerNav ul ul ul li a::after {
    display: none;
}

.mobileButton,
.closeButton {
    display: none;
}

.heroBanner {
    width: 100%;
    display: flex;
    position: relative;
    margin-bottom: -3px;
    overflow: hidden;
}

.bannerTextOuter {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.bannerText {
    background: rgba(63, 124, 177, 0.7);
    border: 1px solid rgba(63, 124, 177, 1);
    width: 650px;
    padding: 20px;
}

.bannerText strong {
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
    display: block;
}

.bannerText strong::after {
    background: #e74c3c;
    width: 100px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -7px;
    content: '';
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.bannerText strong span {
    color: #e74c3c;
}

.bannerText h1 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 20px;
}

.bannerText p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.heroBannerSlider {
    width: 100%;
    position: relative;
}

.heroBannerSlider .slick-dots {
    width: 100%;
    display: flex;
    gap: 15px;
    list-style: none;
    justify-content: center;
    margin-top: 20px;
    position: absolute;
    left: 0;
    bottom: 30px;
}

.heroBannerSlider .slick-dots li {
    width: 30px;
}

.heroBannerSlider .slick-dots li button {
    padding: 0;
    background: #9b9b9b;
    width: 100%;
    height: 3px;
    border: none;
    outline: none;
    font-size: 0;
}

.heroBannerSlider .slick-dots li.slick-active button {
    background: #e74c3c;
}

.button1 {
    background: #e74c3c;
    display: inline-block;
    outline: none;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #fff;
    padding: 15px 25px 14px;
    text-transform: uppercase;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.button1:hover {
    background: #055ca7;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.hTxt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-bottom: 50px;
}

.hTxt h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    color: #2e2e2e;
    margin: 0 0 20px;
    position: relative;
}

.hTxt h2::after {
    background: #3f7cb1;
    width: 100px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -7px;
    content: '';
}

.hTxt h2 span {
    color: #e74c3c;
}

.hTxt p {
    font-size: 17px;
    line-height: 22px;
    font-weight: 400;
    color: #2e2e2e;
    margin-bottom: 0;
}

.ourService {
    background: #f6f7f7;
    border-top: 1px solid #3b97b3;
    /* background: linear-gradient(70deg, #62abd9 0%, #4a83b4 100%); */
    width: 100%;
    float: left;
    padding: 80px 0 100px;
}

.ourServiceList {
    width: 100%;
}

.ourServiceList ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ourServiceList ul li {
    padding: 20px;
    text-align: center;
    /* border: 1px solid rgb(173 173 173 / 20%); */
    border: 1px solid rgb(255 255 255 / 20%);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.ourServiceList ul li:hover {
    background: rgb(71 169 255 / 15%);
    border-color: rgb(71 169 255 / 30%);
}

.ourServiceList ul li img {
    width: auto;
    height: 65px;
    object-fit: cover;
    display: inline-block;
    margin-bottom: 20px;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.ourServiceList ul li:hover img {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
}

.ourServiceList ul li strong {
    display: block;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    display: block;
    color: #2e2e2e;
    padding-bottom: 10px;
}

.ourServiceList ul li small {
    display: block;
    font-size: 16px;
    line-height: 17px;
    font-weight: 500;
    color: #9b9b9b;
    padding-bottom: 20px;
}

.ourServiceList ul li p {
    font-size: 17px;
    line-height: 22px;
    font-weight: 400;
    color: #2e2e2e;
    margin: 0 0 15px;
}

a.readMore {
    font-size: 17px;
    line-height: 22px;
    font-weight: 600;
    color: #e74c3c;
    display: inline-block;
}

a.readMore:hover {
    /* color: #2e2e2e; */
    color: #055ca7;
}

.whoWeAre {
    background: linear-gradient(70deg, #62abd9 0%, #4a83b4 100%);
    width: 100%;
    display: flex;
    padding: 80px 0;
}

.whoWeAre .hTxt h2,
.whoWeAre .hTxt p {
    color: #fff;
}

.whoWeAre .hTxt h2::after {
    background: #a9c2d3;
}

.whoWeAreCont {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.whoWeAreCont img {
    width: 700px;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whoWeAreCont h3,
.WhyChooseUs h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    display: block;
    color: #fff;
    margin: 10px 0 20px;
}

.whoWeAreCont p,
.WhyChooseUs p {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
}

.whoWeAreCont ul,
.WhyChooseUs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.whoWeAreCont li,
.WhyChooseUs li {
    font-size: 17px;
    line-height: 23px;
    font-weight: 500;
    color: #fff;
    padding: 0 0 15px 30px;
    word-break: break-word;
    position: relative;
}

.whoWeAreCont li::before,
.WhyChooseUs li::before {
    content: '\f105';
    font-family: "Fontawesome";
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    font-weight: 400;
    color: #fff;
    position: absolute;
    left: 4px;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.customPanel1 {
    width: 100%;
    display: grid;
    grid-template-columns: 3fr 1fr 4fr;
}

.cbox1 {
    background: #d4ebf4;
    padding: 20px;
}

.cbox1>div {
    background: #d4ebf4;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
}

.cbox1 strong {
    font-size: 80px;
    line-height: 80px;
    font-weight: 700;
    color: #082237;
}

.cbox1 small {
    display: block;
    font-size: 17px;
    line-height: 17px;
    font-weight: 400;
    color: #082237;
    padding-top: 20px;
}

.cbox1 span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #082237;
    padding-left: 40px;
}

.cbox2 {
    background: #83cee4;
    padding: 20px;
    display: flex;
    align-items: center;
}

.cbox2 span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #082237;
    padding-left: 10px;
    max-width: 500px;
}

.cbox2 img {
    width: 65px;
    display: block;
    margin: 0 15px;
}

.cbox3 {
    background: #83cee4;
}

.cbox3 img {
    width: 320px;
    display: block;
}

.WhyChooseUs {
    background: #f6f7f7;
    width: 100%;
    display: flex;
    padding: 80px 0 100px;
}

.WhyChooseUs .hTxt {
    align-items: start;
}

.WhyChooseUs .hTxt h2::after {
    left: 0;
    transform: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    -o-transform: unset;
}

.WhyChooseUs p {
    max-width: 1200px;
}


/* .WhyChooseUs img {
    border: 1px solid rgb(177 177 177 / 20%) !important;
} */

.WhyChooseUs h3,
.WhyChooseUs p,
.WhyChooseUs li,
.WhyChooseUs li::before {
    color: #2e2e2e;
    border-color: #2e2e2e;
}

.WhyChooseUs a.button1 {
    background: #0e5fa5;
    margin: 0 0 100px;
}

.WhyChooseUs a.button1:hover {
    background: #e74c3c;
}

.WhyChooseUs .whoWeAreCont {
    flex-direction: row-reverse;
}

.ourWorkProcess {
    /* background: linear-gradient(70deg, #62abd9 0%, #4a83b4 100%); */
    background: #203c5e;
    width: 100%;
    display: flex;
    padding: 100px 0;
}

.ourWorkProcess .hTxt h2,
.ourWorkProcess .hTxt p,
.customReview .hTxt h2,
.customReview .hTxt p {
    color: #fff;
}

.ourWorkProcess .hTxt h2::after,
.customReview .hTxt h2::after {
    background: #a9c2d3;
}

.ourWorkProcess .ourServiceList ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ourWorkProcess .ourServiceList ul li {
    position: relative;
}

.ourWorkProcess .ourServiceList ul li em {
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    font-size: 22px;
    line-height: 40px;
    padding: 10px 0;
    text-align: center;
    color: #082237;
    font-weight: 500;
    font-style: normal;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.ourWorkProcess .ourServiceList ul li:hover em {
    background: #e74c3c;
    color: #fff;
}

.ourWorkProcess .ourServiceList ul li img {
    filter: brightness(0.2) invert(1);
    -webkit-filter: brightness(0.2) invert(1);
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.ourWorkProcess .ourServiceList ul li:hover img {
    filter: brightness(1)invert(0);
    -webkit-filter: brightness(1)invert(0);
}

.ourWorkProcess .ourServiceList ul li strong,
.ourWorkProcess .ourServiceList ul li p {
    color: #fff;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.ourWorkProcess .ourServiceList ul li:hover {
    background: #fff;
}

.ourWorkProcess .ourServiceList ul li:hover strong,
.ourWorkProcess .ourServiceList ul li:hover p {
    color: #082237;
}

.customReview {
    background: #203c5e;
    width: 100%;
    float: left;
    padding: 80px 0 100px;
}

.reviewSlider {
    width: 100%;
    float: left;
    position: relative;
}

.reviewSlider .item {
    padding: 0 15px;
}

.reviewBox {
    border: 1px solid rgb(255 255 255 / 20%);
    padding: 30px;
    text-align: center;
}

.reviewBox img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.reviewBox strong {
    display: block;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 10px;
}

.reviewBox p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.reviewSlider .slick-dots {
    width: 100%;
    display: flex;
    gap: 15px;
    list-style: none;
    justify-content: center;
    margin-top: 20px;
}

.reviewSlider .slick-dots li {
    width: 30px;
}

.reviewSlider .slick-dots li button {
    padding: 0;
    background: #9b9b9b;
    width: 100%;
    height: 3px;
    border: none;
    outline: none;
    font-size: 0;
}

.reviewSlider .slick-dots li.slick-active button {
    background: #e74c3c;
}

.lookingForService {
    /* background: linear-gradient(70deg, #62abd9 0%, #4a83b4 100%); */
    width: 100%;
    float: left;
    padding: 50px 0;
}

.lookingForService .container,
.lookingForService .container>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.lookingForService .container>div img {
    width: 60px;
    display: block;
    margin-right: 15px;
}

.lookingForService h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: #082237;
    margin: 0 0 10px;
}

.lookingForService h4 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    color: #082237;
    margin: 0 0 10px;
}

.lookingForService span {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: #082237;
    display: block;
}

.home_faq_panel {
    width: 100%;
    float: left;
    padding: 100px 0;
}

.home_faq_panel h2 {
    text-align: center;
    margin-bottom: 30px;
}

.accordion_content {
    width: 100%;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.accordion_content::before,
.accordion_content::after {
    clear: both;
    display: block;
    visibility: hidden;
    overflow: hidden;
    content: '';
}

.acc_trigger {
    background: url(images/add-icon.png) right center no-repeat;
    background-size: 20px 20px;
    width: 100%;
    float: left;
    padding: 24px 40px 24px 0;
    font-size: 18px;
    line-height: 20px;
    font-weight: normal;
    color: #082237;
    position: relative;
    cursor: pointer;
    border-top: 1px solid rgb(229 224 224 / 80%);
    position: relative;
    top: 1px;
}

.acc_trigger:first-child {
    border-top: none;
}

.acc_trigger.current {
    background: url(images/minus-icon.png) right center no-repeat;
    background-size: 20px 20px;
    border-bottom: 1px solid rgb(229 224 224 / 80%);
}

.acc_cont {
    width: 100%;
    float: left;
    display: none;
    border-top: 1px solid rgb(229 224 224 / 80%);
}

.acc_cont p {
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    color: #082237;
    margin: 20px 0;
    text-align: left;
}

.faqBox {
    width: 100%;
    display: grid;
    grid-template-columns: 4fr 3fr;
    gap: 50px;
}

.enquiryBox {
    display: block;
}

.inquiryForm {
    max-width: 500px;
    margin: 20px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.inquiryForm h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: #2e2e2e;
    margin: 0 0 10px;
}

.inquiryForm p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #2e2e2e;
    margin-bottom: 15px;
}

.inquiryForm input[type="text"],
.inquiryForm input[type="email"],
.inquiryForm textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.inquiryForm input:focus,
.inquiryForm textarea:focus {
    border-color: #e74c3c;
}

.inquiryForm textarea {
    height: 120px;
    resize: none;
}

.inquiryForm input[type="submit"] {
    background: #e74c3c;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #fff;
    padding: 15px 40px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all ease-in-out 0.2s;
    width: 100%;
}

.inquiryForm input[type="submit"]:hover {
    background: #055ca7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Footer Styling */

.footer {
    background: #16273c;
    color: #ffffff;
    padding-top: 40px;
    width: 100%;
    float: left;
}

.topBar {
    display: flex;
    justify-content: space-around;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    text-align: left;
    color: #adb5bd;
}

.topBar strong {
    display: block;
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.infoItem {
    display: flex;
    align-items: center;
}

.infoItem img {
    width: 40px;
    margin-right: 15px;
    display: block;
}

.infoItem:first-child img {
    width: 30px;
}

.infoItem a {
    display: inline-block;
    color: #adb5bd;
}

.infoItem a:hover {
    color: #fff;
}

.footerBottom {
    display: flex;
}

.footerBottom .container>div {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
}

.footerCol h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footerCol ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: 0.3s;
}

.footerCol ul li.current a,
.footerCol ul li a:hover {
    color: #e74c3c;
}

.footerLogo {
    display: inline-block;
}

.footerLogo img {
    max-width: 180px;
}

.gstTxt {
    font-size: 12px;
    line-height: 20px;
    color: #adb5bd;
    margin-top: 15px;
}

.footerCol address {
    color: #adb5bd;
}


/* About Us Section */

.aboutPageCont {
    padding: 80px 0;
    /* background: #ffffff; */
    width: 100%;
    display: flex;
}

.aboutContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.aboutTxt {
    max-width: 800px;
}

.aboutTxt span {
    display: block;
    color: #e74c3c;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.aboutTxt h2 {
    font-size: 36px;
    color: #2e2e2e;
    margin: 10px 0 20px;
    font-weight: 600;
}

.aboutTxt em {
    font-style: normal;
    color: #e74c3c;
}

.aboutTxt p {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #2e2e2e;
    margin-bottom: 20px;
}

.trustList {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.trustList li {
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2e2e2e;
}

.trustList i {
    color: #e74c3c;
}


/* Floating Image Badge */

.aboutImage {
    position: relative;
}

.aboutImage img {
    width: 400px;
    display: block;
    margin-left: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floatingBadge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #e74c3c;
    color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(229, 157, 74, 0.3);
}

.floatingBadge .number {
    display: block;
    font-size: 32px;
    font-weight: 800;
}

.statsSec {
    /* background: #2e2e2e; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#171e2c+0,203655+47,171e2c+100 */
    background: linear-gradient(to right, #171e2c 0%, #203655 47%, #171e2c 100%);
    padding: 80px 0;
}

.statsSec .hTxt {
    align-items: center;
}

.statsSec .hTxt h2 {
    color: #fff;
}

.statsSec .hTxt h2::after {
    /* background: #fff; */
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.statBlock {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.statBlock:hover {
    transform: translateY(-10px);
    border-color: #e74c3c;
    background: rgba(255, 255, 255, 0.08);
}

.statBlock h3 {
    color: #e74c3c;
    font-size: 36px;
    margin: 15px 0 5px;
}

.statBlock p {
    color: #adb5bd;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.statBlock .icon {
    font-size: 40px;
}

.contactSec {
    display: block;
}

.contactBox {
    max-width: 800px;
    margin: auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contactBox h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
}


/* Form Styles */

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inputRow {
    display: flex;
    gap: 15px;
}

.inputRow input {
    flex: 1;
}

input,
textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 1rem;
    outline: none;
    resize: none;
}

.btn-submit {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #055ca7;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.breadcrumbs {
    background: radial-gradient(circle, #213859 0%, #161e2c 100%);
    padding: 60px 0;
    color: #ffffff;
    text-align: center;
    width: 100%;
    display: flex;
}

.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumbs h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e74c3c;
}

.breadcrumbs ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumbs ul li {
    display: flex;
    align-items: center;
    color: #aac4d2;
}

.breadcrumbs ul li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #ffffff;
    opacity: 0.5;
}

.breadcrumbs ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs ul li a:hover {
    color: #ff9800;
}

.blogPageCont {
    width: 100%;
    display: flex;
    padding: 70px 0 30px;
}

.blogPageCont ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blogPageCont li {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.blogPageCont li img {
    display: block;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.blogPageCont li:hover {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    border-color: #e74c3c;
}

.blogPageCont li small {
    display: block;
    font-size: 17px;
    line-height: 22px;
    font-weight: 500;
    color: #082237;
    padding-bottom: 15px;
}

.blogPageCont li h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    color: #082237;
    margin: 0 0 15px;
}

.blogPageCont li h3 a {
    display: inline-block;
    color: #082237;
}

.blogPageCont li h3 a:hover {
    color: #e74c3c;
}

.blogPageCont li p {
    font-size: 15px;
    line-height: 26px;
    color: #082237;
    margin-bottom: 15px;
}

.blogPageCont li a.read {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #e74c3c;
    clear: both;
}

.blogPageCont li a.read:hover {
    color: #055ca7;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.blogDetails {
    display: flex;
    width: 100%;
    padding: 30px 0 50px;
}

.blogDetails .container {
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 100px;
}

.blogDetails figure {
    overflow: hidden;
    display: block;
    margin: 0 0 30px;
    position: relative;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blogDetails figure img {
    display: block;
    object-fit: cover;
    height: 400px;
}

.blogDetails h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    color: #082237;
    margin: 0 0 20px;
}

.blogDetails p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    color: #082237;
    margin: 0 0 20px;
}

.social {
    display: flex;
    gap: 15px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.social a {
    display: inline-block;
    font-size: 30px;
    color: #e74c3c;
}

.social a:hover {
    color: #055ca7;
}

.blogTxt {
    grid-column: 1;
}

.serviceList {
    grid-column: 2;
}

.serviceList h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #082237;
    margin: 0 0 30px;
}

.serviceList ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.serviceList li {
    display: block;
}

.serviceList li a {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.serviceList li a:hover {
    border-color: #e74c3c;
    transform: translateX(-2px);
    -webkit-transform: translateX(-2px);
    -moz-transform: translateX(-2px);
    -ms-transform: translateX(-2px);
    -o-transform: translateX(-2px);
}

.serviceList li a strong {
    display: block;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: #082237;
    padding-right: 15px;
}

.serviceList li a strong small {
    display: block;
    font-weight: 400;
    font-size: 16px;
    padding-top: 10px;
    color: #000;
}

.serviceList li a img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    margin-left: auto;
}

.customMap {
    width: 100%;
    display: flex;
    padding: 0px 0 50px;
}

.customMap .container>div {
    /* padding: 0 163px; */
    max-width: 1385px;
    margin: 0 auto;
    display: flex;
}

.customMap iframe {
    width: 100%;
    height: 300px;
    display: flex;
}

.hero {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 60px 0;
    text-align: center;
    width: 100%;
    display: flex;
}

.hero .container {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 55px;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero img {
    width: 500px !important;
    height: 300px;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-btn {
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.cta-btn:hover {
    background: #c0392b;
    color: #fff;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.services {
    padding: 60px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #2c3e50;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 21px;
    line-height: 26px;
}

.service-card p {
    color: #666;
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 15px;
}

.about {
    padding: 60px 0;
}

.about h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #2c3e50;
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.guarantee {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    display: flex;
}

.guarantee h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-section {
    background: #e74c3c;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.highlight {
    color: #e74c3c;
    font-weight: bold;
}

.cta {
    display: flex;
    padding: 30px 0 0;
    justify-content: center;
}

.cta a {
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: inline-block;
}

.contact-section .cta-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
}

.contact-section .cta-btn:hover {
    background: linear-gradient(135deg, #216797, #277fb9);
}


/* .floatIcon {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
} */

.floatIcon {
    background: rgb(255 255 255 / 100%);
    box-shadow: -2px 0px 14px 0px rgb(0 0 0 / 30%);
    position: fixed;
    right: 0;
    top: 50%;
    display: flex;
    flex-direction: column;
    gap: 9px;
    z-index: 999;
    padding: 10px 5px;
    border: 1px solid #f1f1f1;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.floatIcon:after,
.floatIcon:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.floatIcon:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 10px;
    margin-top: -10px;
}

.floatIcon:before {
    border-color: rgba(231, 76, 60, 0);
    border-right-color: #f1f1f1;
    border-width: 10px;
    margin-top: -10px;
}

.floatIcon a {
    display: block;
}

.floatIcon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.floatIcon img:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}


/* Form Validation Styles */

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-checkbox label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 1rem;
    outline: none;
    margin-bottom: 20px;
}

select:focus {
    border-color: #e74c3c;
}

.input-valid {
    border-color: #28a745 !important;
}

.input-invalid {
    border-color: #e74c3c !important;
}


/* Loading states */

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* Accessibility improvements */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Footer Credit */

.footerCredit {
    background: #0d1a26;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footerCredit p {
    text-align: center;
    margin: 0;
    font-size: 14px;
    color: #adb5bd;
}

.footerCredit a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

.footerCredit a:hover {
    color: #fff;
    text-decoration: underline;
}


/* Clickable Contact Info */

.trustList a,
.lookingForService h4 a,
address a {
    color: inherit;
    text-decoration: none;
}

.trustList a:hover,
.lookingForService h4 a:hover,
address a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.lookingForService h4 a {
    color: #082237;
}

.lookingForService h4 a:hover {
    color: #e74c3c;
}