.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0px 0px 0px;
  background: #f2f2f2;
  background: linear-gradient(
    90deg,
    rgba(242, 242, 242, 1) 0%,
    rgba(194, 190, 190, 1) 10%,
    rgba(222, 210, 166, 1) 100%,
    rgba(237, 221, 83, 1) 46%,
    rgba(227, 226, 211, 1) 48%,
    rgba(235, 235, 223, 1) 100%
  );
  transition: all 0.3s ease;
  /* position: absolute; */
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Adds shadow for better visibility */
}

.site-logo img {
  max-width: 300px;
  width: 100%;
}
img {
  max-width: 100%;
}
/* header.header {
  padding: 15px 0;
} */

header.header .call-outer a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-right: 5px;
}

header.header .call-outer span {
  /* height: 40px; */
  /* display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  margin: auto;
  /* border-radius: 50%; */
  /* background: var(--primary-color); */
  /* font-size: 20px; */
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/* .navigation .navbar {
  padding: 0;
  background: var(--primary-color);
  color: #fff;
  position: absolute;
  top: calc(100% + 15px);
  width: 100%;
  left: 0;
} */

.bottom_header {
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px;
  padding: 0px;
}

.call_div {
  display: flex;
  flex-direction: column;
}
.call_div span,
.call_div a {
  font-size: 20px;
  color: #000; /* adjust as needed */
}

.ringing-phone {
  color: #9b2c3c;
}

.call-outer {
  display: flex;
  padding: 10px 20px; /* space inside the container */
  background-color: white; /* optional background */
}

.call-outer .fa-phone-volume {
  color: #9b2c3c; /* makes icon white */
  font-size: 28px; /* sets height/size of the icon */
  line-height: 1; /* ensures proper vertical alignment */
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* x-offset, y-offset, blur, color */

  transition: transform 0.3s, box-shadow 0.3s;
}

.call-outer .call_div span {
  font-size: 12px;
}

.call-outer .navbar-toggler {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
}

.call-outer .navbar-toggler:hover {
  color: #ffcc00;
}

/* Optional - Responsive: stack on mobile */
@media (max-width: 576px) {
  .call-outer {
    flex-direction: column;
    align-items: flex-start;
    /* gap: 10px; */
  }
}

.navigation ul.navbar-nav {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.navigation ul.navbar-nav a.nav-link {
  color: #020202;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 5px;
}
.navigation .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  background: #9b2c3c;
  height: 2px;
  width: 0px;
  transition: all 0.3s ease;
}
.navigation .navbar-nav li {
  position: relative;
}
.navigation .navbar-nav .nav-link:hover {
  color: #9b2c3c;
}
.navigation .navbar-nav .nav-link:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
.navbar-toggler {
  background: #fff;
  padding: 1px 6px;
  border: none;
  margin: 5px;
  float: right;
  margin-left: auto;
}
.navigation .navbar-collapse.collapse.show .navbar-nav li {
  margin-bottom: 0;
}
.navigation .navbar-collapse.collapse.show {
  padding: 0 24px;
  background: #dad0a9;
  border-radius: 0px 0px 15px 15px;
}
.landing-page section.section-padding {
  padding: 60px 0;
}

.landing-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  padding: 8% 0;
}
.landing-banner .container {
  position: relative;
}
.landing-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(
    to right,
    #000000bf,
    #04040491,
    #0c02026b,
    #1203037d
  );
  top: 0;
  left: 0;
}

.banner-text-wrap {
  max-width: 650px;
}
.landing-banner h1 {
  color: #fff;
  font-weight: bold;
  font-size: 55px;
}
.landing-banner p {
  color: #fff;
}
.landing-banner p {
  font-size: 24px;
  padding: 20px 0;
}
.banner-form {
  width: 100%;
}
.banner_bottom_right {
  background: #f3eeee;
  color: black;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: rgb(255 255 255 / 33%) 2px 3px 6px 0px,
    rgb(255 255 255 / 30%) -5px -4px 6px -1px;
}
.banner_bottom_right form {
  padding: 15px 25px;
}
.form_heading h4 {
  background: var(--primary-color);
  padding: 22px 15px 15px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 30px;
}
select.form-select {
  background-color: transparent;
  color: black;
}
.banner_bottom_right form .form-control {
  background: transparent;
  color: black;
  margin: 10px 0 !important;
}
.banner_bottom_right form input::placeholder {
  color: black !important;
  font-size: 13px;
}
.banner_bottom_right form #FormControlTextarea1 {
  background: transparent;
  color: black !important;
}
.banner_bottom_right form #FormControlTextarea1::placeholder {
  color: black !important;
  font-size: 13px;
}

