/* Mobile dropdown fix */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none;
    display: none;
    background: #fff;
    border: none;
    box-shadow: none;
    padding: 10px 15px;
    min-width: auto !important;
  }

  .navbar-nav .dropdown-menu.show {
    display: block !important;
  }

  .navbar-nav .dropdown-menu .row {
    flex-direction: column;
  }

  .navbar-nav .dropdown-menu .col-6 {
    width: 100%;
    padding: 0;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
  }
}


.quality-area-four .quality-content .section-title p {
  color: #000000 !important;
}

.call-now-float {
  position: fixed;
  bottom: 40px;
  left: 10px;
  background: #fdb819;
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  font-family: Arial, sans-serif;
}

.call-now-float:hover {
  background: #000000;
  border: 2px solid blz;
  /* Darker green */
}

.call-now-float svg {
  fill: white;
}

@keyframes pulseBg {
  0% {
    background-color: #fdb819;
    box-shadow: 0 0 0 0 rgba(245, 221, 9, 0.6);
  }

  70% {
    background-color: #fdb819;
    box-shadow: 0 0 0 15px rgba(230, 0, 0, 0);
  }

  100% {
    background-color: #fdb819;
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
  }
}

.call-now-float {
  animation: pulseBg 2s infinite;
}

.footer-item .footer-service h3 {
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 30px;
  border-bottom: 1px solid #ffffff;
  display: inline-block;
  margin-top: 30px;
}

.footer-item .footer-logo a img {
  margin-bottom: 2px;
  margin-left: -88px;
}

.footer-item .footer-service ul li a {
  display: block;
  color: #ffffff;
  font-size: 14px;
}

.blog-details-form-btn {
  background-color: #fdb819 !important;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.cmn-btn a {
  display: inline-block;
  font-weight: 500;
  color: #ffffff;
  background-color: #fdb819;
  padding: 8px 5px !important;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
}

.cmn-btn a:hover {
  background-color: #e5a800;
}

.copyright-area {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2784313725);
  margin-top: 30px;
}

.footer-logo img {
  max-height: 60px;
  margin-left: -237px;
}


.request-callback {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0c356f;
  /* Red background */
  color: white;
  padding: 10px 5px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  z-index: 9999;
  border: 2px solid transparent;
  /* Default no border */
}

.request-callback:hover {
  background-color: white;
  /* Light background on hover */
  color: #0c356f;
  /* Red text on hover */
  border: 2px solid #fdb819;
  /* Red border on hover */
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 400px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

form label {
  display: block;
  /* margin-top: 15px; */
  font-weight: 500;
  font-size: 12px;
}

form input,
form textarea {
  width: 100%;
  padding: 3px;
  margin-top: 5px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: vertical;
}

form button {
  margin-top: 10px;
  background-color: #fdb819;
  color: white;
  border: none;
  padding: 5px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  width: 30%;
  text-align: center;
}

form button:hover {
  background-color: #fdb819;
}

.blog-item .blog-bottom ul li:last-child a {
  margin-top: 0px;
}

.banner-area {
  height: 700px;
  background-color: #030303;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .banner-area .banner-img img:nth-child(1) {
    max-width: 100%;
    top: 146px;
    left: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .banner-area .banner-text {
    margin-top: -232px !important;
    max-width: 650px;
    z-index: 1;
    position: relative;
  }
}

.footer-item p {
  margin-bottom: 15px;
  color: white;
}

.parts-top {
  display: flex;
  justify-content: center;
  align-items: center;
}

.parts-top img {
  width: 256px;
  height: 194px;
  object-fit: cover;
  display: block;
}

/* Optional: Make it responsive on smaller screens */
@media (max-width: 768px) {
  .parts-top img {
    width: 100%;
    height: auto;
    max-width: 256px;
    /* Maintain the original max size */
  }
}

.blog-details-item .blog-details-form {
  padding: 45px 60px 30px;
  box-shadow: 0px 0px 25px 0px rgba(221, 221, 221, 0.4784313725);
}

.back-to-top-btn i {
  background: #fdb819;
  color: #ffffff;
  height: 50px;
  width: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  font-size: 25px;
  border-radius: 50%;
  transition: 0.5s all ease;
  margin-right: 28px;
  box-shadow: 0px 0px 14px 0px rgba(253, 184, 25, 0.568627451);
  display: none;
}

.highlight {
  color: #fdb819;
}