
:root {
  --theme-color: #009fdf;
  --link-color: #009fdf;
  --title-color: #0e4480;
  --body-color: #1d1d1d;
  --smoke-color: #F3F1F2;
  --smoke-color2: #EFECFF;
  --black-color: #000000;
  --black-color2: #080E1C;
  --gray-color: #E6E6E6;
  --white-color: #ffffff;
  --light-color: #72849B;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #CDCDCD;
  --title-font: 'Poppins', sans-serif;
  --body-font: 'Rubik', sans-serif;
  --icon-font:"Font Awesome 6 Pro";
  --main-container: 1290px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
  --bs-border-radius: 8px;
  --bs-box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.3);
  --bs-focus-ring-color: rgba(115, 40, 203, 0.25);
  --bs-dropdown-bg: #FFF;
  --bs-navbar-nav-link-padding-x: 24px;
  --bs-border-color: #0e4480;
  --bs-primary: #009fdf;
}

.accordion-header:active {
  color:  #0e6ac8; background-color:  #0e6ac821; 
}

@media (min-width: 1200px) {
    .container {
        max-width: 1600px;
    }
}


/* Poppins Font Faces */
@font-face {
  font-family: "Poppins";
  font-weight: 100;
  font-style: normal;
  src: url('../fonts/poppins/poppins-thin.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 200;
  font-style: normal;
  src: url('../fonts/poppins/poppins-extralight.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 300;
  font-style: normal;
  src: url('../fonts/poppins/poppins-light.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/poppins/poppins-regular.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: normal;
  src: url('../fonts/poppins/poppins-medium.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-style: normal;
  src: url('../fonts/poppins/poppins-semibold.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  font-style: normal;
  src: url('../fonts/poppins/poppins-bold.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 800;
  font-style: normal;
  src: url('../fonts/poppins/poppins-extrabold.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 900;
  font-style: normal;
  src: url('../fonts/poppins/poppins-black.ttf') format('truetype');
}

/* Poppins Italic */
@font-face {
  font-family: "Poppins";
  font-weight: 100;
  font-style: italic;
  src: url('../fonts/poppins/poppins-thin-italic.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 200;
  font-style: italic;
  src: url('../fonts/poppins/poppins-extralight-italic.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 300;
  font-style: italic;
  src: url('../fonts/poppins/poppins-light-italic.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-style: italic;
  src: url('../fonts/poppins/poppins-regular-italic.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: italic;
  src: url('../fonts/poppins/poppins-medium-italic.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-style: italic;
  src: url('../fonts/poppins/poppins-semibold-italic.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  font-style: italic;
  src: url('../fonts/poppins/poppins-bold-italic.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 800;
  font-style: italic;
  src: url('../fonts/poppins/poppins-extrabold-italic.ttf') format('truetype');
}
@font-face {
  font-family: "Poppins";
  font-weight: 900;
  font-style: italic;
  src: url('../fonts/poppins/poppins-black-italic.ttf') format('truetype');
}

/* Rubik Variable Font */
@font-face {
  font-family: "Rubik";
  font-weight: 300 900;
  font-style: normal;
  src: url('../fonts/rubik/rubik-regular.ttf') format('truetype');
}

/* If you have a separate italic variable font file */
/*@font-face {
  font-family: "Rubik";
  font-weight: 300 900;
  font-style: italic;
  src: url('../fonts/rubik/rubik-italic.ttf') format('truetype');
}
*/

/*------------------- Typography -------------------*/

html,
body {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
input:focus {
  outline: none;
  box-shadow: none;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
a {
  color: var(--link-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--title-color);
}
a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}
button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
img {
  border: none;
  max-width: 100%;
}
p {
  font-family: var(--body-font);
  margin: 0 0 18px 0;
  color: var(--body-color);
  line-height: 1.75;
  font-size:18px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px 0;
}
h2 {
  color: #54962f;
  font-weight:400;
}
/*#errors {
    background: url(../../img/errBox.jpg) 0 0 repeat-y;
    display: block;
    margin: 20px auto 20px auto;
    padding: 4px;
    border: 3px #900 solid;
    background-color: #fff;
    color: #000;
    width: 100%
}
#success {
    background: url(../../img/chkBox.jpg) 0 0 repeat-y;
    display: block;
    margin: 20px auto 20px auto;
    padding: 8px 4px 4px 4px;
    border: 3px #690 solid;
    background-color: #fff;
    width: 100%
}
.errMessage {
    display: block;
    padding: 0 0 0 34px;
    margin: 0 0 4px 0;
    width: auto;
    color: #c00;
    font-weight: 400;
    font-size: 20px
}
.successMessage {
    display: block;
    padding: 0 0 0 34px;
    margin: 0 0 4px 0;
    width: auto;
    color: #333;
    font-weight: 400;
    font-size: 20px
}*/
span.anchor {
    display: block;
    position: relative;
    top: -340px;
    visibility: hidden;
}
a.anchor2 {
    display: block;
    position: relative;
    top: -180px;
    visibility: hidden;
}
nav .btn-secondary {
    margin-left: 21px;
    margin-top: -4px;
}
@media (max-width: 991px) {
  nav .btn-secondary {
      margin-left: 0px;
      margin-top: 4px;
      margin-bottom: 8px;
  }
}
.nav-link:hover, .link:hover {
  text-decoration:underline;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
nav {
/*  box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.3);*/
  border-bottom: 2px solid #0e4480;

}
.btn {
    font-size: 18px;
    text-transform: capitalize;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
/*    border: 2px solid;*/
    position: relative;
    z-index: 1;
    transition: .2s ease;
    overflow: hidden;
/*    font-weight:bold;    */
/*    white-space: nowrap;*/
    font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300))) !important;
}


/* Primary button */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #009fdf;
  --bs-btn-border-color: #0e4480;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0e4480;
  --bs-btn-hover-border-color: #0e4480;
  --bs-btn-focus-shadow-rgb: 17, 180, 245; /* needs RGB */
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #009fdf;
  --bs-btn-active-border-color: #009fdf;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #009fdf;
  --bs-btn-disabled-border-color: #009fdf;
  --bs-btn-border-width: 2px;
}

/* Secondary button */
.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0e4480;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #009fdf;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-focus-shadow-rgb: 224, 82, 151;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #009fdf;
  --bs-btn-active-border-color: #009fdf;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  --bs-btn-disabled-color: #1d1d1d;
  --bs-btn-disabled-bg: #0e6ac8;
  --bs-btn-disabled-border-color: #0e6ac8;
  --bs-btn-border-width: 2px;
}

/* Outline primary */
.btn-outline-primary {
  --bs-btn-color: #046e99;
  --bs-btn-border-color: #0e4480;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0e4480;
  --bs-btn-hover-border-color: #0e4480;
  --bs-btn-focus-shadow-rgb: 17, 180, 245;
  --bs-btn-active-color: #009fdf;
  --bs-btn-active-bg: #a9e7ff;
  --bs-btn-active-border-color: #009fdf;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  --bs-btn-disabled-color: #009fdf;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #009fdf;
  --bs-btn-border-width: 2px;
  --bs-gradient: none;
}

/* Outline secondary */
.btn-outline-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0e4480;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #009fdf;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-focus-shadow-rgb: 224, 82, 151;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #fff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-btn-border-width: 2px;
  --bs-gradient: none;
}

.font-20 {
  font-size:20px;
}

.btn-primary{
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}
.btn-secondary {
  text-shadow: none !important;
      border: 2px solid #000;
}
.btn-secondary:hover {
      border: 2px solid #000;
}
.bg-lightblue {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}


.fw-semibold {
      font-weight: 700 !important;
}

.text-lightblue2 {
  color: #65d9ff;
}
.nav-link {
  font-size: 24px;
  margin-top: 6px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 24px;
        padding-left: 24px;
    }
}


#top-header a {
    color: #fff;
}
#top-header p {
    color: #fff;
    margin: 0px;
}

#top-header .social-icon {
    color: #fff;
    height: 16px;
}

#top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: transform 0.3s ease; /* Smooth transition */
}

.navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--top-header-height); /* Initially below the top header */
  z-index: 1029;
  transition: top 0.3s ease; /* Smoothly move to the top */
}

body {
  padding-top: calc(var(--navbar-height) + var(--top-header-height)); /* Prevent layout gaps */
}






.bg-darkblue {
  background-color: #0e4480;
}
.bg-lightblue {
  background-color: #009fdf;
}
.bg-green {
  background-color: #54962f;
}

.text-darkblue, .text-blue {
  color: #0e4480;
}
.text-lightblue, .lightblue {
  color: #009fdf;
}
.text-green {
  color: #54962f;
}


hr.darkblue {
    border: 1px solid #0e4480;
    opacity: 1;
    margin: 0;
}








.blue {
  background-color: #3b4d90;
}

.banner {
  font-size:60px;
  margin:0px;
}
@media (max-width: 785px) {
  .banner {
    font-size:50px;
  }
}
@media (max-width: 400px) {
  .banner {
    font-size:35px;
  }
}
.font-normal {
  font-weight:normal;
}

@media (max-width: 435px) {
  .navbar-brand img {
    width: 212px;
  }
}
@media (max-width: 991px) {
  .mobile-center {
    margin:40px auto 0px auto !important;
    text-align:center;
  }
}
/*.service .card.card-shadow {
  -webkit-box-shadow: 5px 5px 11px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 11px rgba(0, 0, 0, 0.5);
}*/
.service .service-box .card-body {
  padding: 40px;
}
.service h6 {
  color: #1d1d1d;
}
.text-right {
  text-align: right
}
.stars i {
  font-size: 34px;
  vertical-align: text-top;
}
.quotes {
  color:#009fdf;
  fill:#009fdf;
  margin-top:20px;
  height: 28px;
}
.card-body.review {
  height:250px;
}
@media (max-width: 1201px) {
  .card-body.review {
    height:280px;
  }
}
@media (max-width: 991px) {
  .card-body.review {
    height:300px;
  }
  .stars i {
    font-size: 24px;
    vertical-align: text-top;
  }
}
@media (max-width: 720px) {
  .card-body.review {
    height:340px;
  }
}
@media (max-width: 500px) {
  .card-body.review {
    height:400px;
  }
}
@media (max-width: 420px) {
  .card-body.review {
    height:480px;
  }
}
@media (max-width: 365px) {
  .card-body.review {
    height:580px;
  }
}
@media (max-width: 768px) {
  .quotes {
    display:none;
  }
}
footer {
  background-color:  #031839;
}
footer p.h4 {
  color: #fff;
}

footer p{
  color: #b4b0b0
}

footer a {
  color: #fff;
}
footer a:hover {
  color: #009fdf;
}

footer i.fa {
  color:#009fdf;
}
.copyright {
    width: 100%;
}

.copyright-para {
  text-align:center;
/*  color:#fff;*/
}
hr.hr-footer {
  border:1px solid #009fdf;
  opacity:1;

}
.footer-list li {
    margin: 4px 0;
}

.footer-list {
    list-style-type: none;
    margin-top: 10px;
    padding-left: 0px;
}
img.shadow {
      box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.3);
}
.btn-primary, .btn-secondary {
/*      box-shadow: 3px 3px 4px 1px rgba(0,0,0,0.3);*/
/*      3px 4px 9px 1px rgba(0,0,0,0.3);*/

}
.text-yellow {
  color: #0e6ac8;
}
.font-400 {
  font-weight:400;
}
input.form-control, textarea.form-control {
  border-radius: 8px;
}
.height-auto {
  height:auto !important;
}
.info-points {
    color: #333;
}
.check svg {
  height: 22px;
  fill:  #0e6ac8;
  margin-left: -12px;
  margin-right: 0px;
}
.check {
    font-size:18px;
}
.inner-section {
   backdrop-filter: blur(6px) saturate(102%);
      -webkit-backdrop-filter: blur(6px) saturate(102%);
      background-color: rgba(255, 255, 255, 83%);
      border-radius: 8px;
      border: 1px solid rgba(209, 213, 219, 0.3);
}

.footer-nav {
  color: #fff;
}
.text-dark {
  color:#1d1d1d;
}
.mt-n4 {
    margin-top: -1.5rem!important;
}
.top-0 {
    top: 0!important;
}
.position-absolute {
    position: absolute!important;
}
.service-block img {
  height:60px;
}

.text-right-desktop {
  text-align:right;
}
@media (max-width: 992px) {
  .text-right-desktop {
    text-align:left;
  }
}
@media (max-width: 500px) {
  .smaller-mobile {  
    font-size:26px;
  }
}
.form-error {
  border: 2px solid  #0e6ac8; 
}
.header-box { 
  height:380px;
}  
.about-box {
  margin-top:-200px;
}

.form-control:focus {
  border-color: #009fdf;
  box-shadow: inset 0 1px 1px rgba(50, 77, 144, 0.2), 0 0 8px rgba(50, 77, 144, 0.1);
}

.dropdown-menu { 
    border-radius:8px;
    background-color: #fff;
}

.dropdown-item:active {
  background-color: #fff;
}

.checker {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.no-wrap {
  white-space: nowrap;
}

.navbar {
  z-index:1000;
}

.logo {
  max-width: 220px;
}

.bg-primary {
  position: relative;
  z-index: 0;
}


.home-banner {
  z-index: 1; 
  position: relative;
}
.bg-primary {
  background-color: rgb(17 180 245 / 5%)  !important;
}

.highlight-word {
  position: relative;
  display: inline-block;
}
.highlight-word::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.align-right {
  float:right;
}

hr.blue {
  border: 1px solid #009fdf;
  opacity: 1;
  margin: 0;
}

@media (max-width: 1300px) {
  .mobile-home-lower {
    margin-bottom:110px;
  }
}


.testimonial-author {
  font-weight:bold;
}


.text-bold {
  font-weight:bold;
}

.blue-bg {
  background-color:rgb(255 245 245);
}
.white-bg {
  background-color:#fff;
}
.blue-alt-bg {
  background-color:rgb(255 245 245);
}
.svg-check {
    height: 24px;
    color: #009fdf;
    fill: #009fdf;
    width: 24px;
}
.info-points {
      font-weight: bold;
      color: #009fdf !important;
      font-size: 18px;
}
.info-points span {
  vertical-align: text-top;
}
.quotes {
    width: 60px;
}
.star {
  height: 20px;
  fill:  #0e6ac8;
}
/*.card {
    box-shadow: var(--bs-box-shadow)!important;
    margin: 18px 20px;
}*/

section {
  position: relative; 
}

.form-errors {
    color: red;
    margin-bottom: 10px;
}
.form-check-label {
    font-size: 18px;
}
.form-check-input {
    width: 20px;
    height: 20px;
}

.form-errors {
    background: url(../../img/errBox.jpg) 0 0 repeat-y;
    display: block;
    margin: 20px auto 20px auto;
    padding: 4px;
    border: 3px #900 solid;
    background-color: #fff;
    color: #000;
    width: 100%;
    display:none;
}
.form-errors p {
    margin: 0 0 0px 0;
    line-height: 1;
}
#emailQuoteButton {
  display:block;
}
.lead-form form, .email-confirmation-form {
  min-height: 560px;
}

#fname-field {
  display:none;
}

.menu-footer-social {
    margin: 0;
    padding: 0;
}
.menu-footer-social {
    padding-left:0;
}
.menu-footer-social li {
   float: left;
   list-style-type: none;
}
.menu-footer-social li:not(:last-child) {
   margin: 0px 20px 0px 0px;
}
ul.menu-footer-social li a {
    color: #a1a1a1;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease
}
ul.menu-footer-social li a:focus,
ul.menu-footer-social li a:hover {
    color: #fff;
    text-decoration: none;
   background-color: transparent;
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80)
}


