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

body {
  font-family: Arial, sans-serif;
}

/* Top Header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #012c18; /* Blue gradient tone */
  color: white;
  flex-wrap: wrap;
}

.header-left span {
  margin-right: 15px;
  font-size: 14px;
}

.header-left i {
  margin-right: 5px;
  color: #ffcc00;
}

.header-center h1 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.header-right a {
  color: white;
  margin-left: 10px;
  font-size: 16px;
  transition: color 0.3s;
}

.header-right a:hover {
  color: #ffcc00;
}

/* Responsive */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    text-align: center;
  }
  .header-left, .header-right {
    margin: 5px 0;
  }
  .header-center h1 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .header-left span {
    display: block;
    margin-bottom: 5px;
  }
  .header-right a {
    font-size: 14px;
    margin: 0 5px;
  }
}

.header-center h1 {
  font-size: 22px;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spn{
    color: #ffcc00;
}

.flight-icon {
  color: #ffcc00;
  font-size: 20px;
}

.flight-icon.left {
  transform: rotate(-20deg);
}

.flight-icon.right {
  transform: rotate(20deg);
}

/* Optional: animation for moving flight icons */
@keyframes fly-left {
  0% { transform: translateX(0) rotate(-20deg); }
  50% { transform: translateX(-5px) rotate(-25deg); }
  100% { transform: translateX(0) rotate(-20deg); }
}

@keyframes fly-right {
  0% { transform: translateX(0) rotate(20deg); }
  50% { transform: translateX(5px) rotate(25deg); }
  100% { transform: translateX(0) rotate(20deg); }
}

.flight-icon.left {
  animation: fly-left 2s infinite ease-in-out;
}

.flight-icon.right {
  animation: fly-right 2s infinite ease-in-out;
}

/* Menu section css */
/* ---------- Base Navbar Styles ---------- */
.navbar { 
    padding: 10px 0; 
    
} .nav-link { 
    font-weight: 600 !important; 
    text-align: start !important;
    padding: 8px 15px !important; 
    color: #012c18 !important;
    transition: color 0.3s ease !important;
    } 
    .nav-link:hover { 
        color: #ffcc00 !important;
        }
        @media (min-width: 992px) { 
        .navbar-expand-lg .navbar-nav .nav-link { 
            font-size: 13px !important;
            }
            
        }
        .dropdown-menu {
            border-radius: 8px; 
            border: none;
            box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
            } 
        .navbar-nav .nav-link.active{ 
            color: #012c18 !important;
            font-weight: 700 !important; 
            
        } 
        .dropdown-item:hover { 
            background-color: #ff5733;
            color: #fff;
            } 
        .pulse { 
            background: linear-gradient(180deg, #ffcc00, #ffe681) !important; 
            color: #1a1a1a !important;
            padding: 8px 16px !important;
            text-decoration: none;
            font-weight: 600;
            border-radius: 6px !important;
            transition: background 0.3s ease;
            display: inline-block;
            
            box-shadow: 0 10px 20px rgba(255, 183, 3, 0.35); 
            transition: transform 0.2s ease, box-shadow 0.2s ease; 
            
        }
       
    .dropdown-menu .dropdown-item {
        color: #012c18 !important;
        }
    .dropdown-menu .dropdown-item:hover {
        color: #ffcc00 !important;
        }

/* ---------- Pulse Button ---------- */
.pulse {
  background: linear-gradient(180deg, #ffcc00, #ffe681) !important;
  color: #1a1a1a !important;
  padding: 8px 16px !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px !important;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(255, 183, 3, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.pulse:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(255, 183, 3, 0.45);
  background: linear-gradient(45deg, #ffcc00, #fff5cf) !important;
}

/* ---------- Pulse Animation ---------- */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #012c18;
  }
  70% {
    box-shadow: 0 0 0 15px rgba(1, 44, 24, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(1, 44, 24, 0);
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 13px !important;
    padding: 10px 18px !important;
  }

  .navbar {
    padding: 15px 0;
  }

  .pulse {
    font-size: 14px;
  }
}

/* ---------- Tablet View (768px – 991px) ---------- */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-link {
    font-size: 14px !important;
    padding: 10px !important;
  }

  .pulse {
    padding: 7px 14px !important;
    font-size: 13px;
  }

  .dropdown-menu {
    font-size: 13px;
  }
}

/* ---------- Mobile View (≤767px) ---------- */
@media (max-width: 767px) {
  .navbar {
    padding: 8px 0;
  }

  .navbar-nav {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    margin-top: 10px;
  }

  .nav-link {
    font-size: 15px !important;
    padding: 10px !important;
    display: block;
  }

  .dropdown-menu {
    box-shadow: none;
    border: none;
    background: #fff;
    margin: 0;
  }

  .dropdown-item {
    padding: 10px;
  }

  .pulse {
    width: 90%;
    text-align: center;
    display: block;
    margin: 10px auto;
    font-size: 14px;
  }
}

/* ---------- Small Mobile (320px – 480px) ---------- */
@media (max-width: 480px) {
  .nav-link {
    font-size: 14px !important;
    padding: 8px 5px !important;
  }

  .pulse {
    font-size: 13px;
    padding: 6px 12px !important;
  }

  .navbar-brand img {
    max-width: 120px;
  }
}


/* slider section css */

  .carousel-item {
      position: relative;
      height: 60vh;
      min-height: 600px;
      background-size: cover;
      background-position: center;
    }

    .carousel-item::before {
      content: "";
      position: absolute;
      inset: 0;        
      background: rgba(0,0,0,0.45);
      z-index: 1;
      pointer-events: none;   
    }

    .carousel-item > .d-flex {
      position: relative;
      z-index: 2;
    }
    .carousel-control-prev,
    .carousel-control-next {
      z-index: 5 !important;
      pointer-events: auto; 
    }

    @media (max-width: 768px) {
      .carousel-control-prev,
      .carousel-control-next {
        width: 8%;
      }
    }
    
    @media (max-width: 768px) {
  .carousel-item {
    height: 45vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
  }

  .carousel-item > .d-flex {
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
  }

  .carousel-item > .d-flex h1 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .carousel-item > .d-flex p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }
}

/* 🔹 Very small devices (max-width: 480px) */
@media (max-width: 480px) {
  .carousel-item {
    height: 40vh;
    min-height: 250px;
  }

  .carousel-item > .d-flex h1 {
    font-size: 1rem;
  }

  .carousel-item > .d-flex p {
    font-size: 0.8rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }
}

/* why choose us */
.hover-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: left;
}
.hover-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9f5f0;
  border-radius: 12px;
  padding: 10px;
  min-width: 50px;
  height: 50px;
}

