@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Grotesk:wght@300..700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  background-color: var(--drk-blue-body-bg);
  color: var(--white-color);
  font-family: var(--font-body);
}
:root {
  --white-color: #fff;
  --black-color: #000;
  --drk-blue-body-bg: #040e1b;
  --text-span-color: #b5d5f4;
  --btn-grd-lgt: #6d9cc8;
  --btn-grd-medium: #3a83b6;
  --btn-grd-drk: #1a7ab7;
  --icon-bg: #104787;
  --lgt-blue-bg: #061526;
  --white-5person: #ffffff0d;
  --icon-box-bg: #121d2b;
  --transparent-color: transparent;
  --font-body: "DM Sans", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;
}
@font-face {
  font-family: "DM Sans", sans-serif;
  src: url("../fonts/DM_Sans/static/DMSans-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DM_Sans/static/DMSans-Bold.ttf");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk", sans-serif;
  src: url("../fonts/Space_Grotesk/static/SpaceGrotesk-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}
h1 {
  font-size: 48px;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  line-height: 1.25;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 22px;
  line-height: 1.35;
}

h5 {
  font-size: 18px;
  line-height: 1.4;
}

h6 {
  font-size: 16px;
  line-height: 1.4;
}

p,
span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
}
a,
button,
.btn {
  background: linear-gradient(
    to bottom,
    var(--btn-grd-lgt) 0%,
    var(--btn-grd-medium) 50%,
    var(--btn-grd-drk) 100%
  );
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600 !important;
  padding: 17px 30px;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
text-decoration: none;
}
a:hover,
button:hover,
.btn:hover {
  background: linear-gradient(
    to bottom,
    var(--icon-bg) 0%,
    var(--icon-bg) 50%,
    var(--icon-bg) 100%
  );
}
section {
  padding: 70px 0;
}
/* topbar css  */
.nw-marquee {
  color: var(--white-color);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.nw-marquee-track {
  display: inline-flex;
  width: max-content;
  animation: nw-marquee-scroll 25s linear infinite;
}

.nw-marquee-track span {
  font-size: 16px;
  font-weight: 500;
  padding: 0 40px;
}

/* animation */
@keyframes nw-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* topbar css end */

/* header css */
header .barack-header {
  background-color: var(--white-color);
}
header .barack-header a.navbar-brand {
  padding: 0;
  background: var(--transparent-color);
}
header .barack-header a.navbar-brand img {
  width: 40%;
}
header .barack-header div#navbarText {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
header .barack-header div#navbarText button {
  background: linear-gradient(
    to bottom,
    var(--btn-grd-lgt) 0%,
    var(--btn-grd-medium) 50%,
    var(--btn-grd-drk) 100%
  );
  border-radius: 0;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: background 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: background 0.3s ease, box-shadow 0.3s ease;
  -o-transition: background 0.3s ease, box-shadow 0.3s ease;
}

header .barack-header div#navbarText button:hover {
  background: linear-gradient(
    to bottom,
    var(--icon-bg) 0%,
    var(--icon-bg) 50%,
    var(--icon-bg) 100%
  );
  transition: background 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: background 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: background 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: background 0.3s ease, box-shadow 0.3s ease;
  -o-transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* header css end*/

/* Modal */
body.modal-open {
  padding-right: 0 !important;
  overflow: hidden;
}
div#exampleModal {
    background: #0000007d;
    padding-right: 0 !important;
}
.modal-header {
    border-bottom: 0;
}
.modal-header button.btn-close {
    background: transparent !important;
    opacity: 1 !important;
    color: white !important;
}
.modal-content.banner-booking-form{
  padding: 20px;
} 
/* Modal end*/

