* {
  margin: 0;
  padding: 0;
  font-family: "Mulish", sans-serif;
  scroll-behavior: smooth;
}
img {
  width: 100%;
}
.top-strip {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.contact-info .phone,
.contact-info .email {
  margin: 0 10px;
}
.contact-info .phone a,
.contact-info .email a {
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-info .phone,
  .contact-info .email {
    margin: 5px 0;
  }
}
/* navbarrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
.navbar {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(to right, rgb(241, 241, 241), white);
  box-shadow: 1px 1px 4px #d8d8d8;
  /* overflow: hidden; */
}
.navbar::after {
  content: "";
  width: 43%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 5%;
  background-color: #fea815;
  transform: skewX(-20deg);
  z-index: -1;
  border-left: 3px solid rgb(117, 117, 117);
  border-right: 3px solid rgb(117, 117, 117);
}
.navbar img {
  width: 100px;
}
.navbar .navbar-nav {
  margin-left: auto;
  gap: 20px;
  margin-right: 0 !important;
  /* background-color: red; */
  padding: 15px 0;
}
.navbar-light .navbar-nav .nav-link {
  color: rgb(0, 0, 0) !important;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
}
.navbar-fixed {
  position: fixed !important;
  top: 0;
  width: 100%;
  /* background-color: black; */
  background-color: #ffffff;
  z-index: 10;
  animation: nav-animation 0.4s ease-in-out;
}
.navbar-light .navbar-toggler {
  color: rgba(255, 210, 7, 0.39) !important;

  border-color: rgb(0 0 0 / 0%) !important;
}

@keyframes nav-animation {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (max-width: 360px) {
  .navbar img {
    width: 80px;
  }
}

.dropdown-menu {
  display: none; /* Hide by default */
  position: absolute;
  top: 90%; /* Position below the nav item */
  left: 0;
  background-color: rgba(255, 198, 41, 0.219);
  /* border: 2px solid #585858 !important; */
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  overflow-y: scroll !important;
  height: 60vh;
  transition: all 1s ease-out !important;
  border-top: 3px solid #444 !important;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
  background-color: #ececec;
  border-radius: 5px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-color: #bdbdbd;
}

.dropdown-menu .dropdown-item {
  padding: 12px 16px;
  text-decoration: none;
  color: black;
  display: block;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f1f1f1;
}

/* Show the dropdown on hover */
.nav-item:hover .dropdown-menu {
  display: block;
}

/* sliderrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
.main {
  height: 95vh;
  width: 100%;
  position: relative;
  /* top: 100px; */
}
.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide {
  overflow: hidden;
}
.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.247), rgba(0, 0, 0, 0));
  z-index: 2;
}
.slide .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.slide .image-data {
  position: absolute;
  top: 25%;
  left: 10%;
  /* left: 10%;
    transform: translate(-50%, -50%); */
  /* text-align: center; */
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.image-data span.text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.image-data h2 {
  font-size: 55px;
  font-weight: 600;
  color: #fff;
}

.banner .card-btn {
  padding-left: 35px;
  padding-right: 35px;
}

/* swiper button css */
.nav-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #ac0f1400;
  padding: 10px;
}
.nav-btn:hover {
  background: rgba(255, 255, 255, 0);
}
.swiper-button-next {
  right: 50px;
}
.swiper-button-prev {
  left: 50px;
}
.nav-btn::before,
.nav-btn::after {
  font-size: 20px;
  color: #fff;
}
.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}
.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #c87e4f;
}

@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }
}
@media screen and (max-width: 360px) {
  .image-data h2 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
  }
  .slide .image-data {
    left: 5%;
  }
  .main {
    height: 70vh;
  }
}
/* informationrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
.info-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fea815;
  color: #fff;
  /* padding: 20px; */
  overflow: hidden;
}
.info-box {
  flex: 1;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.middle-box {
  flex: 1;
  background-color: #000000;
  padding: 22px;
  text-align: center;
  transform: skewX(-20deg);
}
.middle-box-inner {
  transform: skewX(20deg);
}
.phone-number a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: white;
}
.phone-number a:hover {
  color: white;
}
.para {
  font-size: 20px;
  font-weight: bold;
}
.info-section img {
  width: 40px;
}
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    padding: 10px;
  }
  .info-box,
  .middle-box {
    flex: none;
    min-width: unset;
    width: 100%;
  }
  .middle-box {
    transform: none;
  }
  .middle-box-inner {
    transform: none;
  }
}

/* whatrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
.what {
  padding: 70px 0;
  background-color: #ffffff;
}
.what .card {
  background-color: #f1f1f1;
  padding: 15px;
  margin: 10px !important;
  border: none;
  border-radius: 6px;
}
.what .card .image {
  border-radius: 6px;
  overflow: hidden;
}
.what .card .image img {
  border-radius: 6px;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.what .card:hover img {
  transform: scale(1);
}
.what .card h4 {
  font-size: 23px;
  margin: 10px 0;
  font-weight: 700;
  color: #a80000;
  letter-spacing: 1px;
}
.what .card p {
  font-size: 15px;
  color: rgb(63, 63, 63);
  /* margin: 10px 0; */
  font-weight: 600;
}
.common-title h2 {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5em;
  padding-bottom: 15px;
  position: relative;
  text-transform: capitalize;
  color: #5e5e5e;
}
.common-title h2 span {
  color: #000000;
}