.accordion-button {
  font-size:18px;
  color: #009fdf
}
.accordion-button:hover {
  color: #0e4480
}

.fa {
      font-size: 18px;
}




.display-block {
  display:block;
}



ul.blue-check {
  padding-left:6px !important;
}

ul.blue-check li { 
background: url("data:image/svg+xml;base64,PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0nbmV3IDAgMCAxMDAgMTAwJyBoZWlnaHQ9JzEwMCcgdmlld0JveD0nMCAwIDEwMCAxMDAnIHdpZHRoPScxMDAnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zycgc3R5bGU9J2hlaWdodDozNnB4Oyc+PHBhdGggZD0nbTkyLjAzOCAyNC4zMzMtOC42Mi04LjYyMmMtLjMwMy0uMzAyLS43MTItLjQ3My0xLjE0MS0uNDczLS40MjggMC0uODM4LjE3MS0xLjE0MS40NzNsLTMxLjE0OSAzMS4xNDktNi4wNy02LjA2OGMtLjYzLS42My0xLjY1MS0uNjMtMi4yODIgMGwtOC42MjIgOC42MjJjLS4zMDMuMzAyLS40NzMuNzEzLS40NzMgMS4xNDEgMCAuNDI3LjE3LjgzOC40NzMgMS4xNDFsMTUuNzgyIDE1Ljc3OGMuMzAyLjMwMi43MTIuNDczIDEuMTQxLjQ3My4wMTkgMCAuMDM3LS4wMS4wNTYtLjAxLjAxNiAwIC4wMzMuMDA5LjA1LjAwOS40MTQgMCAuODI1LS4xNTggMS4xNDEtLjQ3M2w0MC44NTUtNDAuODU3Yy42My0uNjMyLjYzLTEuNjUzIDAtMi4yODN6JyBmaWxsPScjMTFiNGY1Jy8+PHBhdGggZD0nbTcyLjAyMiA1My42MjV2MjEuMTU5aC00NC4wNDR2LTQ0LjA0NGgzMS4wNmw5Ljk3OS05Ljk3OGgtNDUuODI0di4wMDdjLS4wMjMgMC0uMDQ0LS4wMDctLjA2OC0uMDA3LTIuNzg4IDAtNS4wNDUgMi4yMjktNS4xMTMgNWgtLjAxMnY1NGguMDEzYy4wNjcgMi43MjggMi4yNTkgNC45MiA0Ljk4NyA0Ljk4N3YuMDEzaC4xMjUuMDAxIDUzLjc0OC4wMDEuMTI1di0uMDEzYzIuNzI5LS4wNjcgNC45Mi0yLjI1OSA0Ljk4Ny00Ljk4N2guMDEzdi0zNi4xMTV6JyBmaWxsPScjMGU0NDgwJy8+PC9zdmc+") no-repeat left top;
    margin-bottom: 1rem;
    padding: 2px 15px 0px 32px;
    list-style: none;
    background-size: 30px;
} 

