:root {
  --bs-font-family: "Varela Round" !important;
}

body {
  font-family: var(--bs-font-family) !important;
  color: rgb(23, 23, 23) !important;
}

p,
span,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bs-font-family) !important;
}

/* icon size */
.ic-size {
  font-size: 4rem;
}

/*** Spinner Start ***/
/*** Spinner ***/

.blu-color {
  color: #001442 !important;
}

.bg-blu {
  background-color: #001442 !important;
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
}

/* .btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
} */

.btn.btn-secondary {
  color: var(--bs-white);
}

/* .btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
} */
/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 20px 0;
  color: var(--bs-white);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
  border-bottom: none;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
  border-bottom: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-secondary);
}

.navbar-light .navbar-brand img {
  max-height: 90px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 60px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .mb-h {
    font-size: 22px !important;
    margin-bottom: 1rem !important;
  }

  .mb-p {
    font-size: 14px !important;
  }

  .mb-btn {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-size: 14px !important;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 5px 7px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid white;
    border-left: 0;
    border-style: dotted;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
    border: none;
  }

  .navbar-light .navbar-nav .nav-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--bs-secondary);
    transition: 0.5s;
  }

  .sticky-top.navbar-light .navbar-nav .nav-item::before {
    bottom: 0;
  }

  .navbar-light .navbar-nav .nav-item::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: transparent transparent var(--bs-secondary) transparent;
    opacity: 0;
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-item:hover::after,
  .navbar-light .navbar-nav .nav-item.active::after {
    bottom: 1px;
    opacity: 1;
  }

  .navbar-light .navbar-nav .nav-item:hover::before,
  .navbar-light .navbar-nav .nav-item.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .navbar-collapse.show {
    display: block !important;
    max-height: 500px; /* Adjust based on your content */
  }

  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }
}

/*** Carousel Hero Header Start ***/
.carousel-header {
  position: relative;
  overflow: hidden;
}

.carousel-indicators {
  display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 25px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-secondary);
  transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
  left: 0;
  border-left: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
}

.carousel .carousel-control-next .carousel-control-next-icon {
  right: 0;
  border-right: 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
  background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
  position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: end;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
}

.carousel-caption-1-content {
  text-align: end;
  padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
  display: flex;
  justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 100px;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
}

.carousel-caption-2-content {
  text-align: start;
  padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
  display: flex;
  justify-content: start;
}

