/* Apply Roboto to all common text elements */
body, h1, h2, h3, h4, h5, h6, p, span, div {
  font-family: 'Roboto', sans-serif !important;
}

@media (max-width: 575.98px) {
  .mobile-text-center {
    text-align: center !important;
  }
}

.btn-success {
  color: #fff;              /* text color */
  background-color: #db3931; /* custom success background */
  border-color: #db3931;     /* border matches background */
}

.btn-success:hover {
  color: #fff;
  background-color: #b52d26; /* slightly darker shade for hover */
  border-color: #a72822;
}

.btn-success:focus, 
.btn-success:active {
  color: #fff;
  background-color: #a72822; /* even darker for active/focus */
  border-color: #92221d;
}

.btn-outline-primary {
  color: #485869;        /* new text color */
  border-color: #485869; /* new border color */
}

.btn-outline-primary:hover {
  color: #fff;           /* text color on hover */
  background-color: #485869; /* fill background */
  border-color: #485869; /* keep border consistent */
}

.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary:focus {
  color: #fff !important;          /* text turns white */
  background-color: #000 !important; /* black background */
  border-color: #000 !important;     /* black border */
}
.content-description {
  color: #000 !important;
}

.navbar {
  background: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  padding: 15px 0;
}
.navbar-brand img {
  max-height: 60px;
}
.nav-link {
  color: white;
  font-weight: 500;
  margin: 0 10px;
}
.nav-link:hover {
  color: red;
}

/* When navbar is expanded on mobile */
.navbar-collapse.show {
  background-color: #000 !important; /* black background */
}

/* Optional: override nav links inside expanded menu */
.navbar-collapse.show .nav-link {
  color: #fff !important; /* white text for contrast */
}

.navbar-collapse.show .nav-link:hover {
  color: #db3931 !important; /* accent hover color */
}


.banner-curve {
	border-bottom-left-radius:5%;
	border-bottom-right-radius:5%;
/* 	border-radius: 5% */
}
.map {
      margin: 50px 0;
      height: 480px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.footer-curve {
	border-top-left-radius:5%;
	border-top-right-radius:5%;
/* 	border-radius: 4% */
}

.image-with-shadow {
	box-shadow: 15px 15px 10px rgba(20, 5, 0, 0.5);
    border: solid white 3px;
}

/* Carousel banner overlay */
/* Dark overlay for hero carousel - makes text always readable */
#heroCarousel .carousel-item {
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Black transparent layer - adjust opacity as needed */
  z-index: 1;
}

/* Ensure caption stays above the overlay */
#heroCarousel .carousel-caption {
  position: relative;
  z-index: 2;
}

/* Optional: Slight gradient for more elegance */
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}



/* Right column with full green background */
.contact-col {
  position: absolute;
  background: #6bbd45;
  color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0 0 0 40px;
  margin-bottom: -25px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-col i {
  background: #fff;
  color: #6bbd45;
  border-radius: 50%;
  padding: 8px;
  font-size: 18px;
}
.contact-col small {
  display: block;
  font-size: 12px;
  color: #000;
}
.contact-col strong {
  color: #fff;
  font-size: 16px;
}

#pageContent {
  transition: margin-right 0.3s ease-in-out;
}

/* When offcanvas is shown */
.offcanvas.show ~ #pageContent {
  margin-right: 280px; /* same as offcanvas width */
}

/* Instead of .custom-dropdown */
.dropdown-menu {
  background-color: #6bbd45;
  border-radius: 8px;
  padding: 8px 0;
  border: none;
  min-width: 200px;
}
.dropdown-menu .dropdown-item {
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  transition: background 0.2s ease-in-out;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #5aa03a;
  color: #fff;
  border-radius: 4px;
}

/* Custom dropdown styling (desktop) */
.custom-dropdown {
  background-color: #6bbd45;
  border-radius: 8px;
  padding: 8px 0;
  border: none;
  min-width: 200px;
}
.custom-dropdown .dropdown-item {
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  transition: background 0.2s ease-in-out;
}
.custom-dropdown .dropdown-item:hover {
  background-color: #5aa03a;
  color: #fff;
  border-radius: 4px;
}

/* Offcanvas: full black, centered links */
.offcanvas-black {
  background: #000;   /* main black background */
  color: #fff;
  text-align: center;
}

.offcanvas-black .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.offcanvas-black .offcanvas-title {
  color: #fff;
  font-weight: 600;
}