.blue-check2 { 
background: url("data:image/svg+xml;base64,PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0nbmV3IDAgMCAxMDAgMTAwJyBoZWlnaHQ9JzEwMCcgdmlld0JveD0nMCAwIDEwMCAxMDAnIHdpZHRoPScxMDAnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zycgc3R5bGU9J2hlaWdodDozNnB4Oyc+PHBhdGggZD0nbTkyLjAzOCAyNC4zMzMtOC42Mi04LjYyMmMtLjMwMy0uMzAyLS43MTItLjQ3My0xLjE0MS0uNDczLS40MjggMC0uODM4LjE3MS0xLjE0MS40NzNsLTMxLjE0OSAzMS4xNDktNi4wNy02LjA2OGMtLjYzLS42My0xLjY1MS0uNjMtMi4yODIgMGwtOC42MjIgOC42MjJjLS4zMDMuMzAyLS40NzMuNzEzLS40NzMgMS4xNDEgMCAuNDI3LjE3LjgzOC40NzMgMS4xNDFsMTUuNzgyIDE1Ljc3OGMuMzAyLjMwMi43MTIuNDczIDEuMTQxLjQ3My4wMTkgMCAuMDM3LS4wMS4wNTYtLjAxLjAxNiAwIC4wMzMuMDA5LjA1LjAwOS40MTQgMCAuODI1LS4xNTggMS4xNDEtLjQ3M2w0MC44NTUtNDAuODU3Yy42My0uNjMyLjYzLTEuNjUzIDAtMi4yODN6JyBmaWxsPScjMTFiNGY1Jy8+PHBhdGggZD0nbTcyLjAyMiA1My42MjV2MjEuMTU5aC00NC4wNDR2LTQ0LjA0NGgzMS4wNmw5Ljk3OS05Ljk3OGgtNDUuODI0di4wMDdjLS4wMjMgMC0uMDQ0LS4wMDctLjA2OC0uMDA3LTIuNzg4IDAtNS4wNDUgMi4yMjktNS4xMTMgNWgtLjAxMnY1NGguMDEzYy4wNjcgMi43MjggMi4yNTkgNC45MiA0Ljk4NyA0Ljk4N3YuMDEzaC4xMjUuMDAxIDUzLjc0OC4wMDEuMTI1di0uMDEzYzIuNzI5LS4wNjcgNC45Mi0yLjI1OSA0Ljk4Ny00Ljk4N2guMDEzdi0zNi4xMTV6JyBmaWxsPScjMGU0NDgwJy8+PC9zdmc+") no-repeat left top;
    padding: 0px 20px 10px 32px;
    background-size: 30px;
} 