@media (max-width: 992px) {
  .carousel .carousel-inner .carousel-item {
    height: 700px;
    margin-top: -100px;
  }

  .carousel .carousel-inner .carousel-item img {
    height: 700px;
    object-fit: cover;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption-1 {
    max-width: 100% !important;
    justify-content: center;
  }

  .carousel-caption-1-content {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .carousel-caption-1-content .carousel-caption-1-content-btn {
    justify-content: center;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption-2 {
    max-width: 100% !important;
    justify-content: center;
  }

  .carousel-caption-2-content {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .carousel-caption-2-content .carousel-caption-2-content-btn {
    justify-content: center;
  }

  .carousel .carousel-control-prev .carousel-control-prev-icon,
  .carousel .carousel-control-next .carousel-control-next-icon {
    display: none;
  }
}

/* @media (max-width: 375px) {
  .img-fluid {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .img-fluid {
    display: none !important;
  }
} */


#searchModal .modal-content {
  background: rgba(255, 255, 255, 0.6);
}
/*** Carousel Hero Header End ***/
.bg-breadcrumb-2{
  position: relative;
  overflow: hidden;
  background: url(../img/about-us2.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 60px 0;
  transition: 0.5s;
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: url(../img/about-us2.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding: 60px 0 60px 0;
  }
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bs-white);
  border-radius: 10px;
  transition: 0.5s;
}

.feature .feature-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.feature .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
  transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
  transform: rotate(360deg);
}

.feature .feature-item a.btn {
  transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
  color: var(--bs-primary) !important;
}
/*** Features End ***/

/*** About Start ***/
.about .about-img {
  position: relative;
  padding-bottom: 30px;
  margin-top: 30px;
  margin-left: 30px;
}

.about .about-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  top: -30px;
  right: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  left: -30px;
  bottom: 30px;
  border-radius: 10px;
  background: var(--bs-secondary);
}

.about .about-img .about-exp {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
  font-size: 30px;
  font-weight: bold;
  background: var(--bs-secondary);
  color: var(--bs-white);
  border: 1px solid var(--bs-secondary);
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
  /* position: relative; */
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.service-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
  position: relative;
  z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
  transition: 0.5s;
}

.service-item .service-btn {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  transition: 0.5s;
}
.service-item .service-btn-right {
  margin: 0px 40px 0px -25px;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  transition: 0.5s;
}
.service-item .service-btn-right {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  transition: 0.5s;
}

.service-item .service-btn-right i {
  transition: 0.5s;
}

.service-item:hover .service-btn-right {
  background: var(--bs-white);
}

.service-item:hover .service-btn-right i {
  transform: rotate(360deg);
  /* color: var(--bs-primary) !important; */
}

.service-item .service-btn i {
  transition: 0.5s;
}

.service-item:hover .service-btn {
  background: var(--bs-white);
}

.service-item:hover .service-btn i {
  transform: rotate(360deg);
  /* color: var(--bs-primary) !important; */
}
/*** Service End ***/
.list-unstyled li {
  margin-bottom: 10px;
}
/* The color for the active state */
  :root {
    --active-color: #19409A;
  }

  /* General button container styling */
  .pricing-btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: sans-serif;
  }
#paypal-button-container {
  transition: opacity 0.3s ease;
}
  /*
    Default ("inactive") button style
    This is the outline look.
  */
  .pricing-btn {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s, color 0.2s;
    background-color: white;
    color: var(--active-color);
    border: 2px solid var(--active-color); /* Slightly thicker border */
  }

  /*
    Active button style
    This class will be added/removed with JavaScript.
  */
  .pricing-btn.active {
    background-color: var(--active-color); /* Blue background */
    color: white;                          /* White text */
  }