.offcanvas-black .nav-link,
.offcanvas-black .toggle {
  color: #fff;
  font-weight: 700;
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.offcanvas-black .nav-link:hover,
.offcanvas-black .toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.offcanvas-black .collapse {
  background: #111;   /* slightly lighter black for collapse section */
}

.offcanvas-black .collapse .sub-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.offcanvas-black .collapse a {
  color: #fff;
  display: block;
  padding: 10px 0;
  font-size: 14px;
  text-decoration: none;
}

.offcanvas-black .collapse a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.offcanvas-black .toggle i {
  margin-left: 0.4rem;
  font-size: 0.9rem;
  vertical-align: middle;
}

/*==== Mobile Layout ==============*/

/* On mobile - make dropdown full width */
@media (max-width: 991px) {
  .custom-dropdown {
    width: 100%;
    border-radius: 0;
  }
  .custom-dropdown .dropdown-item {
    padding: 12px 20px;
  }
}

@media (max-width: 991px) {
  .contact-col {
    display: none;
  }
 .mobile-contact {
    display: block;
    margin: 10px 15px;
  }

  .mobile-contact a {
    display: block;
    width: 100%;
    background: #6bbd45;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
  }
  .mobile-contact a:hover {
    background: #5aa63c; /* darker green on hover */
    color: #fff;
  }
}

@media (min-width: 992px) {
  .mobile-contact {
    display: none;
  }
}

/* Desktop dropdown on hover */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/*================== Hero Carousel section==================================================== */
#heroCarousel .carousel-item img {
  object-fit: cover;
  height: 100vh; /* Full screen height */
}

#heroCarousel .carousel-caption {
  position: absolute;
  top: 40%;
  left: 12%;
  text-align: left;
  max-width: 600px;
}

#heroCarousel .carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

#heroCarousel .carousel-caption p {
  font-size: 1.1rem;
  color: #eee;
  margin-top: 10px;
}

.btn-custom-green {
  background: #81c341;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 25px;
  border: none;
  transition: background 0.3s ease;
}

.btn-custom-green:hover {
  background: #5aa03a;
  color: #fff;
}

.btn-custom-red {
  background: #db3931;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 25px;
  border: none;
  transition: background 0.3s ease;
}

.btn-custom-red:hover {
  background: #db0501;
  color: #fff;
}

.btn-custom-outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 25px;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-custom-outline:hover {
  background: #fff;
  color: #000;
}
/* Arrow icon styling */
.btn-custom-outline i {
  margin-left: 8px;
  position: relative;
  top: 0; /* keeps aligned with text baseline */
  transform: rotate(0deg); /* tilt upward ~50° */
  font-size: 1rem;
  display: inline-block; /* ensures proper rotation */
}
/* Mobile adjustments */
@media (max-width: 768px) {
  #heroCarousel .carousel-item img {
    height: 70vh; /* Reduce height for small screens */
  }
  #heroCarousel .carousel-caption {
    bottom: 15%;
    left: 5%;
    max-width: 90%;
  }
  #heroCarousel .carousel-caption h1 {
    font-size: 1.6rem;
  }
  #heroCarousel .carousel-caption p {
    font-size: 1rem;
  }
  .btn-custom-green,
  .btn-custom-outline {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

/* Hide carousel arrows on mobile */
@media (max-width: 768px) {
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    display: none !important;
  }
}

/*==========================counter Section===========================================*/

.counter-section {
  margin-top: -60px; /* pull up under banner */
  position: relative;
  z-index: 5;
}

.counter-box {
  background: linear-gradient(90deg, #81c341, #5aa03a);
  color: #fff;
  border-radius: 20px 0 20px 0;
  padding: 40px 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* ensures watermark doesn’t spill out */
  position: relative;
}

.counter-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.counter-box p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

/* Watermark */
.counter-watermark {
  position: absolute;
  right: 0px;
  top: 0;
  height: 100%;
  opacity: 1; /* faint watermark effect */
  pointer-events: none; /* ignore clicks */
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-box h2 {
    font-size: 2rem;
  }
  .counter-box p {
    font-size: 0.9rem;
  }
  .counter-watermark {
    height: 70%; /* smaller watermark on mobile */
    right: 0px;
    bottom: 0 !important;
  }
}

/*==========================about Section===========================================*/

.about-img {
  width: 100%;
  margin-left: 0; /* align flush left */
}

.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover; /* keeps aspect ratio */
}

/* Right content spacing */
.about-content {
  padding-left: 60px; /* space from image */
  padding-right: 40px;
}