/* banner */
.banner-section {
  background: url("../img/banner-bg.webp") no-repeat top / cover;
}
.banner-section .banner-content .secondary-title-span,
.services-section .services-content .secondary-title-span,
.about-section .about-content .secondary-title-span,
.faq-section .faq-content .secondary-title-span,
.contact-section .contact-form-content .secondary-title-span,
.fast-section .fast-content .secondary-title-span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.banner-section .banner-content .secondary-title-span::before,
.services-section .services-content .secondary-title-span::before,
.about-section .about-content .secondary-title-span::before,
.faq-section .faq-content .secondary-title-span::before,
.contact-section .contact-form-content .secondary-title-span::before,
.fast-section .fast-content .secondary-title-span::before {
  content: "";
  width: 50px;
  height: 2px;
  display: inline-block;
  background-color: var(--white-color);
}
.banner-section .banner-content h1 {
  font-size: 50px;
}
.banner-section .banner-content h1 span {
  font-size: 50px;
  font-weight: 700;
  color: var(--text-span-color);
}
.banner-booking-form {
  background-color: #143465d9;
  padding: 30px;
  color: var(--white-color);
}

/* labels */
.banner-booking-form .form-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* inputs */
.banner-booking-form .form-control {
  border-radius: 0;
  border: none;
  font-size: 16px;
  padding: 10px 12px;
}

.banner-booking-form .form-control:focus {
  box-shadow: none;
  outline: none;
}

/* button */
.banner-booking-btn {
  background: linear-gradient(
    to bottom,
    var(--btn-grd-lgt),
    var(--btn-grd-medium),
    var(--btn-grd-drk)
  );
  border-radius: 0;
  padding: 12px;
  font-weight: 600;
  color: var(--white-color);
  border: none;
  transition: background-color 0.3s ease;
}

.banner-booking-btn:hover {
  background-color: var(--icon-bg);
  background-image: none;
}
.two-btn-style {
  display: flex;
  gap: 20px;
}
/* banner end*/

/* services section  */
.services-section {
  background-color: var(--lgt-blue-bg);
}
/* Card */
.services-section .service-card {
  background-color: var(--icon-box-bg);
  padding: 30px;
  height: 100%;
  color: var(--white-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Icon */
.services-section .service-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.services-section .service-icon img {
  width: 90px;
  height: 90px;
}

/* Text */
.services-section .service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.services-section .service-card p {
  color: #c6d7ea;
  margin-bottom: 20px;
}

/* Link */
.services-section .service-link {
  color: #5fb0ff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--transparent-color);
  padding: 0;
}

.services-section .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services-section .service-link:hover i {
  transform: translateX(5px);
}
/* services section  end */

/* about section  */

.about-section .about-img-wrapper {
  position: relative;
}

.about-section .about-img-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

/* Counter Badge */
.about-section .experience-badge {
  position: absolute;
  top: 20%;
  right: -40px;
  background: var(--icon-bg);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.about-section .about-content {
  padding-left: 50px;
}
.about-section .experience-badge h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 700;
}

.about-section .experience-badge span {
  font-size: 18px;
  line-height: 1.2;
}

.about-section .section-subtitle {
  font-size: 13px;
  letter-spacing: 1px;
  color: #8ab4ff;
}

.about-tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-tick-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 10px;
}

.about-tick-list i {
  color: #0d5efd; /* Blue tick */
  font-size: 16px;
}
/* Icon Boxes */
.about-section .icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
}

.icon-box .icon img {
  width: 70px;
  height: 70px;
}
.about-section .icon-box i {
  font-size: 22px;
  color: #fff;
}