/* Social Media Buttons - Sticky Right Side */
.social-icons {
  position: fixed;
  top: 68%;
  right: 34px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #333;
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.social-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Individual button colors */
.whatsapp {
  background: #25d366;
} /* WhatsApp Green */
.facebook {
  background: #1877f2;
} /* Facebook Blue */
.instagram {
  background: #e4405f;
} /* Instagram Pink */
.linkedin {
  background: #0077b6;
} /* LinkedIn Blue */
/* Style for modal input fields */
.modal-content {
  border-radius: 10px;
}

.modal-header {
  background-color: #f8f9fa;
  border-bottom: 2px solid #007bff;
}

.modal-body {
  padding: 34px;
}

/* Custom file input */
input[type="file"] {
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .modal-dialog {
    max-width: 95%;
  }

  .navbar-light .navbar-brand img {
        max-height: 50px !important;
  }

  .blu-color {
    font-size: 18px !important;
  }

  .display-3 {
    font-size: 20px !important;
  }

  p {
    font-size: 13px !important;
    font-family: "Varela Round" !important;
  }

  .text-body {
    font-size: 13px !important;
  }

  .container .p-5{
    padding: 1.5rem !important;
  }

  .success-container .detail-item {
    display: flex !important;
    flex-direction: column !important;

  }

  .detail-feilds {
    display: flex !important;
    flex-direction: column !important;
  }

  .success-container .btn-back {
    font-size: 12px !important;
  }

  .success-container .btn-whatsap{
    font-size: 12px !important;
  }

  .success-container .btn-download {
    font-size: 12px !important;
  }

  .py-5 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }

  .about-img {
    display: none !important;
  }
  .bg-about .bg-light .d-flex {
    display: flex;
    flex-direction: column !important;
  }

  .bg-about .bg-light .d-flex .rounded-circle {
    width: 70px !important;
    height: 70px !important;
  }

  .bg-about .bg-light .d-flex h6 {
    margin-top: 0.5rem !important;
    font-size: 17px !important;
  }

  .bg-about .btn{
    font-size: 14px !important;
    width: 100% !important;
  }

  .service-item .ic-size {
    font-size: 2.8rem !important;
  }

  .service-item .position-relative{
    padding: 1.8rem !important;
  }

  .service-item .position-relative ul li strong{
    font-size: 15px !important;
  }

  .service-item .position-relative ul{
    padding-left: 10px !important;
  }

  .service-item .position-relative ul li{
    font-size: 13px !important;
  }

  .service-item .d-flex{
    display: flex;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .service-item .d-flex .ps-4 {
    padding-left: 0px !important;
    margin-top: 0.5rem !important;
  }

  .service-item .service-btn-right {
    margin-left: 4px !important;
    margin-bottom: 0.5rem !important;
  }

  .service-item .service-btn {
    width: 60px !important;
    height: 60px !important;
  }

  .service-item .service-btn-right {
    width: 65px !important;
    height: 65px !important;
  }

  .bg-faq .p-5 {
    width: 100% !important;
    padding: 0.8rem !important;
  }

  .bg-light .d-flex{
    display: flex;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .bg-light .d-flex .rounded-circle {
    width: 60px !important;
    height: 60px !important;
    display: flex;
    justify-content: center !important;
    margin-bottom: 0.5rem !important;
  }

  .testimonial-carousel .owl-dots .owl-dot {
    width: 16px !important;
    height: 16px !important;
  }

  
  .counter .counter-item .counter-item-icon {
    width: 80px !important;
    height: 80px !important;
    justify-content: center;
  }

  .counter .counter-item .counter-item-icon .fa-3x {
    font-size: 1.9rem !important;
  }


  .cleaning-services-section {
    padding: 30px 0 !important;
  }

  .pricing-btn-container {
    display: flex;
    flex-direction: column !important;
  }

  .pricing-btn {
    font-size: 13px !important;
    padding: 10px 24px !important;
  }

  .booking-section {
    padding: 0px !important;
  }

  .booking-section .card-body .form-label {
    font-size: 14px !important;
  }

  .modal-title {
    font-size: 22px !important;
  }

  .booking-section .card-body .btn {
    width: 100% !important;
    font-size: 13px !important;
  }

  .btn {
    font-size: 13px !important;
  }

  .form-label {
    font-size: 14px !important;
  }

  #paypal-button-container {
    margin: 0px !important;
    padding: 0px !important;
    height: 35px !important;
  }

  .modal-dialog-centered {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: calc(100% - 1rem);
}

  .modal-header {
    padding: 18px !important;
  }

  .modal-body {
    padding: 18px !important;
  }

  .modal-open .modal {
    justify-content: center;
    width: 100% !important;
  }

  .modal-dialog-centered .modal-body .d-flex {
    display: flex;
    flex-direction: column !important;
  }

  .modal-dialog-centered .modal-body .d-flex .payment-option {
    width: 100% !important;
  }

  .booking-section .card-body .d-flex {
    display: flex;
    flex-direction: column !important;
  }

  .btn-group {
    flex-direction: column !important;
    gap: 9px !important;
  }

  .pricing-btn {
    border-radius: 50px !important;
    font-size: 13px !important;
  }

  .package {
    padding: 10px !important;
  }




}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .social-icons {
    position: fixed !important;
    top: 93%;
    left: 15px;
    transform: translateY(-50%);
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
  }

  .social-btn {
    /* position: fixed !important; */
    top: 70% !important;
    /* bottom: 5px !important; */
    transition: 0.5s;
    
  } 

  .social-btn {
    width: 56px !important;
    height: 56px !important;
    font-size: 24px !important;
  }

  .social-icons .facebook {
    display: none !important;
  }
  .social-icons .instagram {
    display: none !important;
  }
  .social-icons .linkedin{
    display: none !important;
  }
  .social-icons .whatsapp{
    display: none !important;
  }
}