.about-vmv p{
    
    text-align:justify;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-img {
    margin-bottom: 30px;
  }
  .about-content {
    padding: 0 20px;
    text-align: center;
  }
}

/* Subtitle */

.section-title h3 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #485869;
  font-weight: 700;
}

.section-title h3 > span {
  color: #81c341;
  font-weight: 800;
}
.about-subtitle {
  font-size: 14px;
  color: #db0501; /* red shade */
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Main Title */
.about-title {
  font-size: 36px;
  line-height: 1.3;
  color: #485869;
}
.about-title span {
  color: #db3931; /* highlight word */
  font-weight: 700;
}

/* Paragraphs */
.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Button */
.about-btn {
  background: #db3931;
  color: #fff;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.about-btn:hover {
  background: #db0501;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }
  .about-text {
    font-size: 15px;
  }
}

/*================Featured Section ====================================*/

/* Section Background */
.features-section {
  background-color: #f5fbf0; /* light grey */
}

/* Box wrapper */
.feature-box {
  /*  padding: 30px 20px;*/
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  /*box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);*/
}
.feature-box:hover {
  transform: translateY(-8px);
  /*box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);*/
}

/* Image */
.feature-img {
  max-width: 120px;
  height: auto;
}

/* Title */
.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-img {
    max-width: 60px;
  }
  .feature-title {
    font-size: 16px;
  }
}

/*================Fleet Section ====================================*/

.car-fleet {
  background-color: #fff; /* Section background */
}

.fleet-subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #81c341; /* Green highlight */
}

.fleet-title {
  font-size: 2.5rem;

  color: #485869;
  text-transform: uppercase;
}
.fleet-title span {
  color: #81c341; /* Green highlight */
  font-weight: 800;
}

.fleet-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85); /* softer white */
}

.fleet-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}
.fleet-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .fleet-title,
  .fleet-desc {
    text-align: center;
  }
}

/* single fleet */

.fleet-single {
  margin: 70px 0px;
}

.fleet-single .fleet-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-align: left;
}

.fleet-main-img {
  max-height: 400px;
  object-fit: cover;
}

.fleet-sidebar ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.related-fleets h3 {
  font-weight: 600;
}

.related-card h5 {
  font-size: 1rem;
  margin-top: 8px;
}

/* Sidebar Wrapper */
.fleet-sidebar {
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.fleet-sidebar:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Fleet Info List */
.fleet-info li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
}
.fleet-info i {
  color: #81c341;
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Features List */
.fleet-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fleet-features i {
  font-size: 2rem !important;
  color: #81c341 !important;
  margin-top: 3px;
}
.fleet-features h6 {
  font-weight: 600;
  font-size: 1.2rem;
}
.fleet-features p {
  font-size: 1rem;
  color: #666;
}

/* Button Style */
.fleet-btn {
  display: inline-block;
  background-color: #81c341;
  color: #fff !important;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.fleet-btn:hover {
  background-color: #6cab30;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .fleet-sidebar {
    margin-top: 20px;
  }
}

.fleet-features .feature-item {
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 8px;
  border-radius: 6px;
}
.fleet-features .feature-item:hover {
  transform: translateX(5px);
  background: #f8f9fa;
}

/*================Destination Section ====================================*/

.travel-support-cards {
  margin-top: -180px;
}