.common-title h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #fea815;
  z-index: 2;
}
.common-title h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 95%;
  max-width: 255px;
  background-color: #333;
}

.card-btn {
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 700;
  color: #fff;
  -webkit-clip-path: polygon(
    0 0,
    0 0,
    100% 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    15px 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    0 0,
    100% 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    15px 100%,
    0 100%
  );
  height: 40px;
  font-size: 0.7rem;
  line-height: 14px;
  letter-spacing: 1.2px;
  transition: 0.2s 0.1s;
  background-image: linear-gradient(90deg, #181818, #fea815);
  border: 0 solid;
  overflow: hidden;
}

.card-btn:hover {
  cursor: pointer;
  transition: all 0.3s ease-in;
  padding-right: 30px;
  padding-left: 30px;
}

/* text-elementrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
.text-element {
  padding: 70px 0;
  /* background-color: #8a7979; */
  background-image: url("..//images/ele-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}
.text-element::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000cc;
  z-index: 1;
}
.text-element h2 {
  color: white;
  position: relative;
  z-index: 2;
}
/* whorrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
.who {
  padding: 70px 0;
  background-color: #f1f1f1;
  overflow: hidden;
}
.who p {
  font-size: 17px;
  margin-top: 12px;
}
/* whyrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
.why {
  padding: 70px 0;
  /* background-color: #2b2b2b; */
  color: rgb(211, 211, 211);
  background-image: url("../images/whybg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000ee;
  z-index: 1;
}
.why .container {
  position: relative;
  z-index: 2;
}
.why .common-title h2 span {
  color: #ffffff;
}
.why .why-wrapper .image img {
  width: 80px;
}
.why .why-wrapper h4 {
  margin: 15px 0;
}
.why .why-wrapper p {
  color: #878787;
}

/* projectrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */

.project {
  padding: 70px 0;
  background-color: rgb(235, 235, 235);
  background-image: url("..//images/project-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}
.project::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffffe1;
  top: 0;
  right: 0;
  z-index: 1;
}
.project span {
  font-weight: 700;
  font-size: 40px;
  position: relative;
}
.project span::after {
  content: "+";
  position: absolute;
  font-size: 40px;
  font-weight: 700;
  top: -6px;
  right: -26px;
}
.project p {
  font-weight: 500;
  font-size: 22px;
}
.project .text-center {
  position: relative;
  z-index: 2;
}

/* footerrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */

footer {
  background: linear-gradient(to bottom, black 10%, #232323);
  color: #fff;
  padding: 20px 0 0 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
  /* max-width: 1200px; */
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}
.footer-contact i {
  margin-right: 10px;
  color: #fea815;
}

.footer-section h4 {
  color: #ffcc00;
  margin-bottom: 15px;
}
.f-ul {
  gap: 40px;
}

.footer-section p,
.footer-section ul,
.footer-section li {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-section .socials a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

.footer-section .socials a i {
  font-size: 20px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #ffcc00;
}

.footer-bottom {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  border-top: 1px solid #444;
}

.footer-section .socials i {
  padding: 7px;
  font-size: 18px;
  background-color: #e49000;
  border-radius: 50%;
  /* margin-right: 5px; */
  color: rgb(10, 10, 10);
  transition: all 0.3s ease;
}

/* scroll up btnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn */
#scroll {
  position: fixed;
  right: 40px;
  bottom: 25px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #cc8100;
  text-indent: -9999px;
  display: none;
  transform: scale(1);
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  transition: all 0.3s ease;
  z-index: 999;
}
#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}
#scroll:hover {
  background-color: #6d6d6d;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/* fixed iconnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn */

.gmb {
  width: 45px;
  height: 45px;
  background-color: rgba(21, 255, 0, 0);
  position: fixed;
  left: 40px;
  bottom: 137px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  border: 1px solid rgb(68, 68, 68);
}
.call {
  width: 45px;
  height: 45px;
  background-color: rgb(0, 0, 0);
  position: fixed;
  left: 40px;
  bottom: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  border: 1px solid rgb(83, 83, 83);
}
.whatsapp {
  width: 45px;
  height: 45px;
  background-color: rgba(21, 255, 0, 0);
  position: fixed;
  left: 40px;
  bottom: 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  border: 1px solid rgb(87, 87, 87);
}
@media screen and (max-width: 500px) {
  #scroll {
    position: fixed;
    right: 25px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
  .whatsapp {
    width: 40px;
    height: 40px;
    left: 25px;
    bottom: 20px;
  }
  .call {
    width: 40px;
    height: 40px;
    left: 25px;
    bottom: 75px;
  }
  .gmb {
    width: 40px;
    height: 40px;
    left: 25px;
    bottom: 132px;
  }
}

/* breadcrumbs//////////////////////////////////////////////////////////////////////////////////////////////// */
.breadcrumbs {
  width: 100%;
  height: 50vh;
  background-image: url("..//images/breed.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  margin-bottom: 0 !important;

  position: relative;
  z-index: 1;
  /* padding: 50px; */
}
.breadcrumbs::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000da;
  /* z-index: 1; */
}

.breadcrumbs h1 {
  width: 100%;
  position: relative;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fea815;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background-image: url("..//images/roadside-logo.png");
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(245, 222, 179, 0.295); */
}
@media screen and (max-width: 709px) {
  .breadcrumbs {
    width: 100%;
    height: 45vh;
  }
}
/* /* 24hrs//////////////////////////////////////////////////////////////////////////////////////////////// */
.car-hours {
  padding: 70px 0;
}
.car-hours .image {
  position: sticky;
  top: 25%;
}

.services-container {
  background-color: #fea815;
  padding: 20px 5px 2px;
  border-radius: 7px;
  /* width: 300px; */
  text-align: center;
  position: sticky;
  top: 25%;

  /* border: 3px solid black; */
}

.services-container h2 {
  color: #ac0f15;
  margin-bottom: 20px;
}

.service-item {
  display: block;
  padding: 10px 15px;
  margin: 5px 0;
  color: #fff;
  background-color: #444;
  text-decoration: none;
  /* border-radius: 5px; */
  transition: background-color 0.3s;
}

.service-item:hover {
  background-color: #666;
  color: white;
}

/* contact page ////////////////////////////////////////////////////////////////////////////////////// */
.contact-form-section {
  padding: 70px 0;
  background-color: #ffffff;
  overflow: hidden;
}
.contact-form-section .contact-form {
  background-color: #ffffff00;
}
.contact-form-section .contact-form .input1 {
  display: flex;
  gap: 10px;
}

.contact-form-section .contact-form .input1 input {
  width: 50%;
  height: 50px;
  margin-bottom: 25px;
  background-color: transparent;
  border: 1px solid rgb(95, 95, 95);
  padding-left: 20px;
}
.contact-form-section .contact-form .input1 input,
.contact-form-section .contact-form textarea:focus {
  outline: none;
  border: 1px solid rgb(95, 95, 95);
}

.contact-form-section .contact-form textarea {
  width: 100%;
  height: 200px;
  margin-bottom: 25px;
  background-color: transparent;
  padding-left: 20px;
  padding-top: 20px;
}
.contact-form-section .form-contact-info .icon-text {
  display: flex;
  gap: 20px;
  align-items: first baseline;
}
.contact-form-section .form-contact-info .icon-text i {
  color: #fea815;
}
.contact-form-section .form-icon {
  margin-top: 20px;
}
.contact-form-section .form-icon i {
  border: 1px solid #fea815;
  padding: 15px;
  color: rgb(27, 27, 27);
  transition: background-color 0.2s;
}
.contact-form-section .form-icon i:hover {
  background-color: #fea815;
}

.map {
  /* padding: 50px 0; */
  position: relative;
}
.map iframe {
  position: relative;
  margin: 0;
  padding: 0;
}
.map .common-title {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #fea915d5;
  padding: 10px 20px;
}
.map .common-title h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #5e5e5e;
  z-index: 2;
}
@media screen and (max-width: 909px) {
  .map .common-title {
    display: none;
  }
}

/* about page ////////////////////////////////////////////////////////////////////////////////////// */
.about-section {
  padding: 70px 0;
  overflow: hidden;
}
.que-ans {
  padding: 20px 0 50px;
  overflow: hidden;
}
.que-ans .accordion-button {
  color: #000000;
  background-color: #fea91500;
  border: 2px solid #fea815;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
  margin-bottom: 4px;
  text-transform: uppercase;
  color: rgb(80, 80, 80);
  font-weight: 600;
}

.que-ans.accordion-button.collapsed {
  background-color: #fea815;
  color: black;
}
.que-ans .accordion-button:not(.collapsed) {
  background-color: #fea815;
  color: rgb(46, 46, 46);
}
.que-ans .accordion-button:not(.collapsed):focus {
  outline: none !important;
  border: none !important;
}
.que-ans .accordion-button:hover {
  background-color: #fea815;
}
.que-ans .accordion-item {
  background-color: #fff;
  border: 1px solid rgb(255 3 3 / 0%) !important;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #dc354600;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #84202800 !important;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";

  background-image: url("..//images/add.png") !important;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.4s ease-in-out !important;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-image: url("..//images/minus.png") !important;
}

/* gallery page ////////////////////////////////////////////////////////////////////////////////////// */
.gallery {
  padding: 70px 0;
}
.gallery .image {
  overflow: hidden;
  position: relative;
}

.gallery .image img {
  transition: all 0.5s ease-in-out;
}
.gallery .image img:hover {
  transform: scale(1.1);
}