/* Call Box */
.about-section .call-box,
.banner-content .call-box{
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-section .bodr-top {
  border-top: 1px solid #ffffff2e;
}
.about-section .call-box i,
.banner-content .call-box i{
  font-size: 30px;
}
.about-section .call-box-number,
.banner-content .call-box-number{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-section .call-box-number small {
  font-size: 20px;
}

.about-section .call-box-number a, .banner-content .call-box-number a {
    font-size: 17px;
    padding: 0;
    background: transparent;
    color: var(--white-color);
}
.about-section .call-box a, .banner-content .call-box a {
    background: transparent;
    padding: 0;
    color: var(--white-color);
}
/* about section  */

/* faq section  */
.faq-section {
  background: var(--lgt-blue-bg);
}

/* Heading */
.faq-subtitle {
  font-size: 13px;
  letter-spacing: 1px;
  color: #9fb6ff;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
}

.faq-desc {
  max-width: 720px;
  margin: 0 auto;
  color: var(--white-color);
  line-height: 1.6;
}

/* Accordion */
.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 15px;
}

.faq-accordion .accordion-button {
  background: var(--icon-bg);
  color: var(--white-color);
  font-weight: 500;
  font-size: 18px;
  padding: 22px 20px;
  border: 1px solid var(--white-color);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--icon-bg);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  background: var(--icon-bg);
  color: var(--white-color);
  padding: 20px;
  border: 1px solid var(--white-color);
}

/* faq section end */

/* contact section  */
.contact-section {
  background: url("../img/contact-bg.webp") no-repeat top / cover;
}

.contact-section .contact-title {
  font-size: 36px;
  font-weight: 700;
}

.contact-section .contact-desc {
  color: var(--white-color);
  max-width: 420px;
}

/* Form */
.contact-section .contact-form .form-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-section .contact-form .form-control {
  background: var(--white-color);
  border: none;
  padding: 12px 14px;
  font-size: 16px;
  height: 50px;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}
.contact-section .contact-form textarea.form-control {
  height: 150px;
}
.contact-section .contact-form .form-control:focus {
  box-shadow: none;
  outline: 2px solid var(--icon-bg);
}

/* Button */
.contact-section .contact-btn {
  color: var(--white-color);
}

/* Map */
.contact-section .contact-map {
  height: 700px;
  border-radius: 6px;
  overflow: hidden;
}
/* contact section  end*/

/* Fast Section  */

.fast-section .fast-bg {
  background: url("../img/plumbing-bg.webp") center/cover no-repeat;
  padding: 40px;
}

.fast-section .fast-title {
  font-size: 40px;
  font-weight: 700;
  max-width: 650px;
}

.fast-section .fast-desc {
  max-width: 600px;
  color: var(--white-color);
  line-height: 1.6;
}

/* Fast Section  end*/

/* testimonials  */
/* testimonials section */
 

/* swiper base */
.testimonials-section .testimonials-swiper {
  position: relative;
  padding-bottom: 80px; /* space for arrows */
}

/* equal height magic */
.testimonials-section .swiper-slide {
  display: flex;
  height: auto;
}

.testimonials-section .testimonial-card {
  background: var(--white-color);
  color: var(--black-color);
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* header */
.testimonials-section .testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.testimonials-section .testimonial-header img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
} 

.testimonials-section .testimonial-header h4 {
  font-size: 16px;
  margin: 0;
}

.testimonials-section .testimonial-header span {
  font-size: 13px;
  color: var(--icon-bg);
}

/* push text evenly */
.testimonials-section .testimonial-card p {
  margin-top: auto;
  font-size: 15px;
  line-height: 1.6;
}

/* navigation bottom center */
.testimonials-section .testimonial-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

.testimonials-section .swiper-button-prev,
.testimonials-section .swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  background: var(--icon-bg);
  border-radius: 50%;
}

.testimonials-section .swiper-button-prev::after,
.testimonials-section .swiper-button-next::after {
  font-size: 16px;
  color: var(--white-color);
}

/* testimonials end */

.phone-modal-main-style {
    display: flex !important;
    flex-direction: row !important;
    justify-content: end !important;
    align-items: end !important;
    gap: 20px;
}

.get-help-btn {
  color: #fff; 
  font-size: 16px;
  font-weight: 600; 
  border: none;
  cursor: pointer;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 128, 237, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(47, 128, 237, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 128, 237, 0);
  }
}