.blue-svg svg {
  color:#009fdf;
  fill:#009fdf;
}

.nav-link .fa.fa-phone {
   color: #fff;
   font-size: 26px;
   margin-top: 0px !important;
}




  .services-cleaning {
    background-image: url('../../img/banner-cleaning.jpg');
    background-position: bottom  center;
    background-size:cover;
    background-repeat:no-repeat;
  }  
  .services {
    background-image: url('../../img/banner-header.jpg');
    background-position: center;
    background-size:cover;
    background-repeat:no-repeat;
  }
  .services2 {
    background-image: url('../../img/banner-header.jpg');
    background-position: bottom center;
    background-size:cover;
    background-repeat:no-repeat;
  }

  .blog1 {
    background-image: url('../../img/window-cleaning.png');
    background-position: bottom center;
    background-size:cover;
    background-repeat:no-repeat;
  }
  .blog2 {
    background-image: url('../../img/cleaning-team.png');
    background-position: bottom center;
    background-size:cover;
    background-repeat:no-repeat;
  }
  .blog3 {
    background-image: url('../../img/clean-bathroom.png');
    background-position: bottom center;
    background-size:cover;
    background-repeat:no-repeat;
  }



.blue-border {
  border: 1px solid #0e4480;
}

.social-icon2 {
      height: 20px;
    color: #0e4480;
}

