@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #0b8ecb1a !important;
}

.ad-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b8dcb;
  padding: 10px 45px;
}

.ad-left {
  font-weight: bold;
}

.ad-right {
  display: flex;
  align-items: center;
}

.icon {
  margin-right: 5px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  background-color: #f0f0f0;
  color: #0b8dcb;
  position: sticky;
  top: 0;
  z-index: 1000;
}



.logo img {
  height: 100px;
  width: 170px;
  border-radius: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  position: relative;
}

nav ul li {
  font-weight:600 ;
  font-size: 15px;
  margin: 0 10px;
  cursor: pointer;
}

nav ul li a{
 text-decoration: none;
 color: #0b8dcb;
}

nav ul li:hover .dropdown {
  display: block;
  color: red !important;
  background: #fff;
}

nav ul li {
  list-style: none;
  display: inline-block;
  position: relative;
}

nav ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0b8dcb;
  transition: all 0.3s ease-out;
  transform: translateX(-50%);
}

nav ul li:hover::after {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.wp {
  right: 20px;
  bottom: 20px;
  position: fixed;
  z-index: 999999;
}

.wp img {
  height: 60px;
  width: 60px;
  transition: transform 0.2s;
}

.wp img:hover {
  transform: scale(1.1);
}

.circle-ripple {

  border-radius: 70%;

  text-decoration: none;
  transition: all .3s ease-in-out;
  animation: pulse 1.5s infinite;
}

/* Keyframe for the pulse (blinking) effect */
@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1); /* Slight zoom for pulse effect */
  }
  100% {
      transform: scale(1);
  }
}

.hero-content a:hover{
color: red;
}


.wp-message {
  position: absolute;
  white-space: nowrap;
  padding: 10px 15px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  font-size: 14px;
  border-radius: 10px;
  bottom: 10px;
  right: 70px; /* Start from the right side of the icon */
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease;
}
.wp a{
  z-index: 1;
}

.wp:hover .wp-message {
  opacity: 1;
  transform: translateX(0);
  right: calc(100% + 20px); /* Move the message out from the icon */
}

.wp::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 10px 8px 0;
  border-color: transparent #25D366 transparent transparent;
  right: 60px; /* Align arrow with the message */
  bottom: 26px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wp:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {

  .wp-message {
    font-size: 10px;
    padding: 8px 12px;
    right: 10px; /* Adjust right positioning for smaller screens */
  }

  .wp::after {
    right: 50px; /* Align arrow with the smaller icon */
  }
}


.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  color: #0b8dcb !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 12px 0px !important;
  border-radius: 10px;
}

.dropdown li {
  padding: 8px 0px;
  white-space: nowrap;
  padding: 10px !important;
  margin: 0 !important;
  overflow-x: auto;
  overflow-y: hidden;
  color: #0b8dcb !important;
}

.dropdown li:hover {
  background-color: #0b8dcb;
  color: white !important;
  width: 100%;
}

#menu > li > ul {
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  max-height: 600px; /* Set a maximum height for the dropdown */
  width: auto;
  overflow-y: auto; /* Enable vertical scrolling */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  padding: 0;
  list-style-type: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

i.fas.fa-chevron-down {
  margin-left: 3px;
  font-size: 14px;
  color: #0b8dcb;
  transition: color 0.3s ease;
}

#menu > li > ul::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
#menu > li > ul {
  scrollbar-width: none; /* Firefox */
}

/* Show the dropdown on hover */
#menu > li:hover > ul {
  display: block;
  color: #0b8dcb !important;
}

@media screen and (max-width: 768px) {

  #menu > li > ul {
    position: relative;
    height: 400px; /* Set a maximum height for the dropdown */
    width: 300px;
    z-index: 1;
    border-radius: 10px;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }


}

.hero {
  background-image: url("./img/hero.webp");
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
}


.rehero{
  background-image: url("./img/service/Breakdown\ Recovery.jpg");
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;

}
.tyrehero{
  background-image: url("./img//service/Mobile\ Tyre\ Fitting.jpg");
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;

}
.conhero{
  background-image: url("./img/contactus.webp");
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;

}
.termhero{
  background-image: url("./img/terms.png");
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;

}
.tyrechangehero{
  background-image: url("./img/service/Mobile\ Tyre\ Fitting.jpg");
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;

}
.jumpstarthero{
  background-image: url("./img/jump-start-banner-1536x762.jpg");
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;

}

