:root{
      --navy:#071d3a;
      --navy-2:#0b2b55;
      --blue:#0879c9;
      --orange:#ff6b2b;
      --light:#f4f7fb;
      --text:#263544;
      --white:#fff;
    }

    body{
      font-family: Arial, Helvetica, sans-serif;
      color:var(--text);
      overflow-x:hidden;
    }

    a{text-decoration:none;}
    .bg-navy{background:var(--navy);}
    .bg-soft{background:var(--light);}
    .text-orange{color:var(--orange);}
    .text-blue{color:var(--blue);}

    .topbar{
      background:#06172e;
      color:#dbe7f3;
      font-size:14px;
      padding:8px 0;
    }

    .navbar{
      box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .navbar-brand{
      font-weight:800;
      color:var(--navy)!important;
      line-height:1.1;
    }

    .navbar-brand span{
      color:var(--blue);
    }

    .nav-link{
      font-weight:700;
      color:#1b2b3d!important;
      font-size:14px;
    }

    /* Dropdown Fix */
    .navbar-collapse {
      overflow: visible !important;
    }

    .dropdown-menu {
      position: absolute !important;
      top: 100% !important;
      left: 0 !important;
      z-index: 1000 !important;
      display: none;
      min-width: 160px;
      padding: 0.5rem 0;
      margin: 0.125rem 0 0;
      font-size: 1rem;
      color: #212529;
      text-align: left;
      list-style: none;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid rgba(0,0,0,0.15);
      border-radius: 0.25rem;
      box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    }

    .dropdown-menu.show {
      display: block !important;
    }

    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
      display: block !important;
    }

    .dropdown-item {
      display: block;
      width: 100%;
      padding: 0.25rem 1.5rem;
      clear: both;
      font-weight: 400;
      color: #212529;
      text-align: inherit;
      background-color: transparent;
      border: 0;
      cursor: pointer;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
      color: #16213e;
      background-color: #e9ecef;
    }

    .btn-main{
      background:var(--orange);
      color:#fff;
      border:0;
      font-weight:800;
      padding:12px 26px;
      border-radius:3px;
      transition:.3s;
    }

    .btn-main:hover{
      background:#e45719;
      color:#fff;
      transform:translateY(-2px);
    }

    .btn-blue{
      background:var(--blue);
      color:#fff;
      border:0;
      font-weight:800;
      padding:12px 26px;
      border-radius:3px;
    }

    .section-title small{
      color:var(--orange);
      font-weight:900;
      letter-spacing:2px;
      text-transform:uppercase;
    }

    .section-title h2{
      color:#081d38;
      font-weight:900;
      line-height:1.1;
    }

    /* Hero */
    .hero{
      min-height:650px;
      background:linear-gradient(90deg,rgba(7,29,58,.88),rgba(7,29,58,.55)),url('../img/air-duct-cleaning.webp') center top/cover no-repeat;
      position:relative;
      display:flex;
      align-items:center;
      color:#fff;
      padding:110px 0 80px;
    }

    .hero h1{
      font-size:58px;
      font-weight:900;
      line-height:1.05;
    }

    .hero p{
      max-width:570px;
      color:#e6eef7;
    }

    .booking-card{
      background:var(--blue);
      padding:28px;
      border-radius:4px;
      box-shadow:0 20px 50px rgba(0,0,0,.25);
    }

    .booking-card input,
    .booking-card select{
      height:45px;
      border:0;
      border-radius:0;
      font-size:14px;
    }

    .feature-overlap{
      margin-top:-65px;
      position:relative;
      z-index:3;
    }

    .feature-card{
      background:#fff;
      padding:28px 22px;
      box-shadow:0 15px 35px rgba(0,0,0,.12);
      min-height:165px;
      transition:.3s;
    }

    .feature-card:hover{transform:translateY(-8px);}
    .feature-card i{color:var(--orange);font-size:28px;}
    .feature-card h5{font-weight:900;color:#0b203d;margin-top:16px;}

    .about-dark{
      background:var(--navy);
      color:#fff;
      padding:115px 0 90px;
      margin-top:-70px;
    }

    .about-img{
      border-radius:3px;
      min-height:330px;
      object-fit:cover;
      width:100%;
    }

    .split-video img,
    .how-img img,
    .cta-img{
      width:100%;
      object-fit:cover;
    }

    .play-btn{
      width:62px;height:62px;border-radius:50%;
      background:rgba(255,255,255,.85);
      display:grid;place-items:center;
      color:var(--blue);
      position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
      font-size:24px;
    }

    .service-card{
      position:relative;
      overflow:hidden;
      border-radius:3px;
      min-height:225px;
      box-shadow:0 12px 28px rgba(0,0,0,.12);
    }

    .service-card img{
      width:100%;height:225px;object-fit:cover;
      transition:.5s;
    }

    .service-card:hover img{transform:scale(1.09);}

    .service-card .overlay{
      position:absolute;left:0;right:0;bottom:0;
      padding:22px 15px;
      color:#fff;
      text-align:center;
      background:linear-gradient(transparent,rgba(7,29,58,.92));
    }

    .service-card h5{font-weight:900;margin:0;}
    .service-card small{font-weight:800;color:#f3f7ff;}

    .how-section{
      background:linear-gradient(rgba(7,29,58,.93),rgba(7,29,58,.93)),url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
      color:#fff;
      padding:105px 0;
    }

    .step-box{
      background:var(--blue);
      padding:22px;
      margin-bottom:14px;
      border-radius:3px;
    }

    .step-num{
      display:inline-grid;
      place-items:center;
      width:34px;height:34px;
      background:var(--orange);
      color:#fff;
      font-weight:900;
      margin-right:12px;
    }

    .brand-strip i{
      font-size:34px;
      color:#9f98da;
      margin:0 25px;
    }

    .wide-cta{
      background:linear-gradient(90deg,rgba(7,29,58,.9),rgba(7,29,58,.55)),url('../img/air-duct-cleaning.webp') center top/cover no-repeat;
      color:#fff;
      padding:55px;
      border-radius:4px;
      margin-top:40px;
    }

    .testimonial-card{
      background:#fff;
      padding:30px;
      box-shadow:0 15px 35px rgba(0,0,0,.1);
      border-radius:4px;
      height:100%;
    }

    .orange-cta{
      background:#ff6b2b;
      color:#fff;
      padding:70px 0;
    }

    .orange-card{
      background:#ff6b2b;
      min-height:360px;
      display:flex;
      align-items:center;
    }

    .blog-card{
      background:#fff;
      box-shadow:0 15px 35px rgba(0,0,0,.12);
      border-radius:4px;
      overflow:hidden;
      height:100%;
    }

    .blog-card img{height:190px;width:100%;object-fit:cover;}
    .blog-card .p-4 h5{font-weight:900;color:#0b203d;}

    footer{
      background:#071d3a;
      color:#dce8f5;
      padding-top:70px;
      position:relative;
      overflow:hidden;
    }

    footer:before, footer:after{
      content:"";
      position:absolute;
      width:250px;height:250px;
      background:#0d3467;
      transform:skewX(-25deg);
      opacity:.45;
    }

    footer:before{left:-80px;top:-80px;}
    footer:after{right:-70px;bottom:-100px;}
    footer .container{position:relative;z-index:2;}
    footer h5{color:#fff;font-weight:900;margin-bottom:22px;}
    footer a{color:#dce8f5;display:block;margin-bottom:10px;}
    footer a:hover{color:var(--orange);}

    .footer-info{
      background:#0c2a52;
      padding:25px;
      margin-bottom:45px;
      border-radius:4px;
    }

    .footer-info i{color:#fff;background:var(--blue);width:40px;height:40px;display:grid;place-items:center;border-radius:3px;}

    @media(max-width:991px){
      .hero h1{font-size:42px;}
      .feature-overlap{margin-top:30px;}
      .about-dark{margin-top:0;padding-top:70px;}
      .wide-cta{padding:35px;}
    }

    @media(max-width:575px){
      .hero{padding:90px 0 50px;}
      .hero h1{font-size:34px;}
      .booking-card{margin-top:25px;}
      .brand-strip i{margin:10px 15px;}
    }
	  .CUS fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
	  
.CUS input,
.CUS select,
.CUS textarea {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 5px;
  padding: 0 16px;
  margin-bottom: 13px;
  color: #071b35;
  font-size: 14px;
  outline: none;
}
.CUS input{width: 49.5%;}
.CUS textarea {
  height: 75px;
  padding-top: 14px;
  resize: none;
}

.CUS input[type="submit"] {
  background: #f26b2a;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 5px;
  transition: .3s;
}

.CUS input[type="submit"]:hover {
  background: #071b35;
}

.CUS .subject {
  display: none;
}

/* before & after */
.airduct-before-after {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 18px;
  margin: auto;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.airduct-before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BEFORE IMAGE */
.before-img {
  position: absolute;
  inset: 0;
}

/* AFTER IMAGE AUTO REVEAL */
.after-wrap {
  position: absolute;
  inset: 0;
  width: 0%;
  overflow: hidden;
  animation: revealAfter 5s ease-in-out infinite alternate;
}

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

/* MOVING CENTER LINE */
.ba-line {
  position: absolute;
  top: 0;
  left: 0%;
  width: 5px;
  height: 100%;
  background: #fdde53;
  box-shadow: 0 0 12px rgba(253,222,83,.8);
  animation: moveLine 5s ease-in-out infinite alternate;
}

@keyframes revealAfter {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes moveLine {
  from { left: 0%; }
  to { left: 100%; }
}
.font-color{color:#ff6b2b}
/*!
 * Bootstrap Icons v1.11.3 (https://icons.getbootstrap.com/)
 * Copyright 2019-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
 */.bi-check-circle-fill::before{content:"\f26a"}.bi-clock-fill::before{content:"\f291"}.bi-envelope-fill::before{content:"\f32c"}.bi-geo-alt-fill::before{content:"\f3e7"}.bi-play-fill::before{content:"\f4f4"}.bi-telephone-fill::before{content:"\f5b4"}
.fa-brands,.fa-solid,.fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-solid{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-headset:before{content:"\f590"}.fa-snowflake:before{content:"\f2dc"}.fa-tags:before{content:"\f02c"}.fa-house-chimney:before{content:"\e3af"}.fa-wind:before{content:"\f72e"}.fa-award:before{content:"\f559"}.fa-fan:before{content:"\f863"}
.fa-sr-only-focusable:not(:focus),.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-envira:before{content:"\f299"}.fa-facebook-f:before{content:"\f39e"}.fa-x-twitter:before{content:"\e61b"}.fa-instagram:before{content:"\f16d"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a}
.bi-twitter-x::before{content:"\f8db"}
.bi-house-fill::before { content: "\f424"; }
@font-face{font-display:block;font-family:bootstrap-icons;src:url("../fonts/bootstrap-icons.woff2?dd67030699838ea613ee6dbda90effa6") format("woff2"),url("../fonts/bootstrap-icons.woff?dd67030699838ea613ee6dbda90effa6") format("woff")}
.bi::before,[class*=" bi-"]::before,[class^=bi-]::before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}