/* Resetting margins and padding for all elements */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.firstsection {
  height: 100vh;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Background Image Wrapper */

.background-wrapper {
  position: absolute;
  /* Makes it float above everything */
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  /* Cover full viewport height */
  z-index: -1;
  /* Keeps it behind the content */
  overflow: hidden;
}

/* Background Image with Blur Effect */

.background {
  width: 100%;
  height: 100%;
  background: url("../images/bg.png") no-repeat center center/cover;
  filter: blur(5px);
  /* Apply blur directly to the background image */
}

/* Main Content Box Styling */

.box-main {
  position: relative;
  /* Keeps it above the background */
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 90%;
  margin: auto;
  padding-top: 100px;
  /* Padding to account for the fixed navbar */
}

/* Additional Styles */

/* Other sections should have a white background or any other styling you prefer */

.firsthalf {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.secondhalf {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  padding-left: 10%;
}

.secondhalf img {
  width: 90%;
  max-width: 600px;
  margin: auto;
}

/* Text Styling */

.text-big {
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  /* Text shadow for better visibility */
}

.text-small {
  font-size: 1.5rem;
  margin-top: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  /* Text shadow for better visibility */
}

/* VIN Search Container */

.vin-search-container {
  display: flex;
  align-items: center;
  margin-top: 30px;
  background-color: #fff;
  /* Light blue background */
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.vin-input {
  flex-grow: 1;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.report-btn {
  padding: 15px 25px;
  background-color: #5f7dff;
  /* Yellow background */
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 10px;
  white-space: nowrap;
  font-size: 16px;
}

.report-btn:hover {
  background-color: #dbdbdb;
  transition: all 0.2s linear;
}

/* "I don't have VIN" Link */

.no-vin-container {
  text-align: center;
  margin-top: 20px;
}

.no-vin-link {
  color: black;
  text-decoration: none;
  padding: 10px;
  border: 2px solid #000;
  /* Black border */
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
  background-color: white;
}

.no-vin-link:hover {
  background-color: #f0f8ff;
  /* Light blue background on hover */
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  /* Adjust based on your design */
  margin: auto;
  overflow: hidden;
}

.slide-wrapper {
  display: flex;
  width: 200%;
  /* Total width for 2 slides */
  transition: transform 1s ease-in-out;
  /* Smooth transition effect */
}

.slide {
  width: 50%;
  /* Each slide takes up 50% of the container width */
  flex-shrink: 0;
  /* Prevent slides from shrinking */
}

.slide-image {
  width: 100%;
  /* Make image take full width of the slide */
  border-radius: 10px;
  /* Round corners */
}

/* Adjust navbar overlap */

body {
  padding-top: 60px;
  /* Height of the navbar */
}

/* Services Section */

.services-section {
  padding: 80px 5%;
  /* Reduced padding on the sides */
  text-align: center;
}

.section-title {
  font-size: 2.5em !important;
  margin-bottom: 40px !important;
  color: black !important;
}

.services-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  /* Adjusted gap between boxes */
}

.service-box {
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  width: calc(33.33% - 20px);
  /* Adjusted width for equal spacing */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  /* Enhanced shadow for a more attractive look */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  /* Slight upward movement on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  /* Enhanced shadow on hover */
}

.service-icon {
  width: 100px;
  height: auto;
  margin-bottom: 25px;
}

.service-title {
  font-size: 25px;
  margin-bottom: 20px;
  color: #333;
}

.service-description {
  font-size: 17px;
  color: #555;
}

.where-we-operate-section {
  background-color: white;
  /* Initial white background */
  position: relative;
  padding: 80px 5%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  /* Center the content */
  z-index: 1;
  overflow: hidden;
  /* Ensures pseudo-element doesn't overflow */
}

.where-we-operate-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10%;
  background-image: url("../images/wbg.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(5px) brightness(1.2);
  /* Increase blur and brighten the image */
  opacity: 0.3;
  /* Reduce opacity to lighten the image */
  z-index: -1;
  /* Place it behind the content */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  /* Semi-transparent white overlay */
  z-index: 0;
  /* Layer it above the blurred background */
}

.where-we-operate-content {
  position: relative;
  z-index: 1;
  /* Ensure content is above the overlay */
  display: flex;
  justify-content: space-between;
  /* Space between text and images */
  width: 100%;
  max-width: 1200px;
  /* Limit the width to center the content */
  margin: auto;
  /* Center the content horizontally */
}

.where-we-operate-text {
  width: 45%;
  /* Slightly reduced width for better centering */
  padding: 20px;
  text-align: left;
  /* Center align text */
  margin: auto;
}

.where-we-operate-images {
  width: 45%;
  /* Slightly reduced width for better centering */
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Reduced gap for compactness */
  justify-content: center;
  margin: auto;
}

.region {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* Reduced gap between flag items */
  justify-content: left;
  /* Center align flags */
  align-items: center;
}

.flag-item {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 5px 8px;
  /* Reduced padding for compactness */
  margin-bottom: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  background-color: white;
  cursor: pointer;
}

.flag-item img {
  width: 15px;
  /* Reduced size for more compact flags */
  height: auto;
  margin-right: 8px;
  /* Reduced margin for compact layout */
}

.flag-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  border-color: #ccc;
}

.where-we-operate-text h2 {
  font-size: 3em;
  /* Slightly smaller font size */
  margin-bottom: 20px;
  color: #333;
}

.where-we-operate-text p {
  font-size: 1.5em;
  /* Slightly smaller font size */
  color: black;
}

.region h3 {
  width: 100%;
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

.customer-support-section {
  background: #e4e3e3;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
}

.customer-support-container {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.customer-support-container p {
  text-align: center;
  font-size: 18px;
  width: 70%;
  margin: 0 auto;
  padding-bottom: 15px;
  line-height: 1.5;
}

.customer-support-images {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.customer-support-images img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.customer-support-images img:not(:first-child) {
  margin-left: -15px;
}

.customer-support-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}

.customer-support-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.support-stat-item {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  text-align: center;
}

.support-stat-item:hover {
  background-color: #e0e0e0;
}

.support-stat-item img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-bottom: 10px;
}

.support-stat-item h3 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.support-stat-item p {
  font-size: 1.2em;
  color: #666;
}

/* General Styles */

body {
  font-family: Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #fcfcfc;
}

.section-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: white;
}

/* contact  */

.contact-section {
  padding: 80px 0;
  background: #f1f1f1;
}

.contact-section .section-title {
  text-align: center;
}

.contact-us {
  padding: 40px;
  background-color: #5f7dff;
  color: white;
  border-radius: 5px;
}

#contactForm {
  display: flex;
  flex-direction: column;
}

#contactForm input,
#contactForm textarea {
  margin-top: 10px;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  width: 100%;
  outline: none;
  resize: none;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: grey;
}