.section-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  color: #ffcc00 !important;
}

.text-muted{
  color: #012c18 !important;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, #012c18, #ffcc00) !important;
  transform: translateX(-50%);
  animation: slideLine 1.5s infinite alternate ease-in-out;
}

@keyframes slideLine {
  0% { width: 50px; }
  50% { width: 120px; }
  100% { width: 50px; }
}

@media (max-width: 992px) {
  .hover-card {
    margin-bottom: 20px;
    text-align: center;
  }

  .icon-box {
    min-width: 45px;
    height: 45px;
    padding: 8px;
  }

  .section-heading {
    font-size: 1.4rem;
  }
}

/* ====== Mobile Screens (max-width: 768px) ====== */
@media (max-width: 768px) {
  .hover-card {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
  }

  .icon-box {
    margin: 0 auto 10px;
    width: 45px;
    height: 45px;
  }

  .section-heading {
    font-size: 1.2rem;
    padding-bottom: 10px;
  }

  .section-heading::after {
    width: 40px;
  }

  .text-muted {
    font-size: 0.9rem;
  }
}

/* ====== Small Mobile Screens (max-width: 480px) ====== */
@media (max-width: 480px) {
  .hover-card {
    padding: 12px;
    text-align: center;
  }

  .icon-box {
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .section-heading {
    font-size: 1rem;
  }

  .section-heading::after {
    width: 35px;
  }

  .text-muted {
    font-size: 0.85rem;
  }
}

/* destination css */
.destination-card {
  border: none;
  overflow: hidden;
  border-radius: 10px;
}

.image-container {
  position: relative;
}

.image-container img {
  display: block;
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.overlay-icon {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.3s ease;
}

.overlay-icon:hover {
  background: #e2f0fb;
  transform: translateX(-50%) scale(1.1);
}
.destination-card img{
  height: 280px;
}
.overlay-icon img{
  height: 60px;
  width: 60px;
}
@media (max-width: 992px) {
  .destination-card {
    margin-bottom: 25px;
  }

  .image-container img {
    height: 250px;
  }

  .overlay-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    bottom: -18px;
  }

  .overlay-icon img {
    width: 50px;
    height: 50px;
  }
}

/* ===== Mobile (max-width: 768px) ===== */
@media (max-width: 768px) {
  .destination-card {
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .image-container img {
    height: 220px;
    border-radius: 8px 8px 0 0;
  }

  .overlay-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: -15px;
  }

  .overlay-icon img {
    width: 45px;
    height: 45px;
  }
}

/* ===== Small Mobile (max-width: 480px) ===== */
@media (max-width: 480px) {
  .destination-card {
    border-radius: 6px;
  }

  .image-container img {
    height: 200px;
    border-radius: 6px 6px 0 0;
  }

  .overlay-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: -12px;
  }

  .overlay-icon img {
    width: 40px;
    height: 40px;
  }
}

