:root {
    --primarycolor: #113781;
    --secondarycolor: #92D5FF;
    --accentcolor: #1B69A7;
    --othercolor: #FFB425;
    --headingclr: #113781;
    --textclr: #000000;
    --white: #ffffff;
    --black: #000000;
    --bgwhtxtclr: #ffffff;
    --bgdktxtclr: #000000;
    --bgdkclr: #113781;
    --bgwhclr: #E9F7FF;
    --headfont: "Montserrat", sans-serif;
    --parafont: "Montserrat", sans-serif;
}

body {
    color: var(--textclr);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    font-family: var(--parafont);
    overflow-x: hidden;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: var(--blue);
}

a:focus, input:focus, textarea:focus, button:focus {
    outline: 0;
    box-shadow: 0;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 12px;
}
p {
    color: var(--headclr);
    font-family: var(--headfont);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--headclr);
    font-family: var(--headfont);
}

.container {
    max-width: 1420px;
    width: 100%;
}

section {
    position: relative;
}

ul.lists {
    margin-bottom: 20px;
}

ul.lists li {
    margin: 5px 0;
}

/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primarycolor);
}

::-webkit-scrollbar-thumb {
    background: var(--othercolor);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primarycolor);
}

/* --- Button Code --- */
.custom-btn {
    display: inline-block;
    font-family: var(--parafont);
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 0px;
    text-transform: capitalize;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.custom-btn:before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.custom-btn:after {
    right: -20px;
    transform: translate(50%, -50%);
}

.custom-btn:before, .custom-btn:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--black);
    border-radius: 50%;
    z-index: -1;
}

.custom-btn:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.custom-btn:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.custom-btn span:after {
    content: '\2192';
    font-size: 32px;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 1.3;
    transition: all 0.3s ease-in-out;
}

.custom-btn:hover span:after {
    transform: translateX(10px);
}

.dark-btn {
    color: var(--white);
    background-color: var(--primarycolor);
    border: 1px solid var(--primarycolor);
}

.dark-btn:hover {
    color: var(--white);
}

.light-btn {
    color: var(--black);
    border: 1px solid var(--secondarycolor);
    background-color: var(--secondarycolor);
}

.light-btn:hover {
    color: var(--white);
}

.border-btn {
    color: var(--secondarycolor);
    border: 1px solid var(--secondarycolor);
}

.border-btn:hover {
    color: var(--white);
    border: 1px solid var(--secondarycolor);
}

.subtitle {
    color: var(--primarycolor);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* --- Header Code --- */
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
}

.top-header {
    padding: 15px 0;
    background: var(--primarycolor);
    position: relative;
    z-index: 1;
}

.top-header .info-row {
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    gap: 20px;
}

header .nav-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 25px 0;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

header.fixed-header .header-btn {
    background-color: var(--secondarycolor);
    color: var(--bgdktxtclr);
}

header.fixed-header header .nav-header {
    padding: 20px 0;
}

header.fixed-header .top-header {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
}

header.fixed-header {
    background-color: var(--primarycolor);
    position: fixed !important;
    animation: smoothScroll 1s forwards;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

header .logo-col img {
    transition: all 0.3s ease-in-out;
}

header.fixed-header .logo-col img {
    max-width: 80%;
}

nav button.navbar-toggler {
    background-color: var(--primarycolor);
}

.nav-header .row {
    align-items: center;
}

.nav-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

nav.navbar {
    width: fit-content;
}

ul.navbar-nav li {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

ul.navbar-nav>li {
    padding-right: 25px;
    margin-right: 25px;
}

ul.navbar-nav li a {
    position: relative;
    color: var(--bgwhtxtclr);
}

ul.navbar-nav li:hover a, ul.navbar-nav li.current-menu-item a {
    color: #92d5ff;
}

ul.navbar-nav li.menu-item-has-children {
    position: relative;
}

ul.navbar-nav li.menu-item-has-children>span {
    position: absolute;
    top: 0;
    right: 0;
}

ul.navbar-nav li.menu-item-has-children>span:after {
    content: '\276E';
    transform: rotate(-90deg);
    position: absolute;
    right: 0px;
    color: var(--bgwhclr);
    transition: all 0.3s ease-in-out;
}

ul.navbar-nav li.menu-item-has-children>span.active:after {
    transform: rotate(90deg);
}

ul.navbar-nav ul.sub-menu {
    position: absolute;
    left: 0;
    padding: 0;
    width: 180px;
    list-style: none;
    background-color: var(--bgwhclr);
    opacity: 0;
    visibility: hidden;
    transform: translate(0%, 50%);
    transition: all 0.3s ease-in-out;
}

ul.navbar-nav li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0%, 0%);
}