/* Background image */
.travel-support-bg {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Subheading */
.travel-subheading {
  text-transform: uppercase;
  font-weight: 700;
  color: #81c341;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Heading */
.travel-heading {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.travel-heading .heading-white {
  color: #fff;
}

.travel-heading .heading-green {
  color: #81c341;
}

/* Description */
.travel-description {
  color: #fff;
  max-width: 500px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    
  .travel-support-cards {
  margin-top: 20px;
}
  .travel-support-bg {
    height: 350px;
  }

  .travel-heading {
    font-size: 1.8rem;
    text-align: center;
  }

  .travel-description {
    max-width: 100%;
    text-align: center;
  }

  .travel-subheading {
    text-align: center;
    display: block;
  }
}

@media (max-width: 576px) {
  .travel-support-bg {
    height: 350px;
  }

  .travel-heading {
    font-size: 1.5rem;
  }
}

/* Travel Support Cards */
.travel-card {
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.travel-card-img {
  object-fit: cover;
}

/* Title inside image */
.travel-card-title {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 0;
  background: rgba(0, 0, 0, 0.4); /* subtle background for readability */
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

/* Button */
.travel-btn {
  background: #81c341;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  padding: 0.75rem 2rem;
  transition: background 0.3s ease;
  display: inline-block;
}

.travel-btn:hover {
  background: #6aaa2f;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .travel-card-img {
    height: 220px;
  }

  .travel-card-title {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
}

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

/*=================Blog==========================*/

/* Section Title */
.section-title {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
}

.section-title .highlight {
  color: #81c341;
}

/* Blog Cards */
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
  height: 220px;
  object-fit: cover;
}

/* Blog Body */
.blog-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.blog-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Button */
.blog-btn {
  background: #81c341;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  padding: 0.6rem 1.6rem;
  transition: background 0.3s ease;
}

.blog-btn:hover {
  background: #6aaa2f;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card-img {
    height: 180px;
  }
  .blog-title {
    font-size: 1rem;
  }
}

/*=========================home Hero section =========================*/

/* Hero Section */
.hero-section {
  min-height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.hero-title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #fff;
}

/* Button */
.hero-btn {
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

/*=====================================About Page========================================*/

/* Section 1: Banner */
.about-banner {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}
.about-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.about-banner .content {
  position: relative;
  z-index: 2;
}

/* Section 2 */
.about-two-col img {
  border-radius: 12px;
}

/* Section 3 */

.about-vmv {
  margin: 90px 0;
  padding: 70px 0;
  background-color: black; /* light grey */
}

.about-vmv h3 {
  color: white;
  margin-bottom: 1rem;
}



/* Section 4 */
.highlight-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease;
}
.highlight-box:hover {
  transform: translateY(-5px);
}
.highlight-box img {
  height: 50px;
  margin-bottom: 15px;
}

/*======================================contact Page=========================================*/

/* Banner */
.contact-banner {
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}
.contact-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.contact-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.contact-banner .content {
  position: relative;
  z-index: 2;
}

.contact-info {
  margin: 120px 0px;
}

.contact-box {
  background: white; /* light background */
  border-radius: 12px;
  border: black 1px solid;	
  transition: transform 0.3s ease, background 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-5px);
  background: white;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: black; /* your theme green */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.icon-circle i {
  font-size: 28px;
  color: #fff;
}

/* Contact Info */
.contact-info h5 {
  color: #485869;
}

/* Boxed Section */
.contact-boxed {
  position: relative;
  color: black;
  padding: 120px 0px;
}

.contact-boxed h4 {
  color: #db3931;
}
.contact-boxed img.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.contact-boxed .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.contact-boxed .content {
  position: relative;
  z-index: 2;
}

.contact-boxed .contact-card {
  background: black;
  border-radius: 15px;
  padding: 30px 10px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important; /* 3D floating effect */
  position: relative;
  z-index: 3;
}

.contact-boxed .ratio {
  border-radius: 10px;
  overflow: hidden;
}

.contact-boxed form .form-control {
  border-radius: 10px;
  box-shadow: none;
  border: 1px solid #ddd;
}

/*============================Floating Whatsapp=====================*/

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/*============================Destination Archive /Single=====================*/

.destination-card h3 {
  color: #81c341;
  font-size: 1.5rem;
}
.destination-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}

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

.destination-image {
  height: 500px;
}

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

.destination-card:hover .destination-image img {
  transform: scale(1.1); /* zoom on hover */
}

.btn-destination {
  background-color: #81c341;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-destination:hover {
  background-color: #6aa92f;
  color: #fff;
  transform: translateY(-2px);
}

.single-destination .destination-single-image {
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.single-destination .destination-single-image:hover {
  transform: scale(1.05);
}

.single-destination .destination-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #81c341;
}

.single-destination .destination-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* ===============================Fleet Archive ==============================================*/
.fleet-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fleet-image-wrapper {
  overflow: hidden;
}

.fleet-image {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-image {
  transform: scale(1.1); /* Zoom effect on hover */
}

.fleet-content {
  padding: 20px;
}

.fleet-arctitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.fleet-description,
.fleet-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.fleet-btn {
  display: inline-block;
  background: #81c341;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.fleet-btn:hover {
  background: #6aa12d;
  color: #fff;
}

/* Animation on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-in-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: scale(1);
}

/*=================Services ===============================*/

/* === Services section overlay (robust) === */

.services-subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #db3931; /* Green highlight */
}

.services-title {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #485869;
}
.services-title span {
  color: #81c341; /* highlight word */
  font-weight: 800;
}
.car-services {
  padding: 60px 0;
}

/* clickable wrapper */
.services-item {
  position: relative; /* IMPORTANT: establishes positioning context */
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* image */
.services-img {
  width: 100%;
  height: 300px; /* increase image size as requested */
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 1; /* put image below overlay */
}

/* zoom on hover/focus */
.services-item:hover .services-img,
.services-item:focus .services-img {
  transform: scale(1.07);
}

/* overlay (hidden by default) */
.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none; /* prevent overlay blocking click until visible */
  transition: opacity 0.32s ease;
  z-index: 2; /* ensure overlay sits above image */
}

/* reveal overlay on hover/focus or when .show class is present */
.services-item:hover .services-overlay,
.services-item:focus .services-overlay,
.services-item.show .services-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* excerpt text */
.services-excerpt {
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
  color: #fff;
}

/* title below the image */
.services-name {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-top: 0.9rem;
  text-align: center;
}

/* mobile adjustments */
@media (max-width: 767px) {
  .services-img {
    height: 220px;
  }
  .services-excerpt {
    font-size: 0.9rem;
  }
}

/* ===== Temporary debug helpers (uncomment to debug visually) ===== */
/* .services-overlay { outline: 2px dashed rgba(255,0,0,0.6); } */
/* .services-overlay { opacity: 1 !important; } */

/*===================================== Transport Archive========================= */

.transport-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.transport-card:hover {
  transform: scale(1.03);
}

.transport-img {
  width: 100%;

  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.transport-card:hover .transport-img {
  transform: scale(1.07);
}

/* Overlay with transparent background */
.transport-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* transparent dark overlay */
  padding: 15px;
  text-align: center;
}

.transport-title {
  font-size: 1.4rem; /* bigger title */
  font-weight: 700;
  margin: 0;
  color: #fff; /* white text */
  transition: color 0.3s ease;
}

.transport-card:hover .transport-title {
  color: #81c341;
}

/* Scroll Animation */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.animate-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Single Transport Page */
.transport-single-title {
  font-size: 2rem;
  font-weight: 700;
  color: #81c341;
  text-transform: uppercase;
}

.transport-single-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.transport-single-image img {
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.transport-single-image img:hover {
  transform: scale(1.05);
}

/* Fade-in on scroll */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .transport-single-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .transport-single-description {
    text-align: center;
  }
}

/* ===============Single Blog ==========================*/
.single-blog-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.single-blog-meta span {
  font-size: 0.9rem;
}

.single-blog-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* Fade animation */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.single-blog-nav a {
  text-decoration: none;
  color: #81c341;
  font-weight: 600;
}

.single-blog-nav a:hover {
  color: #6aa12d;
}

.related-posts h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
}

.related-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px) scale(1.03);
}