.fa {
      color: #0e4480;
}
.fa-phone {
  color:#fff;
}



.no-wrap { 
  white-space:nowrap; 
}

.regular-cleaning {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 50%, transparent 100%), url('../../img/regular-cleaning.jpg');
  background-position: bottom center;
  background-size:cover;
  background-repeat:no-repeat;
}

.deep-cleaning {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 50%, transparent 100%), url('../../img/deep-cleaning.jpg');
  background-position: bottom center;
  background-size:cover;
  background-repeat:no-repeat;
}

.recurring-cleaning {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 50%, transparent 100%), url('../../img/recurring-cleaning.jpg');
  background-position: bottom center;
  background-size:cover;
  background-repeat:no-repeat;
}

.move-in-move-out-cleaning {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 50%, transparent 100%), url('../../img/move-in-move-out-cleaning.jpg');
  background-position: bottom center;
  background-size:cover;
  background-repeat:no-repeat;
}

.post-construction-cleaning {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 50%, transparent 100%), url('../../img/post-construction-cleaning.jpg');
  background-position: bottom center;
  background-size:cover;
  background-repeat:no-repeat;
}

.vacation-rental-cleaning {
  position: relative; /* Needed to position the pseudo-element */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 50%, transparent 100%); /* Gradient retained here */
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 500px; /* Set a height for your element */
  overflow: hidden; /* Ensures no overflow from the pseudo-element */
}

.vacation-rental-cleaning::before {
  content: ""; /* Pseudo-elements require a content property */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../img/vacation-rental-cleaning.jpg'); /* Your image path */
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scaleX(-1); /* Flips the image horizontally */
  opacity: 1; /* Ensure image is fully visible, adjust as needed */
  z-index: -1; /* Ensures the gradient and text are on top */
}

.service-icon {
    height: 60px;
}


.card.blue {
  transition: box-shadow 0.3s ease; /* Smooth transition for shadow */
}

.card.blue:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}

.text-secondary { 
  color: #212121 !important;
}
.text-secondary-2 { 
  color: #212121b8 !important;
}





/* ==========================================================
   HERO SECTION (container-based masked background)
   ========================================================== */

/* Outer shell */
.hero {
  position: relative;
  background: var(--bs-primary); /* fallback background color */
}

/* Ensure the section itself has no image bleed */
.hero::before,
.hero::after {
  content: none !important;
}

/* Container wrapper — controls stacking, padding, clipping */
.hero .hero-inner {
  position: relative;
  overflow: hidden;       /* contain pseudos within container */
  isolation: isolate;     /* keeps pseudo z-index context local */
  padding-block: clamp(2rem, 6vw, 4.5rem);
  z-index: 0;
}

/* ----------------------------------------------------------
   IMAGE LAYER
   ---------------------------------------------------------- */