/* @media (max-width: 480px) {
  .social-icons {
    left: 4px;
  }

  .social-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
} */

/*** Counter Start ***/
.counter {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(194, 197, 203, 0.9), rgb(146, 152, 158)),
    url(../img/fact-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-img {
  margin-bottom: 5%;
  height: 90vh;
  background-image: url(https://images.pexels.com/photos/4239113/pexels-photo-4239113.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
  background-position: center top;
  background-repeat: no-repeat;
}

.why-us-page {
  background-image: url(https://websitedemos.net/cleaning-agency-04/wp-content/uploads/sites/489/2021/03/image-07.jpg);
}

.form-cover {
  background-color: rgba(224, 224, 255, 0.302);
  border-radius: 20px;
  padding: 2.4rem;
}

.form-cover .btn {
  background-color: #19409a !important;
  border: none !important;
}

.form-cover .btn:hover {
  background-color: #112c6a !important;
}

.counter .counter-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 25px;
}

.counter .counter-item .counter-item-icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/*** Counter End ***/

/*** Products Start ***/
.product .product-item {
  border: 1px solid rgba(196, 211, 211, 0.9);
  border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
  background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 10px;
  background: var(--bs-primary);
  color: var(--bs-white);
  z-index: 2;
}

.blog .blog-item .blog-content a {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
  color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  overflow: hidden;
  background: var(--bs-white);
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
}

.team .team-item .team-inner {
  transition: 0.5s;
}
.team .team-item:hover .team-inner {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
  position: relative;
  z-index: 2;
}

.team .team-item .team-inner .team-img::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(0, 209, 249, 0.2);
  transition: 0.5s;
  z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
  height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
  position: absolute;
  left: 10px;
  bottom: 10px;
  transition: 0.5s;
  z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
  opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
  position: absolute;
  bottom: 0;
  left: -100%;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  display: inline-flex;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon {
  left: -25px;
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 88px;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-left: 20px;
  margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-right: 15px;
  border: 1px solid var(--bs-secondary);
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid var(--bs-primary);
  background: var(--bs-secondary) !important;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
}

@media (max-width: 992px) {
  .owl-carousel.testimonial-carousel {
    padding-top: 30px;
  }

  .testimonial .owl-nav .owl-prev,
  .testimonial .owl-nav .owl-next {
    top: -30px;
  }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
  background: #f5f5f5;
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
  text-align: justify;
  margin-right: 25%;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark);
}
/*** copyright end ***/

/* payment section */
.bg-payment {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.payment-methods {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 80%;
  display: flex;
  flex-direction: column;
}
.payment-methods h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}
.payment-methods p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #323232;
}
.qr-codes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.qr-code {
  flex: 1 1 calc(50% - 1rem);
  text-align: center;
}
@media (min-width: 768px) {
  .qr-code {
    flex: 1 1 calc(20% - 1rem);
  }
}
.qr-codes img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 1px solid #ddd;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.qr-code span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}
/* payment section ended */

/* Send Request  */
.bg-request {
  width: 100%;
}

