@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');


/*common*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {display: block;}
audio, canvas, progress, video {display: inline-block;vertical-align: baseline;}
audio:not([controls]) {display: none;height: 0;}
[hidden], template {display: none;}
a {background-color: transparent; text-decoration:none !important;}
a:active, a:hover{outline: 0; text-decoration:none;}
abbr[title] {border-bottom: 1px dotted;}
b, strong {font-weight: bold;}
dfn {font-style: italic;}
h1 {font-size: 2em;margin: 0.67em 0;}
mark {background: #ff0;color: #000;}
small {font-size: 80%;}
sub, sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}
img {border: 0;}
svg:not(:root) {overflow: hidden;}
figure {margin: 1em 40px;}
hr {-moz-box-sizing: content-box;box-sizing: content-box;height: 0;}
pre {overflow: auto;}
code, kbd, pre, samp {font-family: monospace, monospace;font-size: 1em;}
button, input, optgroup, select, textarea {color: inherit; font: inherit;margin: 0;}
button {overflow: visible;}
button, select {text-transform: none;}
button, html input[type="button"],
input[type="reset"],
input[type="submit"] {-webkit-appearance: button;cursor: pointer;}
button[disabled], html input[disabled] {cursor: default;}
button::-moz-focus-inner, input::-moz-focus-inner {border: 0;padding: 0;}
input {line-height: normal;}
input[type="checkbox"], input[type="radio"] {box-sizing: border-box;padding: 0;}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {height: auto;}
input[type="search"] {-webkit-appearance: textfield;-moz-box-sizing: content-box;-webkit-box-sizing: content-box;box-sizing: content-box;}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}
fieldset {border: 1px solid #c0c0c0;margin: 0 2px;padding: 0.35em 0.625em 0.75em;}
legend {border: 0;padding: 0;}
textarea {overflow: auto;}
optgroup {font-weight: bold;}
table {border-collapse: collapse;border-spacing: 0;}
td, th {padding: 0;}
ul, li{ list-style:none;}
*:focus{ outline:0;}
.trans{transition: all 0.5s ease;}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
}
:root {--regular: 400;
    --semibold: 600;
    --bold: 700;
    --light: 300;
    --medium: 500;
    --mainblue:#00537F;
}
body {margin: 0; padding:0;font-size:15px;color:#000;}
/*common end*/


nav {
    position: fixed;
    z-index: 999;
    width: 100%;
    background: #ffffff;
    padding-left: 100px;
    padding-right: 100px;    
}
nav.fixed {position: fixed;top: 0;left: 0;width: 100%;box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);z-index: 999;}


.pad-top {
    padding-top: 115px;
}

@media (max-width:1600px) {
    .pad-top {
        padding-top: 80px;
    }
}