/* plan css */
.booking-section {
  padding: 60px 0;
}
.booking-section h2 {
  font-weight: 700;
  font-size: 2.2rem;
}
.booking-section p {
  font-size: 1.1rem;
  color: #555;
}

.booking-image img {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-list i {
  color: #ffcc00;
  font-size: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
.feature-list li {
  font-size: 18px; 
  line-height: 1.6;
}

ul{
  list-style: none !important;
}
@media (max-width: 992px) {
  .booking-section {
    padding: 50px 0;
  }

  .booking-section h2 {
    font-size: 1.9rem;
    text-align: center;
  }

  .booking-section p {
    font-size: 1rem;
    text-align: center;
  }

  .feature-list li {
    font-size: 17px;
    line-height: 1.5;
  }

  .booking-image img {
    margin-top: 25px;
  }
}

/* ===== Mobile (max-width: 768px) ===== */
@media (max-width: 768px) {
  .booking-section {
    padding: 40px 15px;
  }

  .booking-section h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 15px;
  }

  .booking-section p {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .feature-list {
    padding-left: 0;
    text-align: left;
  }

  .feature-list li {
    font-size: 16px;
    line-height: 1.5;
  }

  .booking-image img {
    border-radius: 10px;
    margin-top: 20px;
  }
}

/* ===== Small Mobile (max-width: 480px) ===== */
@media (max-width: 480px) {
  .booking-section {
    padding: 30px 10px;
  }

  .booking-section h2 {
    font-size: 1.4rem;
  }

  .booking-section p {
    font-size: 0.9rem;
  }

  .feature-list li {
    font-size: 15px;
    line-height: 1.4;
  }

  .feature-list i {
    font-size: 18px;
    margin-right: 8px;
  }

  .booking-image img {
    border-radius: 8px;
  }
}


/* Banner Section */
.hero-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url('../assets/images/img3.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 48, 71, 0.55); /* dark overlay */
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.banner-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.banner-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  margin-bottom: 24px;
  color: #f8f9fa;
}



/* Mobile adjustments */
@media (max-width: 480px) {
  .hero-banner {
    height: 70vh !important;
  }
  .banner-title {
    font-size: 19px !important;
  }
  .banner-subtitle {
    font-size: 14px !important;
  }
}

/* rental css */

.custom-tabs {
    border-bottom: none;
    padding: 20px 0;
}

.custom-tabs .nav-item {
    margin: 0 10px;
}

.custom-tabs .nav-link {
    padding: 10px 25px;
    border-radius: 50px;
    background: #ddd;
    color: #012c18;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link.active {
    background: #ffcc00;
    color: #1a1a1a;
}

.custom-tabs .nav-link:hover {
    background: #012c18;
    color: #1a1a1a;
}


.rental-cabs {
  padding: 60px 20px;
  background: #f8fafc;
  font-family: Arial, sans-serif;
}

.rental-header {
  text-align: center;
  margin-bottom: 20px;
}

.rental-header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #023047;
}

.rental-header p {
  color: #555;
  font-size: 15px;
}

.tabs {
  text-align: center;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  background: #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.tab-btn.active {
  background: #ffcc00;
  color: #1a1a1a;
}

.tab-btn:hover {
  background: #ffcc00;
}

.tab-content {
  display: none;
}

.tab-content {
  display: block !important;
}

.tab-content.active {
  display: block;
}

.cab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.cab-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.cab-card:hover {
  transform: translateY(-5px);
}

.cab-image {
  position: relative;
}

.cab-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.cab-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: #012c18;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

.cab-title {
  font-size: 18px;
  margin: 12px 0 4px;
  font-weight: 700;
  color: #012c18;
}

.cab-price {
  color: #555;
  font-size: 15px;
  margin-bottom: 12px;
}

.cab-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ffcc00, #ffe681);
  color: #1a1a1a;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cab-btn:hover {
  background: #ffcc00;
}