.request-send {
  height: 60vh;
  justify-content: center;
  max-width: 72%;
  border-radius: 30px;
  background-color: #ffffff;
  background-image: url(https://websitedemos.net/cleaning-agency-04/wp-content/uploads/sites/489/2021/03/sink.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Send Request End */

.text-muted {
  color: black !important;
}

.bg-about {
  background-image: url(https://media.istockphoto.com/id/2040540318/photo/young-asian-cleaning-woman-uses-a-towel-to-clean-a-computer-using-cleaning-solution-in-her.jpg?s=612x612&w=0&k=20&c=QaWGofJxo7ThigfRjeAJ6GreHGg9YVbHVduhnn5yaVU=);
  background-repeat: no-repeat;
  width: 100%;
  z-index: 0;
  background-size: cover;
}

.bg-why-us {
  background-image: url(https://media.istockphoto.com/id/1294313698/photo/man-disinfecting-an-office-desk.jpg?s=612x612&w=0&k=20&c=NH_F9Jg0Ob6zI5ZElCpap0E8F8E2zaoDv0Ln16dRYok=);
  background-repeat: no-repeat;
  width: 100%;
  z-index: 0;
  background-size: cover;
}

.bg-testimonial {
  background-image: url(https://media.istockphoto.com/id/1161199997/photo/water-drops-on-white-surface-background.jpg?s=612x612&w=0&k=20&c=9ayHbBiteQancrockiTb9SQxg-j-uoPHNBdHKlZ7xR4=);
  background-repeat: no-repeat;
  width: 100%;
  z-index: 0;
  background-size: cover;
}

.bg-footer {
  background-image: url(../img/footer-image-12345.jpg);
  background-repeat: no-repeat;
  width: 100%;
  background-position: top;
  z-index: 0;
  background-size: cover;
}

.cleaning-services-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.cleaning-service-tabs {
  gap: 1rem;
}

.cleaning-service-tab {
  background: white;
  border: 2px solid #f1f1f1;
  padding: 1rem 2rem;
  border-radius: 50px;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
}

.cleaning-service-tab:hover,
.cleaning-service-tab.active {
  background: #fff;
  border-color: #e1e1e1;
  color: #000;
  transform: translateY(-3px);
}

.cleaning-service-tab i {
  font-size: 1.1rem;
}

.cleaning-service-card {
  background: white;
  border: 2px solid #f1f1f1;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.cleaning-service-card h3 {
  color: #000;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cleaning-service-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.cleaning-service-features {
  margin: 0;
  padding: 0;
}

.cleaning-service-features li {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.cleaning-service-features i {
  font-size: 0.8rem;
}

.cleaning-service-card .btn {
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.cleaning-service-card .btn:hover {
  transform: translateX(10px);
}

.cleaning-service-card .btn i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.cleaning-service-card .btn:hover i {
  transform: translateX(5px);
}
.is-invalid {
  border-color: #dc3545 !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: calc(1.5em + 0.75rem);
}

/* Add some spacing for error messages */
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.is-invalid ~ .invalid-feedback {
  display: block;
}
@media (max-width: 768px) {
  .cleaning-service-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cleaning-service-tab {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .cleaning-service-card {
    padding: 2rem;
  }

  .cleaning-service-card h3 {
    font-size: 1.2rem;
  }
}

/* Remove content switch animation */
.cleaning-service-content {
  display: none;
}

.cleaning-service-content.active {
  display: block;
}

.avail-body {
  font-family: "Segoe UI", sans-serif;
  background: #f0f4f8;
  padding: 50px 20px;
  margin: 27px 0px -40px 0px;
  text-align: center;
}

.avail-heading {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  animation: availFadeInDown 1s ease forwards;
}

.avail-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  opacity: 0;
  animation: availFadeUp 1s ease forwards 0.5s;
}

.avail-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: all 0.3s ease;
  animation: availFadeCard 0.6s ease forwards;
  opacity: 0;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.avail-date {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.avail-day {
  font-size: 1.4rem;
  font-weight: 700;
  color: #19409a;
  margin: 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.avail-time {
  font-size: 1.1rem;
  color: #4a5568;
  background: #f7fafc;
  padding: 8px 40px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 500;
}

.avail-card.today {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  border-left: 4px solid #19409a;
  transform: scale(1.02);
  box-shadow: 0 5px 20px rgba(25, 64, 154, 0.15);
}

.avail-card.today .avail-day {
  color: #19409a;
}

.avail-card.today::before {
  content: "TODAY";
  position: absolute;
  top: 3px;
  right: 5px;
  background: #19409a;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .avail-container {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .avail-card {
    max-width: 100%;
  }
}

@keyframes availFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes availFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes availFadeCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Overall modal */
.custom-clean-type-modal .modal-content.clean-type-modal-content {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.modal-title {
  flex: 1;
  text-align: center;
  font-size: 1.5rem;
  color: white;
}

/* Modal header */
.clean-type-modal-header {
  background-color: #19409A;
  color: white;
}

/* Modal body */
.clean-type-modal-body {
  padding: 50px 65px;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  background-color: #f9f9f9;
}

/* Headings in the body content */
.clean-type-modal-body h4 {
  color: #19409A;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Paragraphs in the body */
.clean-type-modal-body p {
  margin-bottom: 15px;
}

/* Bullet points or lists */
.clean-type-modal-body ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.clean-type-modal-body li {
  margin-bottom: 8px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .custom-clean-type-modal {
    max-width: 900px;
  }
}

@media (min-width: 1200px) {
  .custom-clean-type-modal {
    max-width: 1000px;
  }
}

/* Payment Modal Styles */
.modal-backdrop {
  z-index: 1040;
}

.modal {
  z-index: 1050;
}

.payment-option {
  transition: transform 0.2s;
  cursor: pointer;
  text-align: center;
  padding: 15px;
  background: white;
}

.payment-option:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.payment-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Make sure modal is visible above other content */
.modal-dialog {
  z-index: 1060;
}
.cleaning-services-section {
        background-color: #f8f9fa;
        padding: 80px 0;
      }

      .cleaning-service-tabs {
        gap: 1rem;
      }

      .cleaning-service-tab {
        background: white;
        border: 2px solid #f1f1f1;
        padding: 1rem 2rem;
        border-radius: 50px;
        color: #333;
        font-weight: 600;
        transition: all 0.3s ease;
        text-transform: uppercase;
        cursor: pointer;
      }

      .cleaning-service-tab:hover,
      .cleaning-service-tab.active {
        background: #fff;
        border-color: #e1e1e1;
        color: #000;
        transform: translateY(-3px);
      }

      .cleaning-service-tab i {
        font-size: 1.1rem;
      }

      .cleaning-service-card {
        background: white;
        border: 2px solid #f1f1f1;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }

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

      .cleaning-service-card h3 {
        color: #000;
        font-weight: 600;
        margin-bottom: 1.5rem;
      }

      .cleaning-service-card p {
        color: #666;
        line-height: 1.6;
        font-size: 0.95rem;
      }

      .cleaning-service-features {
        margin: 0;
        padding: 0;
      }

      .cleaning-service-features li {
        margin-bottom: 0.5rem;
        color: #666;
        font-size: 0.9rem;
      }

      .cleaning-service-features i {
        font-size: 0.8rem;
      }

      .cleaning-service-card .btn {
        padding: 0.8rem 1.5rem;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: 1.5rem;
      }

      .cleaning-service-card .btn:hover {
        transform: translateX(10px);
      }

      .cleaning-service-card .btn i {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
      }

      .cleaning-service-card .btn:hover i {
        transform: translateX(5px);
      }

      @media (max-width: 768px) {
        .cleaning-service-tabs {
          flex-wrap: wrap;
          justify-content: center;
        }

        .cleaning-service-tab {
          padding: 0.8rem 1.5rem;
          font-size: 0.9rem;
        }

        .cleaning-service-card {
          padding: 2rem;
        }

        .cleaning-service-card h3 {
          font-size: 1.2rem;
        }
      }

      /* Remove content switch animation */
      .cleaning-service-content {
        display: none;
      }

      .cleaning-service-content.active {
        display: block;
      }
      .is-invalid {
  border-color: #dc3545 !important;
}