.banner_bottom_right .form-check a {
  color: black;
  text-decoration: none;
}
.submit_btn input.form_btn {
  color: black;
  padding: 11px 35px;
  background-color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  transition: 0.4s;
  text-decoration: none;
  border: none;
  border-radius: 30px;
}
.submit_btn input.form_btn:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.sec-content .main-heading {
  margin-bottom: 10px;
}
.sec-content p {
  margin-bottom: 20px;
}
.sec-content h4 {
  font-weight: 600;
  color: #222;
  padding-top: 10px;
}
.sec-image img {
  width: 100%;
  margin-bottom: 15px;
}
.list-style li {
  position: relative;
  padding: 0 0 15px 20px;
}

.list-style :before {
  content: "";
  background: #9b2c3c;
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 10px;
}
/* 
.about {
  position: relative;
} */

#aboutus {
  /* height: 20vh; */
  border: 2px solid #9b2c3c;
}

.owl-item {
  width: 100%;
}

.image-crousal {
  border: 2px solid black;
  width: 80%;
}

#aboutus .owl-nav {
  display: none !important
;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

#aboutus .owl-dots {
  display: none;
}

@media (max-width: 767px) {
  .landing-page h4 {
    text-align: center;
    font-size: 20px;
  }
}

.column-reverse {
  padding: 0 15px;
}
.choose_left figure {
  width: 63px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px;
  border-radius: 50%;
  position: absolute;
  left: -33px;
  top: 50%;
  transform: translate(0%, -50%);
}
.choose_left {
  position: relative;
  border: 1px solid #a9a9a9;
  border-radius: 23px;
  padding: 11px 24px;
  margin-bottom: 17px;
}
.choose_left::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  background: #df6e01;
  height: 48px;
  width: 2px;
  transform: translate(0px, -50%);
}
.choose_left:nth-child(2)::before {
  background: #00548d;
}
.choose_left:nth-child(3)::before {
  background: #286708;
}
.choose_left:nth-child(4)::before {
  background: #cd0a58;
}

.choose_left .yellow {
  background: #df6e01 !important;
}
.choose_left .blue {
  background: #00548d !important;
}
.choose_left .green {
  background: #286708 !important;
}
.choose_left .pink {
  background: #cd0a58 !important;
}

.choose_left article {
  margin-left: 27px;
}
.choose_left p {
  margin-bottom: 5px;
}
.choose_left h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.choose_left figure img {
  filter: brightness(1) invert(1);
}
.choose_right {
  border: 1px solid #a9a9a9;
  border-radius: 23px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  background: #dfe2e7;
  box-shadow: 0 0 10px rgb(0 0 0 / 13%);
}
.choose_right img {
  width: 100%;
  /* max-height: 700px; */
  border-radius: 23px;
  /* border-radius: 50%; */
  /* border: 3px solid #fff; */
  /* box-shadow: 0 0 10px rgb(0 0 0 / 13%); */
  /* margin-bottom: 30px; */
}

.services-icon {
  width: 100px;
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 50%;
  margin: 0 auto;
  height: 100px;
  margin-top: -50px;
  background: #fff;
}
.services-col {
  border: 1px solid #9b2c3c;
  padding: 0 25px 25px;
  margin: 37px 0;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-col:hover {
  background-color: var(--bg-alt);
  transform: translateY(-5px) scale(1.03); /* lifts + slightly enlarges */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* adds shadow */
}
.our-services .col-12 {
  display: flex;
}
.services-col h4 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0 10px;
}
.services-icon img {
  max-width: 100%;
}
.home-testimonial .author .user {
  width: 70px;
  height: 70px;
}
.author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 160px;
}
.home-testimonial .author .user {
  width: 70px;
  height: 70px;
  margin: 0 0 20px;
}
.landing-testimonials #hometesti .-owl-item {
  height: 100%;
  padding: 20px 20px 20px;
  position: relative;
}
.landing-testimonials .owl-carousel .owl-item {
  border-radius: 20px;
  background: #444;
}

