/* Reset */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

/* Full-width header containers */
.top-bar, .main-header {
    width:100%;
}

/* Container - full width without left/right margin */
.container {
    max-width:1140px;
    margin:0 auto;
    padding:0 15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

/* Top Bar */
.top-bar {
    background:#1B1B1B;
    color:#fff;
    font-size:14px;
    padding:18px 0;
}

.top-bar .top-left a, .top-bar .top-right a {
    color:#fff;
    text-decoration:none;
}

.top-bar .top-left {
    display:flex;
    align-items:center;
    gap:5px;
}

.top-bar .top-right .call-btn {
    background:#C6AA72;
    padding:5px 12px;
    border-radius:10px;
    color:#000;
    text-decoration:none;
    font-weight:600;
}

.top-bar .top-right .call-btn:hover {
    background:#b39155;
}
.call-btn {
    background: #C6AA72;
    color: #000;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 rgba(198,170,114,0);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(198,170,114,0.7);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 rgba(198,170,114,0);
    }
}

/* Apply animation */
.call-btn {
    animation: pulse 1.5s infinite;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  position: relative; 
}
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile Menu */
@media (max-width:768px){

  .hamburger {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
  }

  /* Hide horizontal menu by default */
  .nav-menu ul {
    flex-direction: column;
    position: absolute;
    top: 100%;  /* below header */
    left: 0;
    width: 100%;
    background: #fff;  /* Menu background white */
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    max-height: 0; /* hidden initially */
    transition: max-height 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-menu ul li {
    margin: 15px 0;
  }

  .nav-menu ul li a {
    color: #000 !important; 
    font-size: 18px;
    text-decoration: none;
  }

  /* Active menu - slide down */
  .nav-menu.active ul {
    max-height: 500px; /* adjust if many menu items */
  }

  /* Hide horizontal flex on mobile */
  .nav-menu ul {
    display: flex;
  }
}

/* Button style */
.btnstyle1 {
    display: inline-block;
    padding: 5px 15px;
    background: #337ab7;
    border: 1px solid rgba(221, 221, 221, 0.42);
    max-width: 220px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-top: 20px;
    letter-spacing: 1px;
    font-family: "Open Sans", Roboto, sans-serif;
    text-transform: capitalize;
    text-decoration: none;
}

.btnstyle1:hover {
    color: #000 !important;
    background-color: #c6aa72;
}

/* Carousel */
.carousel-inner img {
    width: 100%;
    height: auto;
}

.carousel-caption {
    text-align: left;
    bottom: 20%;
}

.carousel-caption h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.carousel-caption p {
    font-size: 17px;
    color: #fff;
    line-height: 1.5;
}

/* Top bar form section */
.banner-form-setting-area {
    padding: 60px 0;
}

.row.column-div {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .row.column-div {
        flex-direction: column-reverse;
    }

    .carousel-caption h2 {
        font-size: 28px;
    }

    .carousel-caption p {
        font-size: 15px;
    }

    .mt-txt {
        text-align: center;
    }

    .btnstyle1 {
        margin: 10px 5px 0 0;
    }
}

/* Overlay for carousel */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Fix modal overflow */
.modal-body {
    max-height: 60vh;
    overflow-y: auto;
}
/* Fleet Section Styles */
.fleet-section {
  padding: 80px 20px;
  background-color: #F8F8F8;
  text-align: center;
  font-family: Arial, sans-serif;
}

.fleet-heading h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 10px;
}

.fleet-heading h3 {
  font-size: 22px;
  color: #4CA4F9;
  margin-bottom: 20px;
}

.fleet-heading p {
  font-size: 16px;  
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #C6AA72;
  margin: 0 auto 20px;
  border: none;
  border-radius: 2px;
}