ul.navbar-nav li ul.sub-menu a {
    color: var(--bgdktxtclr);
}

ul.navbar-nav ul.sub-menu>li {
    padding: 7px 15px;
    border-bottom: 1px solid #dcdcdc;
    font-size: 14px;
}

.header-btn {
    padding: 12px 25px;
}

ul.header-info {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: fit-content;
    padding: 5px 0;
    margin: 0;
}

ul.header-info li {
    color: var(--bgwhtxtclr);
    font-size: 14px;
    font-weight: 500;
    padding: 0 15px;
    line-height: 1;
}

ul.header-info li a {
    color: var(--bgwhtxtclr);
}

ul.header-info li a:hover {
    color: var(--accentcolor);
}

ul.header-info li:first-child {
    padding-left: 0;
}

ul.header-info li:last-child {
    padding-right: 0;
}

ul.header-info li img {
    width: 20px;
    margin-right: 5px;
}

ul.social-links {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    width: fit-content;
}

ul.social-links>li {
    color: var(--bgwhtxtclr);
    font-size: 16px;
    font-weight: 500;
    padding: 0 15px;
    line-height: 1;
    border-right: 1px solid var(--bgwhclr);
}

ul.social-links>li:first-child {
    padding-left: 0;
}

ul.social-links>li:last-child {
    padding-right: 0;
    border-right: 0;
}

ul.social-links>li a {
    color: var(--bgwhclr);
    font-size: 16px;
}

ul.social-links>li:hover a {
    color: var(--accentcolor);
}

/* CTA Section */
.cta-section {
    background: url('../img/cta.png') no-repeat center center/cover;
    background-color: rgba(0, 38, 99, 0.9);
    color: #fff;
    padding: 80px 0 110px;
    position: relative;
    margin-bottom: -76px;
}

.cta-section h2 {
    font-weight: 400;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cta-section h2 span {
    font-weight: 700;
}

.cta-section h6 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px
}