.hero .hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0; /* bottom layer */
  background: var(--hero-img) right center / cover no-repeat;
  pointer-events: none;

  /* variables */
  --left-cut: 45%;
  --left-feather: 120px;
  --right-feather: 100px;

  /* combine: right-edge fade + left 45° diagonal fade */
  -webkit-mask-image:
    linear-gradient(to left,
      transparent 0,
      rgba(0,0,0,.65) var(--right-feather),
      #000 calc(100% - var(--right-feather))),
    linear-gradient(135deg,
      transparent 0,
      transparent calc(var(--left-cut) - var(--left-feather)),
      #000       calc(var(--left-cut) + var(--left-feather)));
          mask-image:
    linear-gradient(to left,
      transparent 0,
      rgba(0,0,0,.65) var(--right-feather),
      #000 calc(100% - var(--right-feather))),
    linear-gradient(135deg,
      transparent 0,
      transparent calc(var(--left-cut) - var(--left-feather)),
      #000       calc(var(--left-cut) + var(--left-feather)));

  /* intersect both masks */
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}

/* ----------------------------------------------------------
   READABILITY SCRIM (overlay above image, below text)
   ---------------------------------------------------------- */
.hero .hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1; /* sits above image but below text */
  pointer-events: none;
  opacity: 0; /* off by default */
  background: linear-gradient(
    to right,
    rgba(255,255,255,.96) 0%,
    rgba(255,255,255,.88) 32%,
    rgba(255,255,255,.60) 56%,
    rgba(255,255,255,0)   82%
  );
  backdrop-filter: blur(1px);
}

/* ----------------------------------------------------------
   TEXT LAYER
   ---------------------------------------------------------- */
.hero .row {
  position: relative;
  z-index: 2; /* always above overlay/image */
}
.hero .lead {
  max-width: 56ch;
}

/* ----------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
   ---------------------------------------------------------- */

/* Medium screens and below: center subject, enable scrim */
@media (max-width: 991.98px) {
  .hero .hero-inner::before {
    opacity: 1; /* turn on scrim */
  }
  .hero .hero-inner::after {
    background-position: center top;
    --right-feather: 140px;
    --left-cut: 48%;
    --left-feather: 140px;
  }
}

/* Small screens: stronger scrim for text readability */
@media (max-width: 575.98px) {
  .hero .hero-inner::before {
    background: linear-gradient(
      to right,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.94) 55%,
      rgba(255,255,255,.75) 72%,
      rgba(255,255,255,0)   95%
    );
    backdrop-filter: blur(2px);
    opacity: 1;
  }

  .hero .hero-inner::after {
    background-position: center top;
    --left-cut: 52%;
    --left-feather: 160px;
  }
}









/*

.hero { position: relative; }

.hero .hero-inner{
  position: relative;
  padding-block: clamp(2rem, 6vw, 4.5rem);
}

.hero .hero-inner::after{
  content: "";
  position: absolute;
  inset: 0;                        
  background: var(--hero-img) right center / cover no-repeat;
  pointer-events: none;
  z-index: 0;

  -webkit-mask-image: linear-gradient(to left,
                      rgba(0,0,0,0)   0%,
                      rgba(0,0,0,.65) 22%,
                      #000            48%);
          mask-image: linear-gradient(to left,
                      rgba(0,0,0,0)   0%,
                      rgba(0,0,0,.65) 22%,
                      #000            48%);
}

.hero .row{ position: relative; z-index: 1; }
.hero .lead{ max-width: 56ch; }

@media (max-width: 991.98px){
  .hero .hero-inner::after{
    background-position: center top;
    -webkit-mask-image: linear-gradient(to left,
                        rgba(0,0,0,0)   0%,
                        rgba(0,0,0,.65) 28%,
                        #000            54%);
            mask-image: linear-gradient(to left,
                        rgba(0,0,0,0)   0%,
                        rgba(0,0,0,.65) 28%,
                        #000            54%);
  }
}


.hero .hero-inner::before{
  content:"";
  position:absolute;
  inset:0;              
  z-index:1;              
  pointer-events:none;
  opacity:0;              
  background: linear-gradient(
    to right,
    rgba(255,255,255,.96) 0%,
    rgba(255,255,255,.88) 32%,
    rgba(255,255,255,.60) 56%,
    rgba(255,255,255,0)   82%
  );
  backdrop-filter: blur(1px); 
}

@media (max-width: 991.98px){
  .hero .hero-inner::before{ opacity:1; }
}
@media (max-width: 575.98px){
  .hero .hero-inner::before{
    background: linear-gradient(
      to right,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.92) 40%,
      rgba(255,255,255,.70) 62%,
      rgba(255,255,255,0)   88%
    );
    backdrop-filter: blur(1.5px);
  }
}

@media (max-width: 991.98px){
  .hero .hero-inner::after{
    -webkit-mask-image: linear-gradient(to left,
      rgba(0,0,0,0)   0%,
      rgba(0,0,0,.70) 30%,
      #000            58%);
            mask-image: linear-gradient(to left,
      rgba(0,0,0,0)   0%,
      rgba(0,0,0,.70) 30%,
      #000            58%);
    background-position: center top;
  }
}



*/

















/* fill the card with the overlay and push content to the bottom-left */
.card-cover .ratio{ display:block; border-radius:1rem; overflow:hidden; }

.card-cover-img{
  position: relative;
  background: var(--img) center/cover no-repeat;
}

/* dark bottom fade */
.card-cover-img::after{
  content:"";
  position:absolute; inset:0;
/*  background:linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 38%, rgba(0,0,0,.22) 62%, rgba(0,0,0,0) 78%);*/
  background: linear-gradient(to top, rgba(0,0,0,.85) 11%, rgba(0,0,0,.55) 51%, rgba(0,0,0,.22) 78%, rgba(0,0,0,0) 93%);
  z-index:1;
}

/* THIS is the fix */
.card-overlay{
  position:absolute; inset:0;                     /* fill card */
  z-index:2;
  display:flex; flex-direction:column;
  justify-content:flex-end; align-items:flex-start; /* bottom-left */
}

/* optional: tighter bottom spacing */
.card-overlay .btn{ margin-bottom:.25rem; }


.card-blue {
  border: 2px solid #0e4480 !important;
      transition: box-shadow 0.3s ease;
}

.card-blue:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}