/* Fleet Grid */
.fleet-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Each Fleet Item */
.fleet-item {
  flex: 1 1 calc(25% - 20px);
  min-width: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Fleet Image */
.fleet-image {
  width: 100%;
  padding-top: 90%; /* taller image */
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 10px;
}

/* Overlay Text */
.fleet-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px 20px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

.fleet-overlay h4,
.fleet-overlay p {
  margin: 0;
  padding: 0;
  text-align: center;
}

.fleet-overlay h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: bold;
}

.fleet-overlay p {
  font-size: 14px;
  line-height: 1.5;
}

/* Overlay hover effect */
.fleet-item:hover .fleet-overlay {
  background: rgba(0,0,0,0.7);
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .fleet-item {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (max-width: 992px) {
  .fleet-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .fleet-item {
    flex: 1 1 100%;
  }
}
 .check li:before {
    color: #FF904B !important;
  }

  .call-to-action {
    background: #FF904B !important;
  }

  .box-setting-area ul.list-setting-area li i {
    padding-right: 4px !important;
  }

  .box-setting-area ul.list-setting-area {
    list-style: none !important;
    background: #000 !important;
    color: #fff !important;
    padding: 10px !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .box-setting-area ul.list-setting-area li {
    display: inline-block !important;
    margin: 0 6px !important;
    font-size: 13px !important;
  }

  .box-setting-area h3.vehicle-setting {
    text-align: center !important;
    margin: 0 !important;
    padding: 7px !important;
    background: #C6AA72 !important;
    font-size: 18px !important;
  }
    .box-setting-area p.vehicle-setting {
    text-align: center !important;
    margin: 0 !important;
    padding: 5px !important;
    background: #C6AA72 !important;
  }


  .box-setting-area img {
    padding: 10px 10px !important;
    margin-bottom:15px;
  }

  .box-setting-area {
    /* background: #f2f2f2 !important; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    margin-top: 30px !important;
    padding:40px;
  }
  .box-setting-area {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.box-setting-area:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ==========================
   FOOTER STYLING
========================== */

#footer-area-setting {
  background: #000; /* dark elegant background */
  color: #fff;
  padding: 60px 0 0;
  font-family: "Poppins", sans-serif;
}

#footer-area-setting .footer-logo img {
  max-width: 160px;
}

#footer-area-setting p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 10px;
}

#footer-area-setting h4.h {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

#footer-area-setting h4.h::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: #bfa76f; /* gold accent */
}

#footer-area-setting ul.foot-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer-area-setting ul.foot-ul li {
  margin-bottom: 8px;
}

#footer-area-setting ul.foot-ul li a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#footer-area-setting ul.foot-ul li a:hover {
  color: #bfa76f;
  padding-left: 5px;
}

#footer-area-setting .fa {
  color: #bfa76f;
  margin-right: 8px;
}

.footer-bottom {
  background: #111;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #222;
}

.footer-bottom p.copy {
  margin: 0;
  color: #999;
  font-size: 14px;
}

.footer-bottom ul.copy {
  list-style: none;
  margin: 0;
  padding: 0;
  float: right;
  display: flex;
  gap: 15px;
}

.footer-bottom ul.copy li {
  color: #999;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-bottom ul.copy li:hover {
  color: #bfa76f;
}

/* Responsive */
@media (max-width: 767px) {
  #footer-area-setting {
    text-align: center;
  }
  .footer-bottom ul.copy {
    float: none;
    justify-content: center;
    margin-top: 10px;
  }
  .footer-bottom p.copy {
    text-align: center;
  }
}

.review-item {
    text-align: center;
    padding: 30px 40px;
}
.review-stars {
    color: #f4c150;
    font-size: 20px;
    margin-bottom: 10px;
}
.review-name {
    font-weight: bold;
    margin-top: 10px;
    font-size: 17px;
}

.box-setting-area {
    position: relative;
    overflow: hidden;
    margin-top: 30px !important;
    margin-bottom: 50px !important;
    padding: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 8px;
    background: #fff;
}

.box-setting-area:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.box-setting-area img {
    width: 100%;
    display: block;
}