/* offer css */

.vehicle-offers {
  background: #f8f9fa;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.vehicle-container {
  max-width: 1100px;
  margin: auto;
}

.vehicle-header {
  text-align: center;
  margin-bottom: 40px;
}

.vehicle-header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.vehicle-header p {
  color: #555;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vehicle-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
}

.vehicle-discount {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #012c18;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 6px;
}

.vehicle-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vehicle-content {
  padding: 15px;
  text-align: center;
}

.vehicle-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 6px;
}

.vehicle-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.vehicle-price {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #012c18;
  margin-bottom: 12px;
}

.vehicle-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #ffb703;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.vehicle-btn:hover {
  background: #ffd166;
}

/* how it works */
.how-it-works {
  background: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.how-container {
  max-width: 1100px;
  margin: auto;
}

.how-steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.how-card {
  flex: 1 1 220px;
  background: linear-gradient(45deg, #ffffff, hsl(54, 100%, 98%), #f5fffe, #feffe4);
  background-size: 400% 400%;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: rgb(0, 0, 0);
  transition: transform 0.3s ease;
}
.how-icon img{
  height: 70px;
  width: 70px;
}

.how-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.how-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 14px;
  line-height: 1.5;
}

/* Hover Gradient Animation */
.how-card:hover {
  animation: bgShift 3s ease infinite;
  transform: scale(1.05);
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* testimonial css */
.testimonial-section h2 {
  font-weight: 700;
  color: #333;
}

/* Carousel Container */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: auto;
}

/* Track */
.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Testimonial Card */
.testimonial-card {
  min-width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Text */
.testimonial-text {
  font-style: italic;
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Author */
.testimonial-author img {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffcc00;
  margin-bottom: 10px;
}

.testimonial-author h4 {
  margin: 0;
  font-weight: 600;
  color: #222;
}

.testimonial-author span {
  font-size: 14px;
  color: #777;
}

/* Controls */
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffcc00;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-prev { left: 10px; }
.testimonial-next { right: 10px; }

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #ffcc00;
}
/* latest blog css */

.latest-news-section {
  background: #f9f9f9;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 15px;
}

.news-date {
  font-size: 14px;
  color: #777;
}

.news-content h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #333;
}

.news-content p {
  font-size: 14px;
  color: #555;
}

/* footer top css  */

.travel-banner {
  position: relative;
  width: 100%;
  background: url('../assets/images/banner.jpg') center/cover no-repeat;
  background-attachment: fixed;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}



.banner-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* footer section css  */
.site-footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-logo {
  flex: 1 1 200px;
  display: flex;
  align-items: flex-start;
}

.footer-logo img {
    max-width: 207px;
    height: 75px;
}

.footer-columns {
  flex: 3 1 700px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffcc00;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffcc00;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.social-icons a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  margin-right: 10px;
  border: 1px solid #555;
  padding: 8px;
  border-radius: 60%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ffcc00;
  border-color: #ffcc00;
  color: #111;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  margin-top: 20px;
  color: #999;
}

/* Responsive */
@media(max-width: 768px){
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    justify-content: center;
    flex: 1 1 80px !important;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 480px){
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* banner section css */

.inner-banner {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}
.inner-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(21, 38, 20, 0.45); 
}
.inner-banner .container {
  position: relative;
  z-index: 2;
}
.banner-title {
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 10px;
}
.breadcrumb-item a {
  color: #f0c14b;
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
  color: #fff !important;
}
.breadcrumb-item.active {
  color: #fff !important;
}

/* about section css  */

.about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.main-image {
  position: relative;
}

.main-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
}

.floating-image {
  bottom: -25px;
  right: 38px;
}