.cta_btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cta-section .btn {
    display: flex;
    padding: 16px 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    align-self: stretch;
    max-width: 290px;
    width: 100%;
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

a.btn.btn-primary {
    background: #113781;
    border: 1px solid #113781;
}

.cta-section .btn:hover {
    background: #FFB425;
    border: 1px solid #FFB425;
    color: #113781;
}

/* --- Footer Code --- */
footer {
    background-color: var(--headclr);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    color: var(--bgdktxtclr);
    font-family: var(--mulishfont);
    font-size: 14px;
    border-radius: 15px 15px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bottom-footer {
    background-color: var(--bgdkclr);
    width: 100%;
}

.bottom-footer .copyright-row {
    justify-content: center;
    align-items: center;
    padding: 25px 15px;
}

.bottom-footer .copyright-row>* {
    width: fit-content;
    padding: 0;
    margin: 0;
    color: var(--white);
}

/* Custom Styles */
.footer_wrapper {
    border-top: 16px solid #D9EEFB;
    background: linear-gradient(0deg, rgba(34, 34, 34, 0.80) 0%, rgba(34, 34, 34, 0.80) 100%), url('../img/f_bg.png') lightgray 50% / cover no-repeat;
    background-blend-mode: multiply, normal;
    width: 100%;
    padding: 160px 0px 100px;
    border-bottom: 3px solid #fff;
}

.footer_wrapper .col-md-4 {
    width: 32%;
}

.footer_wrapper .col-md-2 {
    width: 18%;
}

.footer_wrapper p {
    color: #FFF;
    font-weight: 400;
    margin: 0;
}

.footer_wrapper p svg {
    position: absolute;
    left: 0;
}

.footer_wrapper h5 {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer_wrapper li {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 0px;
}

.footer_wrapper li:last-child {
    padding-bottom: 0px;
}

a.f_logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer_wrapper a {
    color: #fff;
}

.footer_wrapper a:hover {
    color: #FFB425;
}

.f4 p {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 0px;
    padding-left: 44px;
}

.f4 ul.social-links {
    padding-left: 10px;
    margin-top: 3rem;
}

.subscribe-box {
    margin-bottom: -85px;
    z-index: 10;
    position: relative;
    background: #FFB425;
    max-width: 1570px;
    padding: 33px 75px;
}

.subscribe-box .row {
    align-items: center;
}

.subscribe-content h5 {
    font-size: 24px;
    color: #000;
    font-weight: 600;
}

.subscribe-content p {
    font-weight: 400;
    margin: 0;
}

form[data-form-id="1"] .es-form-field-container .gjs-row {
    margin-bottom: 0 !important;
}

.newsletter_box input.es-email {
    padding: 10px 20px;
    width: 100%;
    background: #FFF;
    border: 1px solid #FFF;
    color: #8E8E8E;
    font-size: 18px;
    font-weight: 400;
}

.newsletter_box input[type="submit"] {
    display: flex;
    padding: 0px 42px;
    height: 66px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #113781;
    border: 1px solid #113781;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
}

.newsletter_box .gjs-cell {
    display: flex;
}

.footer {
    background: #111827;
    color: #fff;
    padding: 50px 0;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

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

.footer-bottom {
    background: #0d47a1;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

/* --- Back To Top Code --- */
.back-to-top {
    position: fixed;
    z-index: 9;
    bottom: 150px;
    right: -2px;
    background-color: var(--primarycolor);
    padding: 10px 12px 5px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #979797;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: all 0.3s ease-in-out;
    color: var(--white);
}

.back-to-top:hover {
    background-color: var(--darkclr);
}

.back-to-top:hover i {
    color: var(--white);
}

/* ----- Faqs --------*/
.faq-section {
    padding: 60px 0px;
}

.faqs_top_content {
    margin-bottom: -105px;
    position: relative;
}

.faqs_content_wrp {
    padding-top: 125px;
}

.faq_img {
    text-align: right;
}

.faqs_top_content h2.maintitle span {
    display: inline-block;
    font-weight: 400;
}

.faqs_content_wrp .accordion {
    --bs-accordion-border-color: #E9F7FF;
    --bs-accordion-border-radius: 0px !important;
    box-shadow: none !important;
}

.accordion-body {
    background: #E9F7FF;
    color: #000;
    font-size: 18px;
}

.accordion-body p {
    color: #000;
    font-size: 18px;
}

.accordion-button::after {
    display: none;
}

.faqs_content_wrp button.accordion-button.collapsed {
    display: flex;
    height: 68.493px;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    color: #000 !important;
    font-size: 18px;
    font-weight: 500;
    background-color: #fff !important;
    background-image: url('../img/f-bottom-arrow.png');
    background-repeat: no-repeat;
    background-position: 97% center;
    box-shadow: none;
    outline: none !important;
    border-radius: 0px !important;
}

.faqs_content_wrp button.accordion-button {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    border-radius: 0px !important;
    background-color: #113781 !important;
    background-image: url('../img/f-arrow.png');
    background-repeat: no-repeat;
    background-position: 97% center;
}

.faqs_content_wrp .accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
}

/* --- Contact Form 7 --- */
.wpcf7 form span.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7 form input.wpcf7-not-valid, .wpcf7 form select.wpcf7-not-valid {
    border: 1px solid #ff0000;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    text-align: center;
}

/* --- Home Page Code --- */
.banner-section {
    padding: 180px 0px 100px;
    height: 100vh;
    background-color: var(--primarycolor);
}

.banner-section .container {
    position: relative;
    z-index: 9;
}

.banner-section {
    display: flex;
    align-items: center;
}

.banner-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.65;
    z-index: 1;
}

.banner-section .sub-title {
    color: var(--bgwhtxtclr);
    font-size: 16px;
    font-weight: 500;
}

.banner-section h1 {
    font-size: 70px;
    color: var(--bgwhtxtclr);
    ; font-weight: 500;
    margin: 10px 0 20px 0;
}

.banner-section h1 span {
    font-size: 48px;
    font-weight: 300;
}

.banner-section h3 {
    font-family: var(--subheadfont);
    font-size: 30px;
}

.banner-section h1 span {
    color: var(--blue);
    display: block;
}

.banner-section h4 {
    color: var(--bgwhtxtclr);
    font-weight: 500;
    font-size: 30px;
}

.banner-section ul {
    padding: 0;
    list-style: none;
    margin: 30px 0 50px 0;
}

.banner-section ul li {
    color: var(--bgwhtxtclr);
    background: url(/wp-content/uploads/2025/09/o-ar1.webp) no-repeat left 4px;
    padding-left: 30px;
    background-size: 17px;
    margin: 10px 0;
}

.banner-section .btn-col {
    gap: 20px;
    display: flex;
}

.about-section {
    padding: 70px 0;
}

h2.maintitle, h2 {
    font-size: 48px;
    text-transform: uppercase;
}

h2.maintitle span {
    display: block;
    font-weight: 500;
}
h2 strong {
    font-weight: 500;
}
.about-section h1.maintitle {
    font-size: 48px;
}
.abt_content h4 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    padding: 4px 0px 14px;
}
.about-section ul {
    padding: 0;
    list-style: none;
}

.about-section ul li {
    padding-left: 28px;
    margin: 20px 0;
    background: url(/wp-content/uploads/2025/09/ntbconstruction-ar1.webp) no-repeat left 5px;
    background-size: 13px;
}

.about-section ul li strong {
    display: block;
}

.about-section .row {
    align-items: center;
}

.about-section .video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    display: block;
}

.about-section .video-box:before, .about-section .video-box:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    background-color: var(--primarycolor);
    transition: all 0.3s ease-in-out;
}