.accidenthero{
  background-image: url("./img/service/Accident\ Recovery.jpg");
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;

}
.towinghero{
  background-image: url("./img/service/Vehicle\ towing.webp");
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;

}

.carousel-item {
  position: relative; /* Ensure the overlay is positioned relative to the carousel item */
  height: 100vh; /* Set height for full-screen effect */
}

.carousel-item {
  position: relative; /* Ensure the overlay is positioned relative to the carousel item */
  height: 100vh; /* Set height for full-screen effect */
  background-size: cover; /* Ensure the background image covers the entire area */
  background-position: center; /* Center the background image */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  z-index: -1; /* Behind content */
}

.header-content {
  position: relative; /* Position relative to the overlay */
  z-index: 1; /* Above the overlay */
  color: white; /* Set text color for visibility */
  text-align: center; /* Center text */
  padding: 20px; /* Add some padding for better spacing */
}

h1 {
  font-size: 3rem; /* Adjust font size */
}

p {
  font-size: 1.5rem; /* Adjust font size */
}


.hero-content h2 {
  font-size: 2.5rem;
  line-height: 1.2em;
  padding-left: 120px;
  padding-right: 120px;
  color: #fff;
}

.large-button {
  margin-top: 50px;
  padding: 15px 30px; /* Increase padding for a larger button */
  font-size: 20px; 
  font-weight: 600;
  color: white;
  background-color: #0b8dcb;
  border: none; /* Remove border */
  border-radius: 8px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
}


.large-button:hover {
  background-color: #c72c6c !important; /* Darker background on hover */
  transform: translateY(-4px); /* Slight lift effect */
}

.arrival-ad {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b8dcb;
  padding: 10px 45px;
}

.add-left,
.add-center,
.add-right {
  font-weight: bold;
}

.recovery-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.recovery-section h2 {
  font-weight: 800;
  color: #0b8dcb;
}

.find-technician-section {
  text-align: center;
}

.progress-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.progress-indicator span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: #0b8dcb;
  color: #ffffff;
  text-align: center;
  margin: 5px 10px;
}

.progress-line {
  width: 250px;
  height: 3px;
  background-color: #cccccc;
  margin: 5px 0;
}

.find-technician-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding: 0 10px;
}

.postcode-input {

  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #0b8dcb;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}

.postcode-input {
  width: 90%;
}
.cta-button {
  padding: 10px;
  width: 90%;
  display: block;
  margin: 0 auto;
}
.recovery-section a i{
  margin-left: 20px;
}

.cta-button {
  background-color: #0b8dcb;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

.partner-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.partner-logos img {
  max-width: 150px;
  margin: 20px;
  height: auto;
}

@media (max-width: 600px) {
  .wp img {
    height: 40px;
    width: 40px;
  }
  .ad-header{
    font-size: 8px;
  }

  .logo img {
    height: 120px;
  }

  .recovery-section h2 {
    font-size: 15px;
  }
  
  .progress-line {
    width: 60px;
  }
  .postcode-input {
    width: 90%;
  }
  .cta-button {
    padding: 10px;
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  .partner-logos img {
    max-width: 80px;
  }
  .arrival-ad {
    font-size: 9px;
  }

  .arrow i{                 
    display: none;
  }
}

.partner-logos img {
  width: 250px;
  margin: 10px;
}

.steps-section {
  text-align: center;
  padding: 40px 20px;
}

.steps-section h2 {
  margin-bottom: 20px;
}

.steps-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}

.step {
  text-align: center;
  margin: 0 20px;
}

.step img {
  width: 200px;
  margin-bottom: 10px;
}

.step img:hover {
  transform: scale(1.1);
}
.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin: 0 10px;
}

.arrow i{
 color: #0b8dcb;
}

.container {
  padding: 20px;
  text-align: center;
}
.container p{
  padding: 20px;
  text-align: center;
}

.section-title {
  margin-bottom: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; /* Space between cards */
}

.card {
  background-color: #0b8ecb1a;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  flex: 1 1 calc(25% - 20px); /* Make cards responsive and fit in 4 columns */
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 5px;
}

.card img {
  width: 100%;
  height: 200px; /* Set a fixed height for images */
  object-fit: cover; /* Ensures the images cover the space without stretching */
  border-radius: 5px;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-description {
  font-size: 1rem;
}

@media screen and (max-width: 1024px) {
  .card {
      flex: 1 1 calc(50% - 20px); /* Stack cards in 2 columns on smaller screens */
  }
}

@media screen and (max-width: 768px) {
  .card {
      flex: 1 1 100%; /* Stack cards in 1 column on mobile */
  }
}


.toggle-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    object-fit: cover;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #f0f0f0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px;
  }

  nav ul li {
    padding: 20px;
  }


  nav ul.active {
    display: flex;
    
  }

  .toggle-icon {
    display: block;
  }

  .hero-content h2 {
    font-size: 1.1rem;
    /* line-height: 50px; */
    padding-left: 10px;
    padding-right: 10px;
  }

  .steps-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step {
    flex: 1 1 calc(50% - 40px);
    margin: 10px;
  }

  .step img {
    width: 100%;
    max-width: none;
  }
}