/* Checklist bullets: blue circle with white check */
.checklist li{
  display:flex; align-items:center; gap:.75rem;
  margin-bottom:.6rem; color:var(--bs-primary);
}
.checklist .check{
  flex:0 0 34px; height:34px; border-radius:50%;
  background-color: var(--bs-primary);
  box-shadow: 0 0 0 4px rgba(13,110,253,.15); /* soft ring */
  background-position:center; background-repeat:no-repeat; background-size:60% 60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.173 12.252 2.4 8.48l1.414-1.414 2.36 2.36 6.01-6.01 1.414 1.415z'/%3E%3C/svg%3E");
}

/* Generic bulleted list */
.bulleted{
  list-style: disc;
  padding-left: 1.25rem;   /* indent for bullets */
  margin-bottom: 0;
}
.bulleted li{ margin-bottom: .5rem; }

/* Brand-colored bullets */
.bulleted li::marker{
  color: var(--bs-primary); /* your blue */
  font-size: 1.05em;
}

/* Slightly larger bullets/text for the right column */
.bulleted-lg li{ font-size: 1.1em; }



  /* Featured card look (dark panel like your mock) */
.video-feature{ background:#0e4480; }                /* your navy */
.video-feature .ratio{ background:#0b3766; }

/* Right column watermark (van image), fades out */
.video-list{
  background: radial-gradient(ellipse at right, rgba(14,68,128,.06) 0%, rgba(14,68,128,0) 60%),
              url('../../img/amna-van-transparent.png') right center / 52% auto no-repeat;
}
@media (max-width: 991.98px){
  .video-list{ background-size: 70% auto; background-position: 120% center; } /* push off canvas on mobile */
}

/* Thumbnails */
.video-item .thumb{
  width:168px; height:94px; object-fit:cover; flex:0 0 auto;
}
@media (max-width: 575.98px){
  .video-item .thumb{ width:140px; height:78px; }
}




/* brand helpers (tweak to your palette) */
.text-blue{ color:#0e4480; }
.bg-navy{ background:#0e4480; }
.text-navy{ color:#0e4480; }

/* people photo overlapping left panel */
.review-panel{ min-height: 340px; }
.review-people{
  position: absolute;
  bottom: -10px;              /* drop below card edge */
  right: -18px;               /* hang out a bit */
  width: clamp(180px, 38%, 300px);
  height: auto;
  pointer-events: none;
}
@media (max-width: 991.98px){
  .review-people{ right: 0; width: 48%; }
}

/* avatar without an image */
.avatar{
  width:44px; height:44px; display:inline-flex;
  align-items:center; justify-content:center;
  background:#0e4480;
}

/* subtle hr */
.reviews-section hr{ opacity:.12; }

/* improve star alignment */
.reviews-section svg{ vertical-align: -2px; }


/* Bigger quote on small screens, scales down/up nicely */
.reviews-section .swiper blockquote p{
  font-size: clamp(1.125rem, 2.2vw, 1.75rem);
}

/* Bullets in brand color */
.reviews-section .swiper-pagination-bullet{
  background: var(--bs-primary);
  opacity: .35;
}
.reviews-section .swiper-pagination-bullet-active{
  opacity: 1;
}

/* Prevent layout jump from bullets */
.reviews-section .swiper-pagination{
  position: static;
}






/* subtle cards for service items (improves scan) */
.service-item{

  background: rgb(17 180 245 / 5%)  !important;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: .75rem;
  padding: 1rem 1rem 1.1rem;
  box-shadow: var(--bs-box-shadow-sm) !important;
}

/* brand bullets */
.bulleted{ list-style: disc; padding-left: 1.25rem; margin-bottom: 0; }
.bulleted li{ margin-bottom: .4rem; }
.bulleted li::marker{ color: var(--bs-primary); }

/* check list (right column) */
.checklist li{ display:flex; align-items:center; gap:.65rem; margin: .5rem 0; }
.checklist .check{
  width:28px; height:28px; border-radius:50%;
  background-color: var(--bs-primary);
  background-position:center; background-repeat:no-repeat; background-size:60% 60%;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--bs-primary) 22%, white);
  /* white check glyph */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.173 12.252 2.4 8.48l1.414-1.414 2.36 2.36 6.01-6.01 1.414 1.415z'/%3E%3C/svg%3E");
}

/* make the divider only appear on lg+ */
@media (max-width: 991.98px){
  .border-start{ border-left: 0 !important; }
}

/* sticky only on lg+ */
@media (max-width: 991.98px){
  .sticky-lg-top{ position: static !important; }
}
@media (min-width: 992px){
  .sticky-lg-top{ position: sticky; }
}




/* Center the whole block on mobile; left-align again on lg+ */
.checklist-center{
  display: grid;                 /* robust centering container */
}
.checklist-center > .checklist, .center-checklist {
  justify-self: center;          /* center the UL as a block */
  width: max-content !important; /* shrink to content; override any 100% */
  text-align: left;              /* keep lines left-aligned */
}
/*@media (min-width: 992px){
  .checklist-center{ justify-items: start; }
  .checklist-center > .checklist{ justify-self: start; }
}*/

/* Safety: if an old rule set the UL full-width, kill it */
.checklist{ width: auto; }






.card-overlay h3,
.card-overlay p { text-shadow: 0 1px 2px rgba(0,0,0,.35); }



.shadow-wrap-br{
  filter: drop-shadow(12px 12px 5px rgba(0,0,0,0.2))
          drop-shadow(3px 4px 4px rgba(0,0,0,0.7));
  border-radius: 1rem;                 /* match rounded-4 */
}
.shadow-wrap-br > .card{ border-radius: inherit; }




@media (min-width: 991px) {
  .col-form-label {
    text-align: right;
  }
}


@media (max-width: 767px) {
  .mobile-margin-top {
    margin-top:40px;
  }
}







/* How far the form should overlap the hero on large screens */
:root { --overlap-lg: 64px; } /* tweak: 40–96px often looks best */

/* Only overlap on lg+ so mobile stays clean */
@media (min-width: 992px){
  .overlap-lg{
    position: relative;
    z-index: 5;                    /* ensure it's above the hero/HR */
    margin-top: calc(-3 * var(--overlap-lg));
    /* optional polish so it feels like a floating card */
     /* if you want a white card; remove if not */
    border-radius: 1rem;
/*    box-shadow: 0 20px 40px rgba(0,0,0,.12);*/
  
  }
}

/* Make sure the hero doesn't clip the overlap */
.hero{ overflow: visible; }         /* was clip/hidden in some earlier code */

/* Keep the HR behind the overlapping card */
hr.darkblue{ position: relative; z-index: 0; }


.form-bg {
background-color:#f3fbfe;
}


  
.form-container-wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.form-header-section {
    background: linear-gradient(135deg, #1e5799 0%, #2989d8 100%);
    padding: 30px 20px;
    text-align: center;
}

.form-header-section h3 {
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-body-section {
    padding: 35px 30px;
}

.custom-form-group {
    margin-bottom: 25px;
}

.custom-form-label {
    display: block;
    color: #1e5799;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.custom-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.custom-form-control:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.custom-form-control::placeholder {
    color: #999;
}

.help-text {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.custom-submit-btn {
    width: 100%;
    background: #00bcd4;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-submit-btn:hover {
    background: #00acc1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.custom-submit-btn:active {
    transform: translateY(0);
}

.checker {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

#errors {
    background: #fee;
    border: 2px solid #fcc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    color: #c33;
}

#success {
    background: #efe;
    border: 2px solid #cfc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    color: #3c3;
}

@media (max-width: 768px) {
    .form-body-section {
        padding: 25px 20px;
    }
    
    .form-header-section h3 {
        font-size: 22px;
    }
}





/* Custom styling for service cards */
.service-card {
    border-left: 4px solid #009fdf;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Deep Cleaning Solutions Cards */
.solution-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3) !important;
}

.solution-image {
    position: relative;
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 87, 153, 0.7);
    transition: background 0.3s ease;
}

.solution-card:hover .solution-overlay {
    background: rgba(0, 188, 212, 0.85);
}

.solution-content {
    min-height: 180px;
}


/* Gallery Cards */
.gallery-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4) !important;
}

.gallery-label {
    font-size: 14px;
    letter-spacing: 1px;
}


.before{
  background: #0e4480;

}

.after{
  background: #009fdf;
}






/* Custom styling for accordions */
.accordion-button {
    background-color: #f8f9fa;
    color: #1e5799;
}

.accordion-button:not(.collapsed) {
    background-color: #00bcd4;
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
}

.accordion-body {
    font-size: 16px;
    line-height: 1.6;
}




.fa-clock-o {
  color:#fff;
}

.fa-clock-o.blue-fa, .blue-fa {
  color:#009fdf !important;

}

.test {
    background-image: url(../../img/clean_bg3.png) !important;
}

.card-blue {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}


.fa-light-blue {
  color: #009fdf !important;
}



.margin-left-20 {
  margin-left: 20px;
}

@media (max-width: 992px) {
  .hidden-mobile {
    display: none;
  }
}




section p {
    font-size: 1.25rem;
    font-weight: 300;
}


.border-dark-blue {
  border: 2px solid #0e4480;
}





.gallery-section {
    scroll-margin-top: 100px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #0e4480;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,1), transparent);
    padding: 1rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay p {
  color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.nav-pills-gallery {
    background: #f8f9fa;
    border-radius: 50px;
    padding: 0.5rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-pills-gallery .nav-link {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    color: #495057;
    transition: all 0.3s ease;
        border: 1px solid #0e4480;

}

.nav-pills-gallery .nav-link:hover {
    background: #e9ecef;
}

.nav-pills-gallery .nav-link.active {
    background: #009fdf;
    color: white;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}





@media (min-width: 768px) and (max-width: 1299px) {
  .hidden-tablet {
    display:none;
  }
}


.btn.btn-primary.btn-lg.mt-3.w-100:hover .fa.fa-paper-plane.me-2,
.btn.btn-primary.btn-lg.w-100:hover .fa.fa-paper-plane.me-2,
.btn.btn-primary.btn-lg.py-3:hover .fa.fa-calendar-check-o.me-2 {
  color: #fff;
}


/*@media (min-width: 992px) {
    .container {
        max-width: 1196px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 1196px;
    }
}


*/



@media (min-width: 992px) and (max-width: 1199.98px) {
  #navbar_top .navbar-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .25rem;
  }

  #navbar_top .navbar-nav .nav-item {
    margin: 0 .25rem;
  }

  #navbar_top .navbar-nav .btn {
    padding: .45rem .9rem;
    font-size: 0.9rem;
  }
}




@media (min-width: 992px) and (max-width: 1100px) {
  #navbar_top .navbar-nav .nav-link {
    padding-inline: 0.75rem;
  }
}