.about-section .video-box:hover:before, .about-section .video-box:hover:after {
    width: 40%;
    height: 40%;
}

.about-section .video-box:before {
    top: 0;
    left: 0;
}

.about-section .video-box:after {
    right: 0;
    bottom: 0;
}

.video-box {
}

.about-section .video-box {
    padding: 20px;
    position: relative;
}

/* --- Inner Page Code --- */
.inner-banner-section {
    padding: 240px 0 100px 0;
    background-color: var(--darkclr);
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

section.abt_page .row:nth-child(2n) {
    flex-direction: row-reverse;
    padding: 80px 0px;
}
.inner_banner_content_wrp h4 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 33px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 10px 0 0;
}
.inner_banner_content_wrp h1 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 5px 0px 0px;
}

.inner_banner_content_wrp h6 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.inner_banner_content_wrp h1 span {
    font-weight: 700;
}



/* --- Animation Code --- */
@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        transform: scale(2.0);
    }

    100% {
        left: 50%;
        transform: scale(15.0);
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        transform: scale(2.0);
    }

    100% {
        right: 50%;
        transform: scale(15.0);
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* -------- testimonials --------------*/
.testimonial_wrapper {
    padding: 20px 0px 40px;
}

.testimonial_top_content h2 span {
    display: inline-block;
}

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

#testimonialCarousel .slick-track {
    padding-bottom: 20px;
}