.why-choose-section {
  text-align: center;
  padding: 40px 20px;
}

.why-choose-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  text-align: center;
}

.feature img {
  width: 50px;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
  color: #555;
}

.cta-button2 {
  background-color: #0b8dcb;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button2:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .feature {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.assistance-section {
  display: flex;
  align-items: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.assistance-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.assistance-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.assistance-text {
  margin-left: 120px;
}

.assistance-text h2 {
  font-size: 24px;
  color: #0b8dcb;
}

.assistance-text p {
  font-size: 16px;
  margin: 10px 0;
}

.call-button {
  padding: 10px 20px;
  background-color: #0b8dcb;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #005f6b;
}

@media (max-width: 768px) {
  .assistance-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .assistance-content {
    align-content: flex-start;
    flex-wrap: wrap;
  }

  .assistance-text {
    margin-top: 20px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .assistance-image img {
    width: 100%;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px;
  background-color: #3a3636e8;
  color: white;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  margin: 0 20px;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer p {
  margin: 10px 0;
  font-size: 16px !important;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #51ced4;
}

.footer-center {
  text-align: center;
}

.footer-center h4 {
  margin-bottom: 10px;
}

.footer-center ul {
  list-style: none;
  padding: 0;
}

.footer-center li {
  margin: 5px 0;
}

.footer-center a {
  color: white;
  text-decoration: none;
}

.footer-center a:hover {
  color: #007d83;
}

.footer-right {
  text-align: right;
}
.footer-right a {
  color: rgb(191, 219, 255);
}

.map-embed {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: start;
    margin: 10px 0;
  }

  .footer-left p {
    display: flex;
    justify-content: start;
    align-items: left;
    text-align: start;
  }
}

.footer-secondary {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-secondary {
    padding: 15px 0;
  }
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact-card {
  display: flex;
  justify-content: center;
  width: 90%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.input-group {
  margin-bottom: 15px;
}

.input-field {
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit {
  width: 100%;
  padding: 10px;
  background-color: #0b8dcb;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit:hover {
  background-color: #0056b3;
}

.terms-and-conditions {
  padding: 20px;
  margin: 20px 20px;

}

.terms-and-conditions h2, .terms-and-conditions h3 {
  margin-top: 20px;
  color: #333;
}

.terms-and-conditions p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
}

.terms-and-conditions ul {
  margin: 10px 0;
  padding-left: 20px;
}

.terms-and-conditions ul li {
  margin-bottom: 5px;
}

.footer-content{
  display: flex;
  justify-content: space-around;
  font-size: 16px !important;
}
.footer-content p{
  font-size: 16px !important;
}
.footer-content a{
  text-decoration: none;
  color: white;
}
.footer-content a:hover{
  color:#0b8dcb;
}


.availability-section {
  color: #005f6b;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.availability-title {
  margin-bottom: 15px;
  font-size: 1.8rem;
  text-align: center;
}

.availability-info {
  text-align: center;
  margin-bottom: 15px;
}

.availability-counts {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allows counts to stack on smaller screens */
}

.availability-counts span {
  font-size: 1.2rem;
}

.availability-counts {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows counts to stack on smaller screens */
    align-items: center; /* Center align items vertically */
}

.availability-counts span {
    font-size: 1.2rem;
    display: flex;
    align-items: center; /* Center the icon and text */
}

.availability-counts i {
    margin-right: 5px; /* Space between icon and text */
}



.map-container {
  margin-bottom: 15px;
  margin: 0px 100px; 
  display: flex;justify-content: center;
}

.map-container img {
  width: 60%;
  height: auto; /* Maintain aspect ratio */
  max-height: 400px; /* Limit maximum height */
  border-radius: 8px; /* Round the corners */
}


.call-us-button {
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  display: block;
  margin: 0 auto; /* Center the button */
}

.call-us-button:hover {
  background-color: #005f6b;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .availability-title {
      font-size: 1.5rem; /* Slightly smaller title on mobile */
  }

  .availability-counts {
      flex-direction: column; /* Stack counts on smaller screens */
  }

  .availability-counts span {
      margin-bottom: 5px; /* Space between stacked items */
      font-size: 1rem; /* Smaller font size */
  }

  .map-container img {
    width: 90%; /* Make the image almost full-width on tablets */
} 

  .call-us-button {
      padding: 12px 20px; /* Adjust padding for smaller screens */
      font-size: 1rem; /* Smaller font size */
  }
}

@media (max-width: 480px) {
  .availability-title {
      font-size: 1.3rem; /* Further reduce title size on extra small screens */
  }

  .call-us-button {
      width: 100%; /* Make button full-width on mobile */
  }

  .map-container img {
    width: 100%; /* Full width on small screens */
    margin: 10px 0; /* Adjust margin for small screens */
}
}


/* hahaa */

.form-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-title {
  color: #007d83;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.divider {
  height: 2px;
  background: linear-gradient(to right, #007d83, #00a5ab);
  margin: 1.5rem 0;
}

.form-label {
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid #e1e1e1;
  border-radius: 6px;
  padding: 0.8rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #007d83;
  box-shadow: 0 0 0 0.2rem rgba(0, 125, 131, 0.25);
}

.form-check-inline {
  margin-right: 1.5rem;
}

.square-radio {
  width: 18px;
  height: 18px;
  border-radius: 0;
  margin-left: 8px;
  cursor: pointer;
}

.form-check-label {
  color: #555;
  font-weight: 500;
  cursor: pointer;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.btn-submit {
  background: #007d83;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background: #00666b;
}

.text-danger {
  color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-container {
      margin: 1rem;
      padding: 1.5rem;
  }
  
  .form-title {
      font-size: 1.5rem;
  }
}

/* Input type number - remove arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.service-options {
  margin-bottom: 1.5rem;
}

.form-label {
  color: #007d83;
  font-weight: 700;
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}

.options-container {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.option-item {
  position: relative;
  display: flex;
  align-items: center;
}

.option-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.option-item label {
  padding: 8px 16px 8px 40px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: all 0.2s ease;
}

.option-item label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #007d83;
  background: white;
  border-radius: 4px;
}

.option-item input[type="radio"]:checked + label:after {
  content: '✓';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #007d83;
  font-size: 16px;
  font-weight: bold;
}

.option-item:hover label:before {
  border-color: #00a5ab;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .options-container {
      flex-direction: column;
      gap: 10px;
  }
}

.tabs {
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;

}
.tab {
  padding: 10px 20px;
  background-color: #005f6b;
  color: #fff;
  margin-right: 10px;
  border: 1px solid #ddd;
  border-radius: 5px 5px 0 0;
  transition: background 0.3s ease;
}
.tab:hover {
  background: #ddd;
  color: #000;
  border: 1px solid #005f6b;
}
.tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 0 0 5px 5px;
  background: #f9f9f9;
}
.active {
  /* background: #ddd; */
  display: block;
}
.form-container {
  max-width: 800px;
  margin: auto;
}
.form-title {
  text-align: center;
}
.divider {
  border-top: 1px solid #ddd;
  margin: 20px 0;
}
.form-label {
  font-weight: bold;
}
.form-control {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}
.mb-3 {
  margin-bottom: 15px;
}



.call_service {
  left: 20px;
  bottom: 20px;
  position: fixed;
  z-index: 999999999;
}

.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4d4d, #ff0000); /* Emergency alert colors */
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: linear-gradient(135deg, #ff0000, #ff4d4d); /* Change color on hover */
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.call-btn i {
  pointer-events: none;
}

.badge {
  position: absolute;
  bottom: 25px;
  left: 50px; 
  background-color: #fff;
  color: #ff0000;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  border: 2px solid #ff0000;
  white-space: nowrap;
  max-width: 120px; 
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes buttonAnimation {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.9);
  }
}

.call-btn {
  animation: buttonAnimation 1.5s infinite ease-in-out;
}