.pricing .nav-tabs .nav-link {
  background: var(--secondry-color);
  color: #fff;
  border-radius: 0;
  border: none;
  padding: 11px 30px;
  position: relative;
  width: 100%;
}
.pricing .nav-tabs li {
  width: 100%;
}
.pricing .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
}
.pricing .tab-content {
  border: 1px solid #dee2e6;
  border-top: none;
  padding: 20px;
  background: #e7e6dc;
}
.pricing .hour {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.pricing .hour h4 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
}

.baggage .amount {
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  /* padding: 10px 0 150px; */
  max-width: 100%;
  /* margin: auto auto -140px; */
  font-size: 29px;
  margin-bottom: 13px;
}
.baggage img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
}
/*  */
.baggage {
  /* adjust size as needed */
  display: inline-block;
  perspective: 1000px; /* adds depth for 3D flip */
  margin: 20px;
}

.baggage:hover img {
  transform: rotateY(45deg) scale(1.1); /* flips image on hover */
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
}

.mover_day_left img {
  margin-bottom: 20px;
}
.pricing .name {
  color: #132040;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  margin: 10px 0 0px;
  text-transform: uppercase;
}
.pricing .quote-button span {
  display: block;
  font-size: 20px;
  color: #4f4f4f;
}
.pricing .box {
  text-align: center;
  width: 94%;
}
.pricing .bottom {
  padding: 15px 15px;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  margin: 10px 0px 15px;
}
.caption {
  font-size: 11px;
  font-weight: 600;
}
.bottom img {
  filter: brightness(0%);
  height: 30px;
}
.pricing .bottom .row .rect:nth-child(2) {
  border-left: 1px solid #d2d2d2;
  border-right: 1px solid #d2d2d2;
}
.pricing .bottom .context span {
  font-size: 26px;
  margin-left: 8px;
}
.theme-btn {
  color: #fff;
  padding: 11px 35px;
  background-color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  transition: 0.4s;
  text-decoration: none;
  border: none;
  border-radius: 30px;
}
.theme-btn:hover {
  color: #fff;
  background-color: var(--secondry-color);
}
.pricing .box .price {
  font-size: 40px;
  font-weight: bold;
  color: var(--primary-color);
}
.pricing .box .price span span {
  font-weight: normal;
  font-size: 25px;
}
.pricing .nav-tabs .nav-link.active {
  background: #9b2c3c;
  color: #fff;
}
.pricing .nav-tabs .nav-link:after {
  content: "";
  border-top: 10px solid white;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  left: 0;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
}
.pricing .nav-tabs .nav-link.active:after {
  border-top: 10px solid var(--primary-color);
}

.sec-content p,
.list-style li,
.choose_left p,
body {
  color: #222;
  font-size: 16px;
}
.landing-page .main-heading .head2 {
  font-size: 46px;
}

ul.footer-menu.service li {
  width: 50%;
  float: left;
}

.banner_bottom_right form .form-control {
  background: #f3eeee;
  color: black;
  margin: 10px 0 !important;
}
.user1 {
  display: none;
}
.author h3 {
  font-size: 23px !important;
  margin-bottom: 33px;
}
.choose_right img {
  height: 450px;
  object-fit: cover;
}
@media (min-width: 1400px) {
  .choose_right img {
    height: 450px;
    object-fit: cover;
  }
}
.menutooglebar {
  display: none;
}
.home-testimonial .owl-carousel .fa-star {
  color: gold;
}

@media (max-width: 1200px) {
  header.header .call-outer a {
    font-size: 23px;
  }
}