#submit {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin: 10px 0;
}

#submit:hover {
  background-color: #5f7dff;
  color: #000;
}

.contact-number {
  font-size: 16px;
  margin-top: 20px;
  color: white;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

.contact-img {
  filter: grayscale(95%);
}

.contact-img svg {
  min-width: 600px;
}

.contact-left,
.contact-right {
  width: 50%;
}

.contact-left .section-title {
  color: #fff !important;
  text-align: left;
  margin-bottom: 0 !important;
}

.contact-number i {
  padding-right: 8px;
}

.contact-number a {
  color: #fff;
  text-decoration: none;
}

.contact-number a:hover {
  color: #000;
}

.contact-us .section-title {
  padding-bottom: 12px;
}

.contact-number {
  font-size: 16px;
  margin-top: 20px;
  color: white;
}

/* FAQs Section */

.faqs {
  width: 50%;
  float: right;
  padding: 20px;
  background-color: #fce4ec;
  color: #d32f2f;
}

.faq-list {
  list-style: none;
  padding: 0;
}

.faq-question {
  background-color: transparent;
  color: #d32f2f;
  border: none;
  padding: 10px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
  transition: color 0.3s ease;
  outline: none;
}

.faq-question:hover {
  color: black;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0;
}

.faq-answer.open {
  max-height: 500px;
  padding: 10px 0;
}

/* Clearfix for floated elements */

.contact-faq-section::after {
  content: "";
  display: table;
  clear: both;
}

/* Footer Section */

.footer-section {
  background-color: #f8f9fa;
  /* Light background color */
  padding: 20px;
  text-align: center;
}

.privacy-terms-footer {
  max-width: 800px;
  margin: auto;
}

.privacy-terms-list {
  list-style: none;
  padding: 0;
}

.privacy-terms-list li {
  display: inline;
  margin: 0 10px;
}

.privacy-terms-list a {
  text-decoration: none;
  color: grey;
  /* Link color */
}

.footer-text {
  margin-top: 10px;
  color: #6c757d;
  /* Text color */
}

/* Clearfix for floating elements */

.contact-faq-section::after {
  content: "";
  display: table;
  clear: both;
}

/* Media Query for Mobile Devices */

@media (max-width: 767px) {
  /* Main Content Adjustments */
  .box-main {
    flex-direction: column;
    text-align: center;
    padding-top: 130px;
    padding-bottom: 40px;
  }
  .firsthalf,
  .secondhalf {
    width: 100%;
  }
  .secondhalf {
    padding: 20px;
  }
  .text-big {
    font-size: 2rem;
    /* Smaller font size for mobile */
  }
  .text-small {
    font-size: 1.2rem;
    /* Smaller font size for mobile */
  }
  .vin-search-container {
    flex-direction: column;
    width: 90%;
    margin: auto;
  }
  .vin-input {
    width: 100%;
    margin-bottom: 10px;
  }
  .report-btn {
    width: 100%;
    margin-left: 0;
  }
  .secondhalf img {
    width: 100%;
    max-width: none;
    /* Remove max-width constraint */
  }
  /* Adjust background image positioning */
  .background-wrapper {
    height: auto;
    /* Adjust height for mobile */
    background-position: top;
  }
}

/* Responsive Styles */

@media (max-width: 767px) {
  .services-container {
    flex-direction: column;
    /* Stack service boxes vertically */
    align-items: center;
    /* Center-align the service boxes */
  }
  .service-box {
    width: 100%;
    /* Full width on smaller screens */
    max-width: none;
    /* Remove max-width on smaller screens */
  }
}

@media (max-width: 480px) {
  .service-box {
    padding: 30px 15px;
    /* Reduce padding for very small screens */
  }
  .service-title {
    font-size: 1.2em;
    /* Smaller font size for titles */
  }
  .service-description {
    font-size: 0.9em;
    /* Smaller font size for descriptions */
  }
}

/* navigation  */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header {
  position: relative;
  padding: 0 2rem;
  background-color: white;
}

header a {
  text-decoration: none;
}

header li {
  list-style: none;
}

.navbar {
  display: flex;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar .logo {
  max-width: 120px;
}

.navbar .links {
  display: flex;
  gap: 60px;
}

.navbar .links li a,
.dropdown_menu li a {
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.navbar .links li a:hover,
.dropdown_menu li a:hover {
  color: grey;
  transition: all 0.2s linear;
}

.nav-btn-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar .toggle_btn {
  color: #000;
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
}

.action_btn {
  background-color: #5f7dff;
  padding: 10px 15px;
  border: none;
  outline: none;
  border-radius: 4px;
  font-size: 16px;
  color: #000 !important;
  font-weight: 600;
}

.nav-email {
  color: #000;
  font-weight: 500;
}

.nav-email:hover {
  color: grey;
  transition: all 0.2s linear;
}

.action_btn:hover {
  background: #dbdbdb;
  transition: all 0.2s linear;
}

.action_btn:active {
  scale: 0.95;
}

.dropdown_menu {
  display: none;
  right: 0;
  position: absolute;
  background: #fff;
  backdrop-filter: blur(15px);
  top: 60px;
  height: 0px;
  width: 100%;
  overflow: hidden;
  transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu li {
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown_menu.open {
  min-height: 360px;
  padding: 15px 15px 30px 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.dropdown_menu .action_btn {
  width: max-content;
  display: flex;
  justify-content: center;
}

.action_btn i {
  padding-right: 10px;
}

.action_btn.email {
  background: #dbdbdb;
}

@media screen and (max-width: 991px) {
  .navbar .links,
  .navbar .action_btn {
    display: none;
  }
  .navbar .toggle_btn {
    display: block;
  }
  .dropdown_menu {
    display: block;
    z-index: 100;
  }
  .nav-email {
    display: none;
  }
  .navbar .logo {
    max-width: 120px;
  }
}

@media screen and (max-width: 425px) {
  .nav-email {
    display: none;
  }
  .navbar .logo {
    max-width: 90px;
  }
}

/* faq section   */

.faq-section {
  padding: 80px 0;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #e5e5e5;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 16px 25px 16px 0;
  color: grey;
  font-size: 18px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #000;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #000;
  border: 1px solid #000;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: #000;
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 220px;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  color: #464646;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-weight: 300;
  margin: 30px 0;
}

/* Popup overlay style */

.popup-overlay {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  z-index: 1000;
  /* Ensure the popup is on top of other content */
}

/* Popup content style */

.popup-content {
  background-color: #fff;
  width: 80%;
  max-width: 700px;
  margin: 10% auto;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #000;
  font-weight: 700;
}

.popup-content h2 {
  color: #000;
  font-size: 35px;
  padding-bottom: 35px;
  text-align: center;
}

.popup-content h3 {
  color: #000;
  font-size: 18px;
  padding-bottom: 10px;
  font-weight: 500;
}

.popup-content p {
  color: #000;
  padding-bottom: 30px;
}

.popup-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popup-img {
  max-width: 400px;
  margin: 0 auto;
}

/* footer  */

footer {
  background: #000;
}

.footer-content {
  padding: 60px 0;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(128, 128, 128, 0.5);
}

.footer-left {
  display: flex;
  gap: 25px;
}

.footer-left a {
  text-decoration: none;
  color: #fff;
}

.footer-right {
  display: flex;
  gap: 15px;
}

.footer-right a {
  color: #fff;
  font-size: 25px;
}

.footer-content a:hover {
  color: grey;
  transition: all 0.3s linear;
}

.copyright p {
  padding: 20px 0;
  text-align: center;
  color: grey;
  font-size: 14px;
}

/* review-section  */

.review-section {
  padding: 80px 0;
}

.review-wrapper h2 {
  text-align: center;
  font-size: 40px;
  color: #000;
}

.review-slider {
  margin-top: 50px;
}

.review-slider .splide__pagination {
  bottom: -10px;
}

.review-slider .splide__pagination__page.is-active {
  background: grey;
}

.review-slider .splide__arrow--prev {
  left: -23px;
}

.review-slider .splide__arrow--next {
  right: -23px;
}

.review-slider .splide__arrow {
  background: transparent;
}

.review-card {
  border-radius: 5px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  min-height: 280px;
  margin: 10px 10px 20px 10px;
  background: #fff;
}

.review-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.2s linear;
}

.review-card p {
  line-height: 1.5;
}

.review-card h5 {
  font-size: 18px;
  font-weight: 500;
  padding-top: 10px;
}

/* service slider  */

.service-slider .service-box {
  width: 100%;
}

.service-container-mobile {
  display: none;
}

.service-slider .splide__pagination {
  bottom: -25px;
}

.service-slider .splide__pagination__page.is-active {
  background: grey;
  transform: scale(1);
  width: 30px;
  border-radius: 5px;
}

#vehicleName {
  text-transform: capitalize !important;
}

.hide-country {
  flex-basis: 100%;
  align-self: flex-start;
  margin: 0 30%;
  text-align: center;
  justify-content: center;
  background: #dbdbdb;
  white-space: nowrap;
  border: 1px solid grey;
}

@media screen and (min-width: 992px) {
  .region.mobile,
  .hide-country {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 30px !important;
  }
  .firstsection {
    height: 100%;
  }
  .vin-search-container {
    padding: 0;
    background: transparent;
    margin-top: 15px;
  }
  .service-container-mobile {
    display: block;
  }
  .services-container {
    display: none;
  }
  .customer-support-stats {
    flex-direction: column;
  }
  .where-we-operate-section {
    flex-direction: column;
  }
  .where-we-operate-text,
  .where-we-operate-images {
    width: 100%;
  }
  .where-we-operate-text h2 {
    font-size: 35px;
  }
  .where-we-operate-text p {
    font-size: 20px;
  }
  .region.desktop {
    display: none;
  }
  .flag-item.mobile img:not(:first-child) {
    margin-left: -15px;
  }
  .review-wrapper h2,
  .customer-support-title {
    font-size: 30px;
  }
  .customer-support-container p {
    width: 100%;
  }
  .footer-content {
    flex-direction: column;
    align-items: start;
    padding: 40px 0;
  }
  .footer-left {
    flex-wrap: wrap;
  }
  .services-section,
  .where-we-operate-section,
  .review-section,
  .customer-support-section,
  .faq-section,
  .contact-section {
    padding: 50px 5%;
  }
  .popup-content {
    margin: 15% auto;
    padding: 25px;
    width: 90%;
  }
  .popup-content h2 {
    font-size: 28px;
  }
  .popup-content p,
  .popup-content h3 {
    text-align: left;
  }
  .container {
    padding: 0;
  }
  footer .container {
    padding: 0 15px;
  }
  .contact-wrapper {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .contact-left,
  .contact-right {
    width: 100%;
  }
  .contact-img svg {
    min-width: unset;
  }
}

@media screen and (max-width: 425px) {
  .popup-img {
    max-width: 300px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .firstsection,
  .background-wrapper {
    height: 100%;
  }
  .box-main {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 50px;
  }
  .firsthalf,
  .secondhalf {
    width: 100%;
  }
  .text-big {
    font-size: 45px;
  }
  .region.desktop {
    display: none;
  }
  .flag-item.mobile img:not(:first-child) {
    margin-left: -15px;
  }
  .where-we-operate-text h2 {
    font-size: 35px;
  }
  .footer-content {
    flex-direction: column;
    align-items: start;
  }
  .contact-wrapper {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .contact-left,
  .contact-right {
    width: 100%;
  }
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .contact-img svg {
    min-width: unset;
  }
}

#loadingAnimation svg {
  width: 100px;
  height: 100px;
  margin: 20px;
  display: inline-block;
}

#loadingAnimation {
  height: 100vh;
  background: #dbdbdb;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 10000000;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.loader {
  display: flex;
  flex-direction: column;
  gap: 80px;
  justify-content: center;
  align-items: center;
}

#loadingAnimation h2 {
  text-align: center;
  font-size: 24px;
  color: #000;
  font-weight: 400;
}

body {
  position: relative;
}

html {
  scroll-behavior: smooth;
}

.loader {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car__body {
  animation: shake 0.2s ease-in-out infinite alternate;
}

.car__line {
  transform-origin: center right;
  stroke-dasharray: 22;
  animation: line 0.8s ease-in-out infinite;
  animation-fill-mode: both;
}

.car__line--top {
  animation-delay: 0s;
}

.car__line--middle {
  animation-delay: 0.2s;
}

.car__line--bottom {
  animation-delay: 0.4s;
}

@keyframes shake {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(3%);
  }
}

@keyframes line {
  0% {
    stroke-dashoffset: 22;
  }
  25% {
    stroke-dashoffset: 22;
  }
  50% {
    stroke-dashoffset: 0;
  }
  51% {
    stroke-dashoffset: 0;
  }
  80% {
    stroke-dashoffset: -22;
  }
  100% {
    stroke-dashoffset: -22;
  }
}

@media screen and (max-width: 767px) {
  .car {
    margin-left: -30px !important;
  }
}