@media (max-width:1400px) {
    nav {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width:1300px) {
    .pad-top {
        padding-top: 78px;
    }
}

@media (max-width:1150px) {
    .pad-top {
        padding-top: 68px;
    }
}

@media (max-width:991px) {
    nav {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width:575px) {
    nav {
        padding-left: 20px;
        padding-right: 20px;
    }
}

nav .wrapper {
    position: relative;
    width: 100%;
    padding: 10px 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image-width {
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.logo {
    width: 175px;
}

.wrapper .nav-links {
    display: inline-flex;
    gap: 20px;
}

@media (max-width:1400px) {
    .wrapper .nav-links {
        gap: 10px;
    }
}

@media (max-width:1250px) {
    .wrapper .nav-links {
        gap: 0px;
    }
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: var(--regular);
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #185586;
}

@media (max-width:1150px) {
    .nav-links li a {
        padding: 9px 10px;
    }
}

@media (max-width:1400px) {
    .nav-links li a {
        font-size: 13px;
    }
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background-color: #242526e0 !important;
    width: 310px;
    line-height: 45px;
    padding-left: 0px;
    top: 40px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.13);
}

.nav-links .common {
    width: 150px !important;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
    text-transform: capitalize;
}

.drop-menu li a:hover {
    background-color: #0E4E81;
    color: #FFFFFF !important;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: #000!important;
    font-size: 20px;
    cursor: pointer;
    display: none;
}


/* dropdown */

.fa-angle-down:before {
    content: "\f107";
    font-size: 12px;
}

.drop-menu {
    position: relative;
    padding-top: 10px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.drop-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: url("../images/drop-line.png");
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (min-width: 1401px) and (max-width: 1426px) {
    .nav-links li a {
        padding: 9px 13px;
    }
}

@media screen and (min-width: 1151px) and (max-width: 1171px) {
    .nav-links li a {
        padding: 9px 13px;
    }
}

@media screen and (min-width: 971px) and (max-width: 1018px) {
    .nav-links li a {
        padding: 9px 7px;
    }
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

@media screen and (max-width: 970px) {
    .wrapper .btn {
        display: block;
    }
    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 360px;
        top: 0;
        left: -100%;
        background: #fff;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }
    /* custom scroll bar */
     ::-webkit-scrollbar {
        width: 10px;
    }
     ::-webkit-scrollbar-track {
        background: #242526;
    }
     ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }
    #menu-btn:checked~.nav-links {
        left: 0%;
    }
    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }
    #close-btn:checked~.btn.menu-btn {
        display: block;
    }
    .nav-links li {
        margin: 8px 10px;
    }
    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }
    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 0px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }
    #showDrops:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }
    .nav-links .desktop-item {
        display: none;
    }
    .nav-links .mobile-item {
        display: block;
        color: #000;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    /* .nav-links .mobile-item:hover {
        background: #3A3B3C;
    } */
    .drop-menu li {
        margin: 0;
    }
    .drop-menu li a {
        border-radius: 5px;
        font-size: 14px;
    }
    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }
    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }
    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }
    .row .mega-links li {
        margin: 0;
    }
    .content .row header {
        font-size: 19px;
    }
}

nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}

.nav-links {
    margin-bottom: 0px;
}

.icon-color {
    color: #000000;
}

.drp-dwn-clr {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 400;
}

.btn-cls {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.active-line {
    position: relative;
}

.active-line:after {
    color: #0171BB;
    position: absolute;
    content: '';
    height: 3px;
    bottom: -5px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 60%;
    background: linear-gradient(to right, #58b5ff 40%, #00537F 30% 100%) !important;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

@media (max-width:970px) {
    .btn-cls {
        display: none;
    }
    .active-line:after {
        margin: 0;
        left: 20px;
        right: 0px;
        width: 25%;
    }
}

.refferel-btn {
    width: fit-content;
    background-color: #00537F;
    font-size: 14px;
    font-weight: var(--regular);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all ease-in-out .5s;
}

@media (max-width:1150px) {
    .refferel-btn {
        font-size: 11px;
        padding: 5px 15px;
    }
}

.refferel-btn:hover {
    background-color: #043a57;
}

.call-sec {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.call-icon {
    width: 25px;
    display: flex;
}

.call-num {
    display: flex;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    margin: auto;
    text-decoration: none;
}

@media (max-width:1150px) {
    .call-num {
        font-size: 12px;
    }
}

.center-img {
    margin: auto;
}

.top-line {
    width: 100%;
    background-color: #0E4E80;
    padding: 5px;
}

@media (max-width:1600px) {
    .logo {
        width: 120px;
    }
}


@media screen and (max-width:970px) {
    .drp-dwn-clr {
        color: black!important;
    }
    .nav-links .drop-menu {
        background-color: white!important;
    }
}


/* Initial state: arrow pointing down */

.mobile-item i,
.desktop-item i {
    transition: transform 0.3s ease;
    /* Smooth transition for rotation */
}


/* Rotate the arrow when hovering over the label or link */

.mobile-item:hover i,
.desktop-item:hover i {
    transform: rotate(180deg);
    /* Rotate the arrow to point upwards */
}


/* When the dropdown is open (checkbox is checked), rotate the arrow up */

#showDrop:checked+label i,
#showDrops:checked+label i {
    transform: rotate(180deg);
    /* Arrow remains rotated when open */
}


/* When the checkbox is unchecked, the arrow goes back to normal */

#showDrop:not(:checked)+label i,
#showDrops:not(:checked)+label i {
    transform: rotate(0deg);
    /* Reset the arrow to point downwards */
}

@media (min-width:1401px) and (max-width:1446px) {
    .nav-links li a {
        font-size: 13px;
    }
    .refferel-btn {
        font-size: 13px;
    }
    .call-num {
        font-size: 13px;
    }
}

@media (min-width:1019px) and (max-width:1446px) {
    .nav-links li a {
        font-size: 13px;
    }
    .refferel-btn {
        font-size: 13px;
    }
    .call-num {
        font-size: 13px;
    }
}

@media (min-width:1172px) and (max-width:1174px) {
    .nav-links li a {
        padding: 9px 14px;
    }
}

@media (min-width:971px) and (max-width:1066px) {

    .nav-links li a {
        padding: 9px 8px;
    }
}


/******************************************** carousel-slider ******************************************************/

.carousel-item {
    transition: transform 1.5s ease-in-out !important;
}

.carousel-indicators li {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #fff;
}

.carousel-indicators {
    list-style-type: none;
    padding-left: 0;
}

.carousel-indicators li::marker {
    display: none;
}

.carousel-indicators .active {
    width: 14px !important;
    height: 14px !important;
    background-color: #fff;
}

@media (max-width:575px) {
    .carousel-indicators li {
        width: 10px !important;
        height: 10px !important;
    }
    .carousel-indicators .active {
        width: 11px !important;
        height: 11px !important;
    }
}

.carousel-indicators {
    display: flex;
    justify-content: start !important;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 80px !important;
    margin-left: 100px !important;
}

.custom-caption {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    right: unset !important;
    z-index: 2;
    color: #fff;
    text-align: left;
}

.carousel-caption {
    position: absolute;
    bottom: -3rem !important;
    left: 100px !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}

.custom-caption h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 79%) 0%, rgb(0 0 0 / 0%) 48%);
    z-index: 1;
}