@media (max-width: 1024px) {
  header.header .call-outer a {
    font-size: 18px;
  }
  span.google-img {
    display: none !important;
  }
  /* header.header .call-outer span {
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    margin: auto;
    border-radius: 50%;
    background: var(--primary-color);
    font-size: 14px;
  } */

  .form_heading h4 {
    font-size: 20px;
  }
  .landing-banner h1 {
    font-size: 44px;
  }
  .landing-page .main-heading .head2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .column-reverse {
    padding: 0;
  }
  .landing-banner h1 {
    font-size: 28px;
  }
  .banner-text-wrap {
    text-align: center;
  }
  .main-heading .head2,
  .main-heading .head2 span {
    font-size: 24px;
  }
  .section-padding {
    padding: 40px 0px;
  }
  .column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .choose_left {
    margin-left: 30px;
  }

  .choose_right img {
    /*    width: 300px; */
    height: 300px;

    margin-bottom: 5px;
  }

  .pricing .nav-tabs {
    display: flex;
    flex-wrap: wrap;
  }
  .pricing .nav-tabs li {
    width: 50%;
    flex: 1 0 auto;
  }
  .pricing .bottom .row .rect:nth-child(2) {
    border: none;
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    padding: 10px 0;
    margin: 10px 0;
  }
  .pricing .box {
    padding-bottom: 30px;
  }

  .landing-page .main-heading .head2 {
    font-size: 24px;
  }
  ul.footer-menu.service li {
    width: 100%;
    float: left;
  }
  .baggage img {
    max-width: 450px;
    max-width: 88%;
  }

  .landing-page section.section-padding {
    padding: 40px 0;
  }
  .menutooglebar {
    display: block;
  }

  ul#myTab li {
    margin: 7px;
  }
}

.move_day_div,
.move_day,
#services {
  background-color: #f2f2f2;
  background: radial-gradient(
    circle,
    rgba(242, 242, 242, 1) 0%,
    rgba(255, 255, 240, 1) 2%,
    rgba(222, 220, 213, 1) 100%,
    rgba(194, 190, 190, 1) 10%,
    rgba(237, 221, 83, 1) 46%,
    rgba(222, 210, 166, 1) 100%,
    rgba(227, 226, 211, 1) 100%
  );
}

.move_day img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .move_day {
    display: flex;
    align-items: stretch;
  }
  .move_day > div {
    flex: 1;
  }
  .move_day img {
    width: 85%;
    height: 600px;
    object-fit: cover;
  }
}

.mover_day_right {
  margin: 0 auto; /* centers the whole section */
  margin-right: 30px;
  padding: 20px 30px; /* spacing around content */
  padding-bottom: 0px;
  background: #ffffff; /* white background for contrast */
  border-radius: 10px; /* smooth corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* subtle shadow */
  color: #333; /* readable text color */
  line-height: 1.7; /* nice line spacing */
  text-align: justify; /* aligns both left & right sides of text */
  font-family: "Poppins", Arial, sans-serif;
}

.mover_day_right ul.list-style {
  list-style: none;
  padding-left: 25px; /* indent for bullets */
  margin-bottom: 20px;
}

.mover_day_right ul.list-style li {
  margin-bottom: 0px;
  list-style: none;
}

.mover_day_right strong {
  color: #000; /* emphasize bold titles */
}

.mover_day_right .main-heading h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-top: 25px;
  margin-bottom: 10px;
  border-bottom: 2px solid #e6e6e6;
  padding-bottom: 5px;
}

.mover_day_right p {
  margin-top: 15px;
  font-size: 1rem;
}
#exampleFormControlTextarea1::placeholder {
  color: black !important; /* Change this to your desired color */
  opacity: 1; /* Ensures full opacity in some browsers */
}

@media (max-width: 1200px) {
  .navbar {
    padding: 0px;
  }

  .mover_day_right ul.list-style {
    list-style: none;
    padding-left: 1px;
    margin-bottom: 4px;
  }
  .mover_day_right .main-heading h3 {
    margin: 0;
    padding: 0;
  }
  .mover_day_right .list-style li {
    padding: 0px 0 9px 15px;
  }
}
