/*====== Font Link hare ======= */

@import url('https://fonts.cdnfonts.com/css/arial-mt');
/*
========================
GOBAL CSS START
========================
*/

body {
    font-family: 'Arial MT', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    background-position: center;
    background-size: cover;
    color: #333333;
    position: relative;
    z-index: 2;
}

body::before {
    content: '';
    clear: both;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(90deg, #3480e4 0%, #80afe2 50%, #3480e4 100%);
    z-index: -1;
    opacity: 0.12;
}

:root {
    --primery-gradian-color: linear-gradient(90deg, #87110d 0%, #ad1512 46%, #87110d 100%);
    --secondery-gradian-color: linear-gradient(90deg, #3480e4 0%, #80afe2 50%, #3480e4 100%);
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #0078d7;
    --scroll-top-color: #fff;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--scroll-top-bg);
    text-align: center;
    font-size: 22px;
    color: var(--scroll-top-color);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--scroll-top-bg);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*===============
 GOBAL CSS END  
 ============== */

/*======== header style start hare ======== */

.header-area {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

.header-top-wp {
    display: flex;
    align-items: center;
    justify-content: end;
}

.header-social-list ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-social-list ul li a {
    font-size: 18px;
    color: #fff;
}

.action-btn {
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-transform: uppercase;
    border: none;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: 0.3s;
}

.action-btn::before {
    content: '';
    clear: both;
    width: 100%;
    height: 0%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.3s;
}

.action-btn.primary-btn {
    background: var(--primery-gradian-color);
    color: #ffffff;
}

.action-btn.primary-btn:hover {
    color: #fff;
}

.action-btn.primary-btn:hover::before {
    height: 100%;
}

.primary-btn::before {
    background: var(--secondery-gradian-color);
}

/* secondery btn style  */

.action-btn.secondery-btn {
    background: var(--secondery-gradian-color);
    color: #fff;
}

.action-btn.secondery-btn:hover {
    color: #fff;
}

.action-btn.secondery-btn:hover::before {
    height: 100%;
}

.secondery-btn::before {
    background: var(--primery-gradian-color);
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav .nav-link::before {
    content: '';
    clear: both;
    display: block;
    height: 2px;
    width: 0%;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--secondery-gradian-color);
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-nav {
    gap: 30px;
}

#mobileMenu {
    background: #fff;
}

.offcanvas-title img {
    max-width: 150px;
}

.offcanvas-btn-close {
    background: transparent;
    border: none;
    font-size: 25px;
    color: #000;
    margin-left: auto;
}

.navbar-toggler i {
    font-size: 32px;
    color: #fff;
}

.navbar-toggler {
    box-shadow: none !important;
}

.header-area.header-fixed {
    position: fixed;
    top: 0;
    background: #fff;
    animation: NavEffect 1s ease;
    padding: 10px 0;
}

@keyframes NavEffect {
    0% {
        top: -200px;
    }
    100% {
        top: 0px;
    }
}

.header-area.header-fixed .header-top {
    display: none;
}

.navbar-brand img {
    padding: 0;
    transition: 0.3s;
    max-width: 200px;
}

.header-fixed .navbar-brand img {
    max-width: 170px;
}


/* Dropdown base styles */

.nav-item {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: menu-effect 0.3s;
    width: 100%;
}

@keyframes menu-effect {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.dropdown-menu li a {
    padding: 8px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    /*! white-space: nowrap; */
    text-transform: capitalize !important;
    font-size: 15px;
}
.dropdown-menu li a:hover {
    color: #ad1512;
}
@media screen and (min-width: 1200px) {
    .nav-item:hover > .dropdown-menu {
        display: block;
    }
}

/* Nested dropdown */
.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.dropdown-menu li:hover > .dropdown-submenu {
    display: block;
}

.nav-link i {
    transition: 0.3s;
}
.nav-link:hover i {
    transform: rotate(180deg);
}


/* mobile dropdown  */

.dropdown-toggle-btn {
	background: transparent;
	border: none;
}
.dropdown-menu {
	border: none;
	padding: 0;
	padding-left: 5px;
}




/*======= header style end hare ======= */

/*========= hero area start hare ====== */

.hero-area {
    position: relative;
    z-index: 2;
}

.hero-slider {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-slide::before {
    content: '';
    clear: both;
    width: 100%;
    height: 100%;
    opacity: 0.502;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
}

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

.hero-wrapper {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 208px;
    padding-bottom: 60px;
}

.hero-inner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    text-align: center;
}

.hero-inner-card h4 {
    font-size: 40px;
    text-transform: uppercase;
    color: #ffffff;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.35));
}

/* .hero-inner-card h2 {
    background: var(--secondery-gradian-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 53px;
    text-transform: uppercase;
    font-weight: bold;
    color: transparent;
} */

.hero-action-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding-top: 50px;
}

.slider-pagination .swiper-pagination {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-pagination {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.slider-pagination .swiper-pagination-bullet {
    background: #fff;
    width: 12px;
    height: 12px;
}

.next-section-btn {
    position: absolute;
    left: 50%;
    bottom: -20dvh;
    transform: translateX(-50%);
}

.next-section-btn a {
    color: #fff;
    font-size: 30px;
}

/*======== hero area style end hare ========= */

/*===== feature area style start hare ===== */

.feature-wrapper {
    padding: 0 80px;
}

.single-feature-card {
    background: var(--primery-gradian-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 16px;
    padding: 25px 10px;
    gap: 10px;
    height: 100%;
}

.single-feature-card h1 {
    font-size: 60px;
    color: #ffffff;
    font-weight: 800;
}

.single-feature-card h4 {
    font-size: 29px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
}

.feature-top {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.pertners-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
    padding-bottom: 40px;
}

.pertners-wrapper h4 {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 800;
    background: var(--primery-gradian-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.pertner-brands ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* .pertner-brands ul li img {
    max-width: 170px;
    width: 100%;
} */

/*========= feature area style end hare =========== */

/*========== about area style start hare ========= */

.about-wrapper {
    padding: 60px 0;
    background: transparent;
    border-radius: 38px;
    overflow: hidden;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content h2 {
    font-size: 55px;
    text-transform: uppercase;
    color: #4b8ee4;
    font-weight: 800;
}

.about-content p {
    font-size: 16px;
    color: #4b8ee4;
}

.about-action-btn a.white-btn {
    background: #fff;
    color: #1080ef;
}

.about-bottom {
    padding-top: 50px;
}

.single-about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.single-about-card h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
}

/*============ about area end hare ======== */

/*======= service area style start hare ====== */

.service-area {
    padding: 60px 0;
}

.service-wrapper {
    padding: 0 70px;
    position: relative;
}

.section-top h1 {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    font-family: arial;
}

.primary-text {
    background: var(--primery-gradian-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-top {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.signle-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--primery-gradian-color);
    border-radius: 35px;
    gap: 25px;
    min-height: 245px;
    height: 100%;
}

.service-inner-wrapper {
    padding-top: 40px;
    position: relative;
}

.custom-nav button {
    background: transparent;
    border: none;
    color: #87110d;
}

.custom-nav .swiper-button-prev {
    left: -50px;
}

.custom-nav .swiper-button-next {
    right: -50px;
}

.service-info h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: #dfeff6;
    font-weight: bold;
    text-align: center;
}

/*========= service area end hare ============= */

/*======= testimonials area start hare ======= */

.testimonials-wrapper {
    background: var(--secondery-gradian-color);
    padding: 50px 40px;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonals-topbar {
    gap: 20px;
}

.testimonals-topbar p {
    max-width: 645px;
    margin: 0 auto;
    text-align: center;
    color: #f0f8fb;
}

.rating-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-overview ul {
    display: flex;
    align-items: center;
}

.rating-overview ul li {
    color: #FCD53F;
    font-size: 18px;
}

.single-review-card {
    padding: 30px 20px;
    border-radius: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-names {
    flex: 1;
}

.reviewer-names h4 {
    font-size: 14px;
    color: #000000;
    font-weight: bold;
}

.reviewer-names .address {
    font-style: italic;
}

.review-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.review-content h4 {
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    font-style: italic;
}

.review-content p {
    font-size: 16px;
    color: #000000;
    font-style: italic;
    text-align: center;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
}

.review-content ul {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #FCD53F;
}

.testimonials-action-btn a.white-btn {
    background: #fff;
    color: #1080ef;
    border-radius: 7px;
}

/*=========== testimonials area style end hare =========== */

/*=========== careers area style start hare ============= */

.careers-wrapper {
    padding: 60px 80px;
}

.careers-top p {
    text-align: center;
    max-width: 645px;
    margin: 0 auto;
}

.single-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.single-contact-card .contact-box {
    max-width: 320px;
    margin: 0 auto;
}

.single-contact-card h4,
.single-contact-card a {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    text-align: center;
    word-break: break-all;
}

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.careers-inner-wp {
    padding-top: 50px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.single-input {
    flex: 1;
    width: 100%;
}

.single-input input,
.single-input select,
.single-input textarea {
    display: block;
    width: 100%;
    padding: 15px 10px;
    border: 3px solid #87110d;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    transition: 0.3s;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.single-input select {
    color: #555;
}

.submit-btn button {
    min-width: 176px;
    border-radius: 13px;
}

.single-input input:focus,
.single-input textarea:focus,
.single-input select:focus {
    border-color: #0078d7;
}

.single-contact-card a:hover {
    color: #ad1512;
}

/*=========== career area style end hare ======== */

/*========= footer area style start hare ======= */

.footer-wrapper {
    padding-top: 25px;
    padding-inline: 10px;
    background: var(--secondery-gradian-color);
    border-radius: 40px;
}

.footer-content-card {
    padding-inline: 60px;
}

.footer-basic-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-social ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social ul a {
    font-size: 20px;
    font-size: 20px;
    color: #fff;
}

.footer-logo img {
    max-width: 200px;
}

.footer-block {
    padding-top: 35px;
}

.footer-block h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #f9fbf3;
    font-weight: 800;
}

.footer-block ul {
    padding-top: 15px;
}

.footer-block ul a {
    font-size: 14px;
    text-transform: capitalize;
    color: #f9fbf3;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-top: 20px;
    border-top: 1px solid #ecf5fa;
    flex-wrap: wrap;
}

.copyright-text h5 {
    font-size: 14px;
    color: #ecf5fa;
    font-weight: bold;
}

.footer-bottom p {
    font-size: 11px;
    color: #ecf5fa;
}

.footer-btm-actions-btn a.white-btn {
    background: #fff;
    color: #1080ef;
    border-radius: 7px;
    font-size: 9px;
}

.footer-btm-actions-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-area {
    padding-bottom: 50px;
}

.footer-block ul a:hover {
    color: #87110d;
}

/*------------------- new code ----------------- */

.navbar-brand .dark-logo {
    display: none;
}
.header-fixed .navbar-brand .dark-logo {
    display: block;
}
.header-fixed .navbar-brand .light-logo {
    display: none;
}
.header-fixed .navbar-nav .nav-link {
	color: #000;
}
.offcanvas-body .navbar-nav .nav-link {
	color: #000;
}
.header-fixed .navbar-toggler i {
    color: #000;
}

.brand-img {
    max-width: 200px;
}

.brand-slider.slick-initialized.slick-slider {
	width: 100%;
	max-width: 1136px;
}

.brand-slider .slick-track {
	display: flex;
    align-items: center;
    gap: 30px;
}

.review-slider {
    width: 100%;
    max-width: 1200px;
}

.single-review-card {
    margin-inline: 20px;
}

.single-contact-card {
    display: flex !important;
}

.footer-social ul a:hover {
    color: #ad1512;
}
.header-social-list ul li a:hover {
    color: #ad1512;
}


.footer-block-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-block-header .icon {
    color: #fff;
    display: none;
}
.footer-block-header h4 {
    flex: 1;
}


.brand-slider {
    overflow: hidden;
  }
  

  
  .sliding-logo img {
    max-width: 150px;
  }

  
 .sliding-logo .slick-track {
  display: flex;
  align-items: center;
}

.brand-section {
	padding: 60px 0;
}




/*========== Air condition page style start hare ========== */

.air-condition-page::before {
    opacity: 0.180;
    background-image: linear-gradient(0deg, rgba(245,239,239,0.996078431372549) 0%, rgba(245,239,239,0.9980392156862745) 50%, rgba(244,239,239,0.9999999999999999) 100%);
}
.air-condition-page .about-content h2 {
	font-size: 36px;
}
.about-content p strong {
    font-weight: 700;
}

.air-condition-page .section-top p {
    max-width: 720px;
    margin: 0 auto;
}


.air-condition-area {
    padding: 60px 0;
}

.air-condition-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 50px;
}
.air-faq-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.air-faq-header .accordion-title {
    flex: 1;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
}
.air-faq-header .accordion-icon {
    font-size: 20px;
    line-height: 50%;
    color: #87110d;
}

.faq-accordion-item {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid #ad1512;
}

.faq-content p {
    font-size: 14px;
    color: #87110d;
}

  .accordion-icon i {
    transition: transform 0.3s ease;
  }

  .air-faq-header.active .accordion-icon i {
    transform: rotate(45deg);
  }

.faq-content {
    display: none;
}

.secondery-text {
	background: var(--secondery-gradian-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.air-condition-page .single-input input, .air-condition-page .single-input select, .air-condition-page .single-input textarea {
	border-color: #0078d7;
}


.air-condition-page .footer-wrapper {
	background: var(--primery-gradian-color);
}

.air-condition-page .footer-block ul a:hover {
	color: #0078d7;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100% !important;
}



.success-alrt {
    background-color: #DBFEDE;
    position: absolute;
    top: 36px;
    width: 50%;
    color: #31AC3A;
    z-index: 999;
    padding: 15px 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(49, 172, 58, .2);  
  }
  
  @media screen and (max-width: 767px) {
    .success-alrt {       
        width: 95%;
    }
  }



 .review-slider {
    display: flex;
    align-items: stretch;
 }

  .review-slider .slick-slide {
    display: flex !important;
    flex: 1 0 auto;
    height: auto; /* Let Flexbox control height */
}
  .review-slider .slick-track {
    display: flex;
}








/* Hide content until page is ready */
    body {
     height: 100dvh;
     overflow: hidden;
    }

    body.pace-done {
      height: auto;
      overflow: unset;
    }

    /* Custom GIF overlay container */
    .pace {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: #950606;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      visibility: visible;
      transition: 0.5s;
    }

    .pace-inactive {
      display: none;
    }

    .pace .pace-progress {
      display: none !important;
    }

    .pace-custom-loader img {
      width: 25%; /* adjust size as needed */
      height: auto;
    }

    body.pace-done .pace-custom-loader {
      visibility: hidden;
      opacity: 1;
    }


    /* service area page style  */

    .service-area {
        padding-top: 60px 0;
    }

    .service-area-wrapper {
        padding-top: 50px;
    }

    .service-area-list {
        padding: 25px 40px;
        border-radius: 30px;
        background-image: linear-gradient(90deg, #9b1310 0%, #d31918 46%, #9b1310 100%);
        color: #fff;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .country-header {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        cursor: pointer;
    }
    .country-header h4 {
        font-size: 16px;
        font-weight: 700;
    }

    .city-list-wp {
        padding-top: 10px;
        display: flex;
        gap: 10px;
        justify-content: space-between;
    }
    .city-list-wp ul {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 20%;
    }
    .city-list-wp ul li a {
        display: inline-block;
        font-size: 12px;
        white-space: nowrap;
    }
     .city-list-wp ul li a:hover {
        color: #54a5f7;
     }
     
     .service-area-map {
        height: 100%;
        border: 2px solid #d31918;
        border-radius: 20px;
     }
     .service-area-map iframe {
        width: 100%;
        height: 100%;
        border-radius: 20px;
     }

     .service-area-btm {
        padding-top: 60px;
        max-width: 774px;
        margin-inline: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 5px;
        color: #a51412;
     }
     .service-area-btm p {
        font-weight: 600;
     }



     .service-details-section {
        padding-bottom: 60px;
     }

     .single-service-info {
        padding: 35px 0;
        border-bottom: 1px solid #d31918;
        display: flex;
        flex-direction: column;
        gap: 20px;
     }
     .single-service-info:first-child {
        border-top: 1px solid #d31918;
     }
     .single-service-info h4 {
        font-size: 24px;
        font-weight: 800;
        color: #87110d;
        text-transform: uppercase;
     }
    .single-service-info p {
        font-size: 16px;
        font-weight: 400;
        color: #87110d;
    }

    .contactModal {
        max-width: 600px;
    }



    .single-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* Hide the default checkbox */
.single-checkbox input[type="checkbox"] {
  display: none;
}

/* Style the custom checkbox */
.single-checkbox label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  font-weight: 600;
}

/* Create the custom checkbox square */
.single-checkbox label::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #87110d;
  border-radius: 4px;
  background-color: #fff;
  transition: background-color 0.2s, border-color 0.2s;
}

/* Checked state */
.single-checkbox input[type="checkbox"]:checked + label::before {
  background-color: #87110d;
}

/* Checkmark */
.single-checkbox input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checbox-input {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.modal-title {
	font-size: 20px;
	font-weight: 600;
}

.checkbox-secondery .single-checkbox input[type="checkbox"]:checked + label::before {
  background-color: #54a5f7;
}

.checkbox-secondery .single-checkbox label::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #54a5f7;
  border-radius: 4px;
  background-color: #fff;
  transition: background-color 0.2s, border-color 0.2s;
}



#contactModal .modal-content {
	background: var(--primery-gradian-color);
}

#contactModal .modal-header {
	padding: 10px 20px;
}

#contactModal .single-input select,
#contactModal .single-input input {
	color: #B51B1D;
	border-color: transparent !important;
}

#contactModal .single-input input::placeholder {
    color: #B51B1D;
}

.contact-pop-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 30px;
}

.contact-pop-top h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 900;
}

.contact-pop-top p {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
}

#contactModal .single-input textarea {
     color: #B51B1D;
     border-color: transparent !important;
}
#contactModal .single-input textarea::placeholder {
    color: #B51B1D;
}

.input-submit-btn.action-btn.primary-btn {
	background: #fff;
	color: #B51B1D;
	min-width: 175px;
	border-radius: 10px;
}
#contactModal .contact-form-card form {
	gap: 25px;
}

.popup-close-btn {
    background: transparent;
    border: none;
    background: transparent;
    color: #fff;
}

.main-submit-btn.action-btn  {
    min-width: 175px;
	border-radius: 10px;
}

.pages-line ul {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 20px;
}
.pages-line li {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
}

.hero-inner-card h2 {
	font-size: 98px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}


.hero-wrapper.home-page {
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    padding-block: unset !important;
}

.about-wrapper.home-page {
	padding: 60px 80px;
	background: var(--secondery-gradian-color);
	border-radius: 38px;
	overflow: hidden;
}

.home-page .about-content h2,
.home-page .about-content p {
	color: #fbfbfb;
}

.index-page .hero-inner-card h2 {
	background: var(--secondery-gradian-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 53px;
	text-transform: uppercase;
	font-weight: bold;
	color: transparent;
}


.service-wrapper .section-top p {
    display: none;
}

.heating-service-slider .service-info p {
    text-align: center;
    color: #fff;
    padding-top: 10px;
}
.heating-service-slider .signle-service-card {
    min-height: 295px;
}


.header-social-list ul li a span {
    font-size: 14px;
}

.CheckList-Pop .modal-content {
    background: var(--primery-gradian-color);
}

.modal-header h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.checklist-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.checklist-content ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	list-style: disc;
	padding-left: 20px;
	color: #fff;
}

.slide-center .swiper-wrapper {
    justify-content: center;
}