.related-img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

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

.related-title {
  font-size: 1rem;
  margin-top: 0.9rem;
  color: #000;
  font-weight: 500;
  text-decoration: none !important;
}

.related-card a {
  text-decoration: none !important; /* remove underline */
  color: inherit; /* keep same text color */
}

.related-card a:hover .related-title {
  color: #81c341; /* optional: hover color */
}

/*============================Destination/Attraction Flip ========================*/

.flip-card {
  perspective: 1000px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 350px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.active .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}
.flip-card-front img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 12px;
}
.flip-card-front h5 {
  margin-top: 12px !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: #81c341; /* theme color */
  text-align: center;
}
.flip-card-back {
  background: #000;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.flip-card-back .flip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.flip-card-back .overlay-content {
  position: relative;
  z-index: 2;
}
.flip-card-back .btn {
  transition: transform 0.3s ease;
}
.flip-card-back .btn:hover {
  transform: scale(1.05);
}

/* Back side overlay */
.flip-card-back .overlay-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: center;
}

/* Excerpt */
.flip-card-back p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #f8f9fa; /* light text */
}

/* CTA buttons */
.flip-card-back .btn {
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* WhatsApp button */
.flip-card-back .btn-success {
  background-color: #81c341; /* theme green */
  border: none;
  color: #fff;
}
.flip-card-back .btn-success:hover {
  background-color: #6aa82e;
  transform: scale(1.05);
}

/* Book Now button */
.flip-card-back .btn-light {
  background-color: #fff;
  border: 1px solid #81c341;
  color: #81c341;
}
.flip-card-back .btn-light:hover {
  background-color: #81c341;
  color: #fff;
  transform: scale(1.05);
}

/* PRODUCTS */
/* Make product images smaller and Amazon-like */
.product-card .card-img-top {
    height: 200px !important;      /* Adjust this value as needed: 180px to 250px looks good */
    object-fit: contain;           /* Shows full product with transparent background */
    /* object-fit: cover;          /* Use this if you prefer cropped/zoomed images */
    background-color: #f8f9fa;
    padding: 15px;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Optional: limit max height on very small screens */
@media (max-width: 576px) {
    .product-card .card-img-top {
        height: 160px !important;
    }
}

/*==============================footer=========================================*/


.footer .list-unstyled li {
  margin-bottom: 8px; /* space between items vertically */
}

.footer .list-unstyled li:last-child {
  margin-bottom: 0; /* remove extra space at the end */
}

/* Footer Nav Links */
.footer .list-unstyled li a {
  color: #fff; /* default link color (adjust as per your footer background) */
  text-decoration: none !important;
  transition: color 0.3s ease;
}

/* Hover State */
.footer .list-unstyled li:hover {
  color: #81c341; /* green on hover */
}

/* Footer contact links */
.footer-link {
  color: white; /* visible text */
  text-decoration: none;
  transition: color 0.3s ease;
}

.big-gallery-cards .wp-block-gallery {
    gap: 2rem !important;
}
.big-gallery-cards .blocks-gallery-item figure {
    margin: 0 !important;
}
.big-gallery-cards .blocks-gallery-item img {
    width: 100% !important;
    height: 480px !important;        /* ← make them as tall as you want */
    object-fit: cover !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    transition: all 0.4s ease !important;
}
.big-gallery-cards .blocks-gallery-item img:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25) !important;
}