@media (max-width:850px) {
    .carousel-item::before {
        background: linear-gradient(to right, rgb(0 0 0 / 79%) 0%, rgb(0 0 0 / 0%) 80%);
        z-index: 1;
    }
}

.banner-head {
    font-size: 52px;
    font-family: Poppins;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    position: relative;
    display: flex;
}

.banner-head-big {
    font-size: 150px;
    line-height: 150px;
    font-family: Poppins;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    letter-spacing: -5px;
    position: relative;
    display: flex;
}

.banner-parag {
    padding-top: 20px;
    font-size: 18px;
    font-family: Poppins;
    font-weight: 300;
    color: #ffffff;
    text-align: left;
    width: 60%;
    position: relative;
    display: flex;
}

.banner-link {
    width: fit-content;
    padding-top: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 500;
    text-align: left !important;
    position: relative;
    display: flex;
    padding-left: 20px;
    transition: all ease .5s;
}

.banner-link:hover {
    color: #A3C73F;
}

.banner-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 84%;
    width: 10px;
    height: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all ease-in-out .5s;
}

.banner-link:hover::after {
    background-color: #A3C73F;
}

@media (max-width:650px) {
    .banner-link {
        padding-top: 20px;
        font-size: 12px;
    }
    .banner-link::after {
        top: 73%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        filter: blur(5px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

.anim {
    animation: fadeIn 3s ease-in-out;
    animation-fill-mode: both;
}

@media (max-width:1700px) {
    .banner-head-big {
        font-size: 120px;
        line-height: 120px;
    }
    .banner-head {
        font-size: 35px;
    }
    .banner-parag {
        font-size: 14px;
    }
}

@media (max-width:1400px) {
    .carousel-caption {
        left: 60px !important;
    }
    .carousel-indicators {
        margin-bottom: 40px !important;
        margin-left: 60px !important;
    }
}

@media (max-width:1300px) {
    .banner-head-big {
        font-size: 90px;
        line-height: 90px;
    }
    .banner-head {
        font-size: 28px;
    }
}

@media (max-width:1200px) {
    .carousel-indicators {
        margin-bottom: 15px !important;
        margin-left: 60px !important;
    }
}

@media (max-width:1024px) {
    .banner-head-big {
        font-size: 65px;
        line-height: 65px;
    }
    .banner-head {
        font-size: 20px;
    }
}

@media (max-width:991px) {
    .carousel-indicators {
        margin-left: 50px !important;
    }
    .carousel-caption {
        left: 50px !important;
    }
}

@media (max-width:850px) {
    .normal-banner {
        display: none !important;
    }
    .res-banner {
        display: flex;
        width: 100%;
    }
}

@media (min-width:850px) {
    .normal-banner {
        display: flex;
        width: 100%;
    }
    .res-banner {
        display: none;
    }
}

@media (max-width:575px) {
    .carousel-caption {
        left: 20px !important;
    }
    .carousel-indicators {
        margin-left: 20px !important;
    }
    .carousel-caption {
        padding-top: 0px !important;
    }
    .banner-head-big {
        font-size: 35px;
        line-height: 35px;
        letter-spacing: -1px;
    }
    .banner-head {
        font-size: 14px;
    }
    .banner-parag {
        width: 90%;
    }
    .carousel-item::before {
        background: linear-gradient(to right, rgb(0 0 0 / 79%) 0%, rgb(0 0 0 / 0%) 100%);
        z-index: 1;
    }
}

@media (max-width:450px) {
    .carousel-indicators {
        margin-bottom: 5px !important;
    }
}

/**********carousel end************/


/***Scrollbar***/
::-webkit-scrollbar { -webkit-appearance: none; }
::-webkit-scrollbar:vertical { width: 5px; }
::-webkit-scrollbar:horizontal { height: 5px; }
::-webkit-scrollbar-thumb { background-color: var(--mainblue); border-radius: 5px; }
::-webkit-scrollbar-track { background-color: transparent; }

.common-container{padding-right: 30px; padding-left: 30px;}
.common-pad {padding:60px 0;}
.zoom {transition:transform .5s; -webkit-transition:transform .5s; -moz-transition:transform .5s; transform:scale(1); overflow:hidden;}
.zoom:hover {transform:scale(1.01);}

/*captcha*/
label.error {font-size:12px; top:-4px; color:red; margin-bottom:25px;}
#quick_enquiry_form label.error {font-size:12px; top:-4px; color:red; margin-bottom:5px !important;}
.err-cpt {display:flex; flex-direction:column; margin:0px 15px 0px 0px; width:120px; color:#ffffff !important;}
#quick_enquiry_form .err-cpt {display:flex; flex-direction:column; margin:0px 15px 0px 0px; width:170px; color:#ffffff !important;}
.flash_message {float:left; font-size:16px; font-weight:300; margin-bottom:15px; position:fixed; top:50%; left:50%; padding:12px 30px; color:#000000; background-color:#fde386; border-radius:2px; box-shadow:0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 5px 0 rgba(0, 0, 0, .23); z-index:9999; transform:translate(-50%, -50%);}
.gl_cod_order_captcha {border:1px solid #000;}
.captcha-spcl {display:flex; align-items:center; width:100%;}
.gl_cod_order_captcha {font-size:18px; text-align:center; color:#555; border:1px dashed #888; background:#F0F1F2; padding:7px 25px; margin:0 15px 0 0;}
.CaptchaEqual {font-size:20px; color:#ffffff; text-align:center; margin:0 15px 0 0;}
.gl_order_captcha {padding:0 0 5px 0; font-size:15px;color: #000;  background:none; border:0px; border-bottom:1px solid #d0d0d0; border-radius:0; box-shadow:none; height:auto;}
.gl_order_error-center {text-align:center;}
.gl_order_captcha:focus-visible {outline:none !important;}
.gl_order_captcha_two:focus-visible {outline:none !important;}

@media (max-width:1100px) {
.err-cpt {width:110px; color:#ffffff !important;}
}

@media (max-width:575px) {
.gl_cod_order_captcha {padding:7px 16px; font-size:14px;}
.gl_order_captcha {font-size:14px; width:120px;}
.CaptchaEqual {margin:0 10px 0 0;}
.gl_cod_order_refresh {margin-left:15px;}
.gl_order_error {font-size:12px;}
#quick_enquiry_form .err-cpt {display:flex; flex-direction:column; margin:0px 15px 0px 0px; width:200px; color:#ffffff !important;}
}

.loading-spinner {border:3px solid #f3f3f3; border-top:3px solid #3498db; border-radius:50%; width:13px; height:13px; animation:spin 2s linear infinite; display:inline-block;}

@keyframes spin {
0% {transform:rotate(0deg);}
100% {transform:rotate(360deg);}
}
/*captcha*/

.scrollup { position: fixed; right: 20px; bottom: 30px; background-color: rgb(255 255 255 / 10%); opacity: 0.7; width: 40px; height: 40px; border-radius: 50%; z-index: 9990; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); text-align: center; line-height: 38px !important; color: #999; cursor: pointer; font-size: 22px !important; transition: all 0.3s ease;}
.scrollup:hover {  opacity: 1; color: #000;background-color: #fff; }
section{overflow-x: hidden;}

/*header*/
.sm-vw-sec{display: none;}
.side-nav-logo{display: none;}

/*banner*/
.nav-wrap-hght{padding-top: 80px;}
.header-wrap{height: 80px;display: flex;align-items: center;}

/*******About us********/
.about-us-sec {background:url(../images/abt-bg.webp) no-repeat center; background-size:cover; color:#fff;}
.abtwrap {display:flex; gap:20px;}
.abtcont {position:relative; padding: 0 20px 0 0; align-content:center; flex:1;}
.abtcont::before {content:""; position:absolute; width:1px; height:100px; background:rgb(255 255 255 / 50%); top:50%; right:0; transform:translateY(-50%);}
.sec-head {font-weight:var(--regular); font-size:20px; line-height:1.5em;text-transform: uppercase;}
.sec--sub-head {display:block; font-weight:var(--medium); font-size:25px; line-height:1.5em; margin-bottom:20px;}
.abtcont > p {display:block; margin:0; padding:0; font-weight:var(--regular); font-size:15px; line-height:1.7em;}

.abt-img-sec {flex:1; padding:0 50px 50px 20px; position:relative;}
.abt-img-wrap {position:relative; padding-right:20px;}
.abt-img-wrap::before {content:""; position:absolute; background:rgba(255, 255, 255, 0.3); top:0; left:0; bottom:0; right:0; border-radius:30px; z-index:0;}
.abt-img-wrap > img {border-radius:30px; position:relative; z-index:1;}

.quote-box {max-width:285px; padding:40px 30px; border-radius:30px; display:flex; align-items:center; background:#00537E; background:linear-gradient(90deg, rgba(0, 83, 126, 1) 0%, rgba(0, 112, 170, 1) 45%, rgba(0, 93, 141, 1) 100%); border:1px solid rgb(255 255 255 / 20%); position:absolute; right:-45px; bottom:-45px; z-index:2;}
.quote-text {display:block; margin:0; padding:0; font-weight:var(--regular); font-size:14px; position:relative;}
.quote-text::before , .quote-text::after {content:""; position:absolute; width:17px; height:16px; background:url(../images/quot-icon.png) no-repeat center; background-size:contain;}
.quote-text::before {top:-20px; left:0;}
.quote-text::after {bottom:4px; margin-left:10px; transform: rotate(180deg);}

/*******Services********/
.service-sec {background:#fff;}
.service-sec .sec-head {margin-bottom:20px;}
.serv--sub-head {display:block; margin:0 0 8px; padding:0; font-weight:var(--semibold); font-size:32px; line-height: 1.5em;}
.serv-head-tag {display:block; margin:0 0 36px; padding:0; font-weight:var(--regular); font-size:16px; line-height:1.5em; color:#545454;}
.box-wrap {display:flex;flex-wrap: wrap;justify-content: space-between;gap: 20px;}
.box-container {background: #fff;box-shadow:0 4px 10px rgba(0, 0, 0, 0.08);border-radius:20px;display:flex;flex-direction:column;overflow:hidden;flex-grow: 0;flex-shrink: 0;flex-basis: calc(25% - 20px);}
.box-container > img {border-top-left-radius:20px; border-top-right-radius:20px;}
.box-content {padding:24px; display:flex; flex-direction:column;flex-grow: 1;}
.box-head {font-weight:var(--medium); font-size:18px; display:block; margin:0 0 8px; padding:0;}
.box-content > p {display:block; margin:0 0 25px; padding:0; color:#545454; font-weight:var(--regular); font-size:15px; line-height:1.7em;}
.box-content > a{margin-top: auto;}
.view-btn {position:relative; display:block; margin: 0; padding:10px 0 0; color:#00537F; font-weight:var(--medium); font-size:15px; border-top:1px solid #EDEDED; transition:all 0.4s ease;}
.view-btn > i {position:absolute; right:3px; top:14px; font-size:16px; transition:all 0.3s ease;}
.view-btn:hover > i {right:0;}

/********Slider testimonial*********/
.testimonial-sec{background: var(--mainblue);position: relative;color: #fff;position: relative;overflow: hidden;}
.testimonial-sec.common-pad{padding-bottom: 30px;}
.testimonial-sec::before{content: "";position: absolute;background: url(../images/logo-shadow.svg)no-repeat center;background-size: contain;top: 40px;left: 10px;width: 350px;height: 250px;z-index: 0;}
.testim-hed-cont{text-align: center;margin-bottom: 50px;}
.testim-hed-cont p{font-weight: var(--mainblue);font-size: 16px;line-height: 1.5em;display: block;}
.testim-hed-cont .sec--sub-head{margin-bottom: 10px;}
.textm-box{background: #fff;color: #000;display: flex;flex-direction: column;padding: 60px 20px 20px;border-radius: 12px; height: auto;}
.textm-box > p{position: relative;display: block;margin: 0 0 25px;padding-top: 20px;font-weight: var(--regular);font-size: 16px;line-height: 1.5em;}
.textm-box > p::before{content:"";position:absolute;width:28px;height:22px;background:url(../images/testm-quot-icon.png) no-repeat center;background-size:contain;top: -25px;}
.textm-box > b{display: block;font-weight: var(--medium);font-size: 18px;margin-top: auto;border-top: 1px solid #EDEDED;padding: 10px 0 0;}

.testmonial-slider{position: relative;overflow: hidden;padding-bottom: 50px;}
.testmonial-slider .swiper-pagination-bullets {bottom: 0;width: fit-content;left: 50%;transform: translateX(-50%);}
.testmonial-slider .swiper-pagination-bullet {width: 8px;height: 8px;background: rgb(255 255 255 / 40%);opacity: 1;}
.testmonial-slider .swiper-pagination-bullet-active {width: 21px;transition: width .5s;border-radius: 10px;background: #fff;}
.testmonial-slider .swiper-button-next, .testmonial-slider .swiper-button-prev{display: none;}

.testmonial-slider .swiper-button-next:after, .testmonial-slider .swiper-button-prev:after{font-size: 20px;color: #fff;font-weight: 500;}
.testmonial-slider .swiper-button-next, .testmonial-slider .swiper-button-prev{bottom: -20px;top: auto;left: 50%;transform: translateX(-50%);right: auto;}
.testmonial-slider .swiper-button-next{margin-left: 25px;}
.testmonial-slider .swiper-button-prev{margin-left: -25px;}

/********Contact us**********/
.cont-sec {background-color:#fff;}
.cont-wrap {display:flex; gap:50px;}
.cont-form-sec {flex:1;}
.cont-head {display:block; margin:0 0 16px; padding:0; font-weight:var(--medium); font-size:38px; line-height:1.5em; text-transform:capitalize;}
.cont-form-sec > p {display:block; margin:0; padding:0; font-weight:var(--regular); font-size:16px; line-height:1.5em; color:#545454;}
.cont-form {display:flex; flex-direction:column; gap:20px; padding:0; margin-top:25px;}
.form-input-group {position:relative; border:1px solid #ccc; border-radius:12px;}
.form-input-group input, .form-input-group textarea {width:100%; padding:15px; border:none; outline:none; font-size:15px; background:transparent; margin:0;}
.form-input-group textarea {resize:none;}
.form-sub-btn {color:#fff; border:none; font-size:18px; font-weight:var(--medium); border-radius:12px; padding:12px 35px; transition:all 0.3s ease; background:var(--mainblue);}
.form-sub-btn:hover {background-color:#043a57;}
.cont-map-sec {flex:1;}
.gmap-wrap {width:100%; height:100%;}
.gmap-wrap > iframe {width:100%; height:100%; border-radius:10px;}

/*Footer*/
.foot_copyright {display:block; margin:0; padding:15px 0; text-align:center; border-top:1px solid rgb(255 255 255 / 10%);font-weight: var(--regular); font-size: 14px;}
footer {background-color: var(--mainblue); color: #fff;font-weight: var(--regular);font-size: 16px;}
.foot_secs {display:grid; grid-template-columns:repeat(4, 1fr); padding:60px 0 20px;}
.foot_secs > div:nth-child(2){display: none;}
.foot_logosec {align-self:flex-start;}
.footlogo {display:inline-block; margin:0 0 30px; padding:0; width: 220px;}
footer h6{font-weight: var(--semibold);}
.foot_secs p {display:block; margin:0 0 20px; padding:0; font-size:14px; line-height:24px;}
.foot_logosec > a {margin:10px 0 0; padding:0 20px 0 0; text-transform:capitalize; position:relative;}
footer ul{margin: 0;padding: 0;}
footer a {color:#ddd; transition:all 0.4s ease; display:inline-block; margin:0; padding:0;}
footer a:hover {color:#fff;}
.foot_linksec{justify-self: center;}
.foot_linksec ul > li {padding:0 0 20px;}
.foot_linksec ul > li:last-child {padding:0;}
h6.foot_mailhead, h6.foot_mobhead {margin:0 0 5px}
.foot_address a {margin:0 0 20px;}
.foot_sociallinks {justify-self:end;}
.foot_sociallinks a {padding-right:5px;}
.foot_sociallinks a:hover {transform:rotate(360deg);}



/*about us*/
.normal-banner-other {width:100%; position:relative; display:flex;}
.normal-banner-other::before {content:""; position:absolute; top:0; left:0; width:100%; height:100%; background:linear-gradient(to right, rgb(0 0 0 / 79%) 0%, rgb(0 0 0 / 0%) 48%); z-index:1;}

@media screen and (max-width:850px) {
.common-normal {display:none;}
.common-res {display:flex;}
}

@media screen and (min-width:850px) {
.common-normal {display:flex;}
.common-res {display:none;}
}

.normal-banner-other {position:relative; text-align:center;}
.banner-text {position:absolute; top:60%; left:50%; transform:translate(-50%, -50%); width:100%; display:flex; justify-content:start; align-items:start; color:white; font-size:52px; font-weight:var(--regular); z-index:10; padding-left:100px;}

/**/
.img-bord {border-radius:8px;}
.section-info-block {}
.section-title {display:block; margin:0 0 20px; padding:0; color:#000; font-weight:var(--medium); font-size:35px; line-height:1.5em;}
.section-description {display:block; margin:0 0 20px; padding:0; font-weight:var(--regular); font-size:16px; line-height:1.7em;}
.abt-innr-cont {}
.abt-txt-sec {padding-top:30px;}
.blu-theme {background:rgb(0 83 127 / 10%);}
.section-sub-title {display:block; margin:0 0 20px; padding:0; color:#000; font-weight:var(--medium); font-size:30px; line-height:1.5em;}
.abt-img{max-width: 600px;}
.abt-img > img {}
.bg-strip {background-image:url(../images/aboutus.webp); background-repeat:no-repeat; background-position:center; background-size:cover; position:relative; background-attachment: fixed;}
.bg-strip::before {content:""; position:absolute; left:0; right:0; top:0; bottom:0; background-color:rgb(0 83 127 / 80%);}
.strip-cont {text-align:center; color:#fff; position:relative; z-index:1;}
.strip-cont .section-sub-title {color:#fff;}
.strip-cont .section-description {margin:0;}
.vision-wrap {background:#E6EEF3;}
.icon-box {position:relative; padding-top:50px;}
.icon-box::before {content:""; position:absolute; background-repeat:no-repeat; background-position:center; top:0; left:0;}
.icon-box.vision-icon::before {background-image:url(../images/about-us/vision.png); width:38px; height:30px;}
.icon-box.mission-icon::before {background-image:url(../images/about-us/mission.png); width:40px; height:40px;}
.icon-box.values-icon::before {background-image:url(../images/about-us/value.png); width:46px; height:46px;}
.vision-head {display:block; margin:0 0 15px; padding:0; font-weight:var(--medium); font-size:35px; line-height:1.5em;}
.icon-box > p {display:block; margin:0 0 30px; padding:0; font-weight:var(--regular); font-size:16px; line-height:1.7em;}
.icon-box > span {display:block; margin:0 0 30px; padding:0; font-weight:var(--semibold); font-size:16px; line-height:1.7em;}
.vis-points {display:flex; margin:0; padding:0; flex-direction:column; gap:25px;}
.vis-points > li {font-weight:var(--regular); font-size:16px; line-height:1.7em;}
.vis-points > li > b {display:inline-block; font-weight:var(--semibold); padding-right:5px;}
.vis-img-sec {max-width: 600px;}

/*contact-inner*/
.address-links {display:flex; gap:30px; justify-content:space-evenly;}
.adress-box {position:relative; padding-left:50px;}
.adress-box::before {position:absolute; content:""; width:30px; height:30px; background-repeat:no-repeat; background-position:center; top:0; left:0;}
.adress-box.add-loc::before {background-image:url(../images/address-icon.png);}
.adress-box.add-mail::before {background-image:url(../images/add-mail-icon.png);}
.adress-box.add-ph::before {background-image:url(../images/add-ph-icon.png);}
.adress-head {display:block; margin:0 0 5px; padding:0; font-weight:var(--medium); font-size:22px; line-height:1.5em;}
.adress-box >p {display:block; margin:0; padding:0; font-weight:var(--regular); font-size:14px; color:#000;}
.adress-box >a {display:inline-block; margin:0; padding:0; font-weight:var(--regular); font-size:14px; color:#000; transition:all 0.3s ease;}

/*service-inner*/
.serv-innr-cont{text-align: center;}

/* Map Radio Group */
.map-radio-group {display:flex; gap:20px; margin-bottom:20px; justify-content:flex-start;}
.map-radio-label {display:flex; align-items:center; cursor:pointer; font-size:16px; font-weight:500; color:#00537F; position:relative; user-select:none;}
.map-radio-label input {display:none;}
.map-radio-label .custom-radio {width:20px; height:20px; border:2px solid #00537F; border-radius:50%; margin-right:10px; position:relative; transition:all 0.3s ease;}
.map-radio-label input:checked + .custom-radio {background-color:#00537F; border-color:#00537F;}
.map-radio-label input:checked + .custom-radio::after {content:''; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); width:8px; height:8px; border-radius:50%; background:#fff;}

/* Kent Details Card */
.kent-details-grid {margin-top: 30px;}
.k-detail-card {background: #ffffff; padding: 25px 20px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); height: 100%; transition: all 0.3s ease; border: 1px solid #efefef; border-top: 4px solid var(--mainblue);}
.k-detail-card:hover {box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); transform: translateY(-5px);}
.k-detail-card .k-icon {display: inline-block; width: 45px; height: 45px; background: rgb(0 83 127 / 10%); color: var(--mainblue); text-align: center; line-height: 45px; border-radius: 8px; font-size: 20px; margin-bottom: 15px;}
.k-detail-card h4 {font-size: 18px; font-weight: var(--semibold); color: var(--mainblue); margin-bottom: 15px;}
.k-detail-card ul {list-style: none; padding: 0; margin: 0;}
.k-detail-card ul li {font-size: 14px; color: #444; margin-bottom: 12px; display: flex; align-items: flex-start; line-height: 1.5;}
.k-detail-card ul li:last-child {margin-bottom: 0;}
.k-detail-card ul li i {color: var(--mainblue); font-size: 12px; margin-top: 4px; margin-right: 10px;}