.testimonial-card {
    background: #fff;
    border-radius: 0px;
    padding: 54px 40px;
    margin: 0px;
    transition: all 0.4s ease;
    opacity: 0.7;
    transform: scale(0.9);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

.testimonial-header img {
    width: 89px;
    height: 89px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-name {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.testimonial-role {
    margin: 0;
    color: #615C5C;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-card h6 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
}

.stars {
    color: #f5a623;
    font-size: 16px;
}

.slick-dots {
    position: relative !important;
    bottom: -20px !important;
    display: flex !important;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    justify-content: center;
}

.slick-dots li {
    position: relative;
    display: flex;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    justify-content: center;
}

.slick-dots li button {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 19px !important;
    height: 19px !important;
    background: #D9D9D9;
    border-radius: 100%;
    padding: 0;
}

.slick-dots li.slick-active button {
    width: 28px!important;
    height: 28px!important;
    background: #1B69A7;
}

.slick-prev:before, .slick-next:before {
    color: #000;
    font-size: 24px;
}

.slick-dots li button:before {
    font-size: 8px;
    color: #fff;
    opacity: 1;
    right: 0;
    bottom: 0;
    left: 0px;
    top: 0px;
    margin: auto;
}

.slick-dots li.slick-active button:before {
    color: #FFB425;
    font-size: 18px;
    opacity: 1;
}

.testimonial-card {
    transition: all 0.4s ease;
    border: 1px solid #1B69A7;
    background: #FFF;
}

.slick-center {
    opacity: 1;
    transform: scale(.96);
    border: 1px solid #1B69A7;
    background: #FFF;
    box-shadow: 8px 8px 16.4px 0 rgba(0, 0, 0, 0.25);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    margin: 0 !important;
    padding-bottom: 30px;
}

.testimonial-card {
    height: 100%;
}

.slick-prev {
    left: -25px;
}

.slick-next, .slick-prev {
    top: auto !important;
    bottom: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 44px;
    height: 45px;
    background-size: cover;
    background-position: center center;
    transition: .4s;
    z-index: 99;
}

.slick-prev {
    left: 20px !important;
    background-image: url('../img/n-prev.png');
}

.slick-next {
    right: 20px !important;
    background-image: url('../img/n-next.png');
}

.slick-prev:hover {
    background-image: url('../img/n-prev-h.png');
}

.slick-next:hover {
    background-image: url('../img/n-next-h.png');
}

.slick-next:before, .slick-prev:before {
    display: none;
}

/* ---------- Before After ------------- */
.before-after-section {
    padding: 60px 0;
    text-align: center;
}

.before-after-section h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.b-a-content h2 span {
    display: inline-block;
}

.before-after-box {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    position: relative;
    justify-content: center;
}

.ba-card {
    position: relative;
    overflow: hidden;
    width: 50%;
}

.ba-card img {
    width: 100%;
    height: 288px;
    object-fit: cover;
    display: block;
}

.ba-label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

.ba-card:nth-child(2) .ba-label {
    left: auto;
    right: 10px;
}

.ba-title {
    background: #fff;
    border-radius: 0px;
    display: flex;
    padding: 8px 26px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    bottom: 30px;
}

h5.subtitle-2 {
    color: #000;
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
}

.b-a-content {
    padding: 0px 12% 40px;
}

/* -------- Project section -------- */
.projects-section {
    padding: 40px 0;
    text-align: center;
    overflow: hidden;
}

.filter-btns {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.project-item img {
    width: 100%;
    height: 255px;
    object-fit: cover;
}

.view-gallery-btn {
    margin-top: 30px;
}

.project-item {
    padding: 10px;
    transition: 0.4s;
    overflow: hidden;
}

.project-item a {
    overflow: hidden;
    display: block;
}

.project-item img {
    transition: 0.4s;
}

.project-item:hover img {
    transform: scale(1.09);
}

.projects-top-content h2 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.projects-top-content h2 span {
    display: inline-block;
}

.projects-top-content {
    padding: 0px 4% 10px;
}

.filter-btns button {
    color: #000;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
}

.filter-btns button:hover {
    color: #fff;
}

.filter-btns .custom-btn:before, .filter-btns .custom-btn:after {
    background-color: #113781;
}

/* ------------- Counter section ----------------- */
.counter-section {
    padding: 115px 0px;
    background-size: cover;
}

.wrap {
    display: flex;
    justify-content: center;
    gap: 93px;
}

.wrap .icon {
    display: flex;
    width: 110px;
    height: 110px;
    padding: 7px;
    align-items: center;
    gap: 10px;
    border-radius: 54.979px;
    border: 1px solid #FFB425;
    margin: 0px auto 8px;
}

.wrap .inn-icon {
    width: 96px;
    height: 96px;
    background: #FFB425;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap .counter {
    color: #FFF;
    text-align: center;
    font-size: 52px;
    font-weight: 600;
}

.wrap .label {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
}

/* ----------  Our Values ------------- */
.values-section {
    padding: 60px 0px;
    text-align: center;
}

.values-section .container {
    max-width: 1200px;
    margin: auto;
}

.values-top-content {
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.value-card {
    transition: all 0.3s ease;
    border: 1px solid #D9EEFB;
    background: #FFF;
    padding: 35px 23px;
    text-align: left;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.value-card h4 {
    color: #113781;
    font-size: 24px;
    font-weight: 600;
    width: 100%;
}

.value-card p {
    color: #000;
    margin: 0;
}

.values-top-content h2 span {
    display: inline-block;
}

.v-icon {
    height: 60px;
    overflow: hidden;
    margin-bottom: 10px;
}
.v-icon img{
    height:100%;
}
/*  --------- Our Process -------------- */
.process-section {
    text-align: center;
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.6);
}

.process-top-content {
    margin-bottom: 60px;
}

.process-top-content h6 {
    color: #92D5FF;
}

.process-top-content h2 {
    color: #fff;
}

.process-top-content p {
    color: #fff;
    padding: 0px 15%
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    max-width: 78%;
    margin: auto;
}

.process-step {
    max-width: 22%;
    text-align: center;
    position: relative;
    padding: 0px 8px;
}

.process-step .icon {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    padding: 5px;
    border: 1px solid #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0px auto 26px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.process-step span.num {
    display: block;
    margin-bottom: 18px;
    color: #FFF;
    font-size: 28px;
}

.process-step p {
    color: #fff;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 60px;
    right: 326px;
    z-index: 0;
    background-image: url('../img/Vector1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 132.5px;
    height: 32.025px;
    flex-shrink: 0;
}

.process-step:first-child::before {
    display: none;
}

.process-step:nth-child(3)::before {
    background-image: url('../img/Vector2.svg');
    top: 100px;
}

.process-step .icon {
    z-index: 1;
}

.pinn-icon {
    width: 130px;
    height: 130px;
    background: #1B69A7;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --------------- Service section --------------- */
.services-section {
    text-align: center;
    padding: 60px 0px;
    background: #E9F7FF;
}

.services-top-content p {
    color: #000;
}

.services-grid {
    gap: 30px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.service-card {
    background: #FFF;
    padding: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 31.333%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 249px;
    object-fit: cover;
    border-radius: 16px;
}

.service-card-content {
    padding: 50px 0px 0px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #000;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
}

.service-card p {
    color: #000;
    margin-bottom: 20px;
}

span.ser_icon {
    width: 80px;
    height: 80px;
    display: flex;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0px;
    margin: auto;
    background: #113781;
    align-items: center;
    justify-content: center;
}

.service_img {
    position: relative;
}

.service-card span.ser_icon img {
    width: auto;
    height: auto;
}
.services-top-content {
    margin-bottom: 40px;
}
.counter-box {
    width: 19%;
}
.about-section .abt_third_row li{
	background-image: none;
	position: relative;
	padding-left: 85px;
	margin: 25px 0px;
}
.about-section .abt_third_row li img {
    position: absolute;
    left: 0px;
}

.about-section .abt_third_row li:last-child {
    margin-bottom: 0px;
}
.abt_page h2.maintitle span {
    display: inline-block;
}
.about-section .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    display: block;
}

.about-section .image-box:before, .about-section .image-box:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    background-color: var(--primarycolor);
    transition: all 0.3s ease-in-out;
}

.about-section .image-box:hover:before, .about-section .image-box:hover:after {
    width: 40%;
    height: 40%;
}
.about-section .image-box:before {
    top: 0;
    left: 0;
}

.about-section .image-box:after {
    right: 0;
    bottom: 0;
}
.image-box {
    position: relative;
    padding: 20px;
}
section.abt_page .row:nth-child(2n) .abt_content {
    padding-left: 50px;
}
section.about-team-section {
    padding: 15px 0px 80px;
}

section.about-team-section .container {
    padding: 0px 5%;
}

.team_box img {
    height: 463px;
    width: 100%;
    transition: .4s;
    border: 1px solid transparent;
}
.team_box img:hover {
    box-shadow: 0px 0px 10px hwb(219.64deg 6.67% 49.41% / 38%);
    border: 1px solid #113781;
}
.team_box {
    position: relative;
}

.team_details {
    background: #113781;
    display: flex;
    width: 300px;
    padding: 25px 12px;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
    margin: -70px auto 0px;
    position: relative;
}

.team_box h5 {
    color: #FFF;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.team_box p {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

section.about-team-section .row {
    padding-top: 20px;
}
.Service-image .image-div img {
    height: 378px;
    width: 100%;
    object-fit: cover;
}

span.read-more a {
    padding: 16px 20px;
}
.row.Service-row:nth-child(2n) {
    flex-direction: row-reverse;
}

.row.Service-row {
    padding: 50px 0px;
    margin: 0;
}

.row.Service-row ul {
    padding-bottom: 5px;
}

.row.Service-row:nth-child(2n) .Service-content-box {
    padding-right: 50px;
    padding-left: 0;
}

.Service-content-box {
    padding-right: 0px;
    padding-left: 50px;
}

.Service-image {
    padding: 0;
}
.services-scroll-content .filter-btns {
    border-bottom: 2px solid #113781;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.services-scroll-content a.custom-btn, .services-scroll-content button.custom-btn {
    background: #E9F7FF;
    border: none;
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding: 16px 20px;
    z-index: 99;
    position: relative;
    box-shadow: 0 -10px 10px 0 rgba(0, 0, 0, 0.12) inset;
}

.services-scroll-content .filter-btns:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 -10px 10px 0 rgba(0, 0, 0, 0.12) inset;
    z-index: 9;
}
.services-scroll-content a.active:before, .services-scroll-content button.active:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.services-scroll-content a.active:after, .services-scroll-content button.active:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
.services-scroll-content a.custom-btn:hover, .services-scroll-content button.custom-btn:hover,
.services-scroll-content a.custom-btn.active, .services-scroll-content button.custom-btn.active{
    color: #fff;
}
.service-main-content {
    text-align: center;
    padding: 0px 10% 40px;
}
section.why-choose-us-section {
    padding: 70px 0px;
    background-image: url('../img/why_bg.png');
    background-size: cover;
    background-position: center center;
}

.inn_wcu_boxes {
    display: flex;
    background: #E9F7FF;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.wcu_boxes {
    padding: 15px;
}

.inn_wcu_boxes h5 {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
     /* 133.333% */
    margin: 0;
}

.inn_wcu_boxes p {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.inn_wcu_image img {
    height: 192px;
}

section.why-choose-us-section .row {
    padding: 0 140px;
}

section.why-choose-us-section h2 {
    text-align: center;
    margin-bottom: 20px;
}
.why_btn {
    text-align: center;
    padding-top: 30px;
}

.why_btn a {
    display: inline-flex;
}
.new_width.project-item {
    width: 33.333%;
}

.projects-page-section {
    padding: 80px 0px;
}

.projects-page-section .services-scroll-content .filter-btns {
    margin-bottom: 50px;
}
.contact-form-area-wrap {
    padding: 80px 0px 60px;
}

.details-wrap {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.d_content h5 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    width: 120px;
    margin: 0;
}

.d_content p {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
}
.details-wrap a:hover{
    color: #113781;
}
.map_iframe .container{
    height: 490px;
    background-color: #113781;
    padding: 0;
    margin-bottom: 50px;
    position: relative;
}
.map_iframe img.dots {
    position: absolute;
    top: -175px;
    left: -45px;
    z-index: -1;
}
.map_iframe iframe {
    width: 100%;
    height: 100%;
}
.contact-form-wrap {
    border-radius: 16px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 63px 73px;
}
.form-group input, .form-group select {
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #9A9A9A;
    outline: none !important;
    padding-bottom: 20px;
    box-shadow: none !important;
    color: #6B6C6E;
    height: 64px;
}
.form-group textarea {
    color: #6B6C6E;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #9A9A9A;
    outline: none !important;
    padding: 12px 0px;
    box-shadow: none !important;
    height: 170px;
}
.appointment-form .row {
    display: flex;
    justify-content: space-between;
}

.appointment-form .col-md-6, .appointment-form .col-md-12 {
    padding: 0px 10px;
    margin-bottom: 24px;
}

.contact-appointment-form h2 {
    margin-bottom: 15px;
}
.contact-appointment-form h5, .contact-appointment-form h6 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 20px 0px 10px
}
.form-btn input {
    border-radius: 0;
    border: 1px solid #113781;
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    background: #113781;
    height: 56px;
    padding: 16px 26px;
    max-width: 261px;
    width: 100%;
}

.form-btn input:hover {
    background: #000;
}
select {
    background-image: url(../img/select.png);
    background-repeat: no-repeat;
    background-position: 100% 10px;
}
::-webkit-input-placeholder {
  color: #6B6C6E;
}
::-moz-placeholder { 
  color: #6B6C6E;
  opacity:1;
}
:-ms-input-placeholder { 
  color: #6B6C6E;
  opacity:1;
}
:-moz-placeholder { 
  color: #6B6C6E;
  opacity:1;
}
.contact-form-content {
    display: flex;
    max-width: 595px;
    width: 100%;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    background: #FFF;
    box-shadow: 4px 4px 14px 0 rgba(0, 0, 0, 0.22);
    position: relative;
}
.contact-form-content img.dots {
    position: absolute;
    top: -34px;
    left: -45px;
    z-index: -1;
}
.contact_form_details_wrp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-form {
    padding: 0px 15px;
}	
.d_content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact_details_wrp {
    padding-right: 9%;
}
section.servive-top-section {
    padding: 70px 0px;
}
.servive-top-content{
	text-align: center;
	padding: 0px 13%;
	margin-bottom: 40px;
}
.servive-top-content h2 {
    text-transform: none;
    margin-bottom: 15px;
}
.inn_ser_boxes {
    display: flex;
    gap: 15px;
    align-items: center;
}
.inn_ser_boxes h5 span{
    display: block;
}
.services_icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    padding-top: 50px;
}
.inn_serv_image img {
    height: 196px;
    width: 100%;
    object-fit: cover;
}

.serv_boxes {
    padding: 0px 20px;
}

.serv_boxes .inn_serv_boxes h5 {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}

.serv_boxes .inn_serv_image {
    margin-bottom: 15px;
}
.inn_ser_boxes h5 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    margin: 0;
}
.why_btn a {
    padding: 16px 45px;
}
section.about-section.service_contwrp {
    padding: 20px 0;
}
.servive-tab-content h4 {
    color: #000;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 20px; 
}

.servive-tab-content h6 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}


.sserv_boxes {
    width: 20%;
    text-align: center;
}

.sserv_boxes h5 {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding:0px 60px;
}

.servive-tab-content p {
    margin-bottom: 20px;
}
.sserv_boxes .inn_serv_image {
    margin-bottom: 15px;
}

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

.s_bottom_content li {
    padding-left: 40px;
    margin: 20px 0;
    background: url(/wp-content/uploads/2025/09/ntbconstruction-ar1.webp) no-repeat left 5px;
    background-size: 20px;
    font-weight: 500;
    font-size: 18px;
    list-style: none;
}

.s_bottom_content li strong {
    display: block;
}


.s_bottom_content h2 {
    text-transform: none;
    font-size: 42px;
    margin-bottom:12px;
}

.s_bottom_content p {
    color: #000;
    font-size: 32px;
    font-weight: 400;
}
.bottom_service_contwrp .row {
    align-items: center;
}
section.services_img_slider {
    padding: 50px 0px;
}

.inser_images_slider {
    margin: 0px 10px;
    transition: .4s;
}
.inser_images_slider img{
    height:286px;
    width:100%;
    object-fit:cover;
}
.inser_images_slider a{
    height:100%;
    
    width: 100%;
}
.inser_images_slider:hover{
    box-shadow:  0px 0px 10px #000;
}
.services_img_slider .slick-track {
    padding: 10px 0px;
}
.for-section {
    padding: 50px 0px;
}
.services_icon_wrp .inn_ser_boxes {
    display: block;
}

.services_icon_wrp .inn_ser_boxes h5 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    padding-top: 10px;
}

.services_icon_wrp {
    display: flex;
    padding-bottom: 30px;
    gap: 40px;
}
.services_icon_wrp .inn_ser_boxes h5 span{
    display: inline-block;
}
.services_icon_wrp .ser_icons_boxes{
    width: 40%;
}
.row.image-div>div {
    padding: 0px;
    border: 4px solid #FFF;
}

.row.image-div .col-md-12 {
    border-top: 0;
}
.Service-content-box .about-section ul li {
    font-weight: 500;
}