/* === MODERN FORMINATOR FORM STYLES - ID 248 === */
#forminator-module-248,
#forminator-module-248 * {
  box-sizing: border-box;
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Container */
#forminator-module-248 .forminator-ui {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid #e9ecef;
}

/* Form Title & Description */
#forminator-module-248 .forminator-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-align: center;
}
#forminator-module-248 .forminator-description {
  font-size: 16px;
  color: #6c757d;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Labels */
#forminator-module-248 .forminator-label {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  display: block;
}

/* Input Fields */
#forminator-module-248 .forminator-input,
#forminator-module-248 .forminator-textarea,
#forminator-module-248 .forminator-select2 + .select2-container .select2-selection {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  background-color: #ffffff;
  transition: all 0.25s ease;
  width: 100%;
  outline: none;
}
#forminator-module-248 .forminator-input:focus,
#forminator-module-248 .forminator-textarea:focus,
#forminator-module-248 .forminator-select2 + .select2-container--focus .select2-selection {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
  background-color: #f0fdf4;
}

/* Select2 Dropdown */
#forminator-module-248 .select2-container--default .select2-selection--single {
  height: 54px;
  display: flex;
  align-items: center;
  border-radius: 10px !important;
}
#forminator-module-248 .select2-container .select2-selection__rendered {
  font-size: 16px;
  padding-left: 0;
}
#forminator-module-248 .select2-container--default .select2-selection__arrow {
  height: 54px;
}

/* Radio & Checkbox */
#forminator-module-248 .forminator-radio,
#forminator-module-248 .forminator-checkbox {
  margin: 12px 0;
}
#forminator-module-248 .forminator-radio-label,
#forminator-module-248 .forminator-checkbox-label {
  font-size: 15px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#forminator-module-248 .forminator-radio-bullet,
#forminator-module-248 .forminator-checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e0;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s;
}
#forminator-module-248 .forminator-checkbox-box {
  border-radius: 6px;
}
#forminator-module-248 .forminator-radio:checked + .forminator-radio-label .forminator-radio-bullet,
#forminator-module-248 .forminator-checkbox:checked + .forminator-checkbox-label .forminator-checkbox-box {
  background-color: #10b981;
  border-color: #10b981;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* red SUBMIT BUTTON */
#forminator-module-248 .forminator-button-submit {
  background: linear-gradient(135deg, #db3931 0%, black 100%);
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
#forminator-module-248 .forminator-button-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, black 0%, #db3931 100%);
}
#forminator-module-248 .forminator-button-submit:active {
  transform: translateY(0);
}

/* Field Spacing */
#forminator-module-248 .forminator-row {
  margin-bottom: 20px;
}
#forminator-module-248 .forminator-row:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 480px) {
  #forminator-module-248 .forminator-ui {
    padding: 24px 20px;
    border-radius: 12px;
  }
  #forminator-module-248 .forminator-title {
    font-size: 24px;
  }
}