.floating-image img {
  border: 5px solid #fff;
  object-fit: cover;
  width: 200px;
  height: 200px;
}


/* Mobile Responsive */
@media (max-width: 767px) {
  .floating-image {
    position: relative !important;
    bottom: 0;
    right: 0;
    margin-top: 15px;
    width: 100%;
  }
}

img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* vision mission css */


.icon-circle {
  width: 70px;
  height: 70px;
  background: #012c18;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease-in-out;
}


.rounded-custom {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.rounded-custom::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #fffcf2, #012c18) !important; 
  z-index: 1;
}


.rounded-custom::before {
  top: 0;
  right: 0;
  border-bottom-left-radius: 100%;
}




.rounded-custom .card-body {
  position: relative;
  z-index: 2;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background:  #012c18 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  margin: 0 auto;
}

/* vehicles section css  */

/* Sedan Section Styling */
.sedan-section {
  background: #f9f9f9;
}

.sedan-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.sedan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.sedan-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sedan-card:hover .sedan-image img {
  transform: scale(1.05);
}

.sedan-content {
  padding: 20px;
}

.sedan-content h5 {
  color: #012c18;
}

.sedan-content p {
  color: #666;
  font-size: 0.95rem;
}

/* cardetails css */
.car-details{
  padding: 60px 30px;
}
.car-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}
.car-image img{
  height: 520px;
}

.car-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37; 
  margin-bottom: 15px;
}

.car-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.list-group-item {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .car-title {
    font-size: 1.8rem;
  }
  .car-price {
    font-size: 1.3rem;
  }
}
/* Selling Section Wrapper */


.selling-section .row {
  margin-top: 20px;
}


.feature-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(250,250,250,0.9));
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(212, 175, 55, 0.2); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feature-card img {
  width: 135px;
  height: 135px;
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.feature-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .selling-section {
    padding: 40px 0;
  }
  .feature-card {
    padding: 20px;
  }
}

/* service css */
.ride-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.ride-card img{
  height: 240px;
}
.ride-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.ride-card h4 {
  color: #012c18;
  font-weight: bold;
}
.ride-card {
  border: none;
}
.btns{
  width: 120px;
  display: block;
  margin: 0 auto;
}

/* pricing css  */

.pricing-section {
  background: #f8f9fa;
}



.pricing-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: #ffcc00;
}

.featured {
  border: 2px solid #ffcc00;
}

.plan-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.plan-price {
  font-size: 2rem;
  font-weight: bold;
  color: #ffcc00;
}

.plan-price span {
  font-size: 1.4rem;
}

.plan-features li {
  padding: 8px 0;
  color: #555;
}
/* gallery css  */
.gallery-section {
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
}

.section-subtitle {
  color: #666;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(11, 48, 12, 0.6);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h5 {
  font-size: 1rem;
  margin: 0;
}

/* contact css  */

.contact-section {
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
}

.section-subtitle {
  color: #666;
}

.contact-info {
  background: white;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info i {
  margin-right: 8px;
  font-size: 1.2rem;
}


/* booking css */
.booking-section {
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
}

.section-subtitle {
  color: #666;
}

form h5 {
  color: #012c18;
  font-weight: bold;
}
.explore img{
  height: 280px;
}


/* explore details css  */

.place-img {
      width: 100%;
      border-radius: 15px;
      object-fit: cover;
      height: 350px;
    }
    .info-section h2 {
      font-weight: bold;
      color: #333;
    }
    .info-section p {
      color: #555;
      line-height: 1.7;
    }
   .custom-card {
  border: none;
  border-radius: 15px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: left;
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.custom-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ffcc00;
}

.custom-card h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.custom-card ul {
  padding-left: 20px;
  margin: 0;
}

.custom-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
}

/* Responsive fix */
@media(max-width: 767px) {
  .custom-card {
    text-align: center;
  }
  .custom-card ul {
    padding-left: 0;
    list-style: none;
  }
}

/* tour packages css */

.package-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.package-card .card-body {
  padding: 20px;
  flex: 1;
}

.package-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.package-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.package-card ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

.package-card ul i {
  color: #ff6600;
  margin-right: 8px;
}

.package-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 15px;
}

@media(max-width: 767px) {
  .package-card img {
    height: 180px;
  }
}
