@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --primary-color: #114478;     /* Blue */
  --secondary-color: #198754;   /* Green */
  --accent-color: #114478;      /* Orange */
  --text-color: #0c7cbb;
  /* Backgrounds */
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #212529;
 --bg-hover: #8c0000;
  /* Text */
  --text-dark: #212529;
  --text-light: #6c757d;
  --text-white: #ffffff;

  /* Borders & Shadows */
  --border-color: #e0e0e0;
  --box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  /* Font */
  --font-family: 'Poppins', sans-serif;
}
a {
    color: rgb(0 0 0);
    text-decoration: none;
    accent-color: auto;
}
p.copyright a {
    color: #ced403;
}
.footer-col a {
    text-decoration: none !important;
    color: white;
}

body {
  font-family: var(--font-family);
  background: var(--bg-light);
  color: var(--text-dark);
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
}

.btn-success {
  background: var(--accent-color);
  border: none;
}

.btn-accent {
  background: var(--accent-color);
  color: var(--text-white);
}

h1, h2, h3, h4 {
  font-weight: 600;
}

small {
  color: var(--text-light);
}


.top-bar {
  background: var(--accent-color);
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  padding: 10px;
}

.top-bar span {
  color: var(--bg-white);
}

.top-bar i {
  color: var(--bg-white);
  margin-right: 6px;
}

.top-social a {
  color: var(--primary-color);
  font-size: 13px;
}
.main-navbar {
  background: var(--bg-white);
  padding: 1px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.navbar-brand {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
}

.navbar-brand i {
  font-size: 20px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 4px 0;
}

.nav-link i {
  margin-right: 6px;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}
.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--bg-hover); /* optional dark shade */
}


/*===================================== end header css ============================== */




.hero-slider {
  position: relative;
}

/* Slider image */
.hero-slider .carousel-item img {
  height: 520px;
  object-fit: cover;
}

/* Search Card */
.search-card {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  background: var(--bg-white);
  width: 100%;
  max-width: 1100px;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Form */
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-control,
.form-select {
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

/* Search button */
.btn-search {
  height: 46px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
}

.btn-search:hover {
  background-color: var(--bg-hover);
  color: var(--bg-light);
}
.btn:hover
{
  background-color: var(--bg-hover) !important;
}
/* Mobile */
@media (max-width: 768px) {
  .hero-slider .carousel-item img {
    height: 320px;
  }

  .search-card {
    position: static;
    transform: none;
    margin-top: 10px;
    border-radius: 12px;
  }
}


.date-box {
  position: relative;
  cursor: pointer;
}

.date-display {
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding-right: 40px;
  background: #fff;
  cursor: pointer;
}

.date-box i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* Hide real date input */
.date-real {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

/* Arrow wrapper */
.hero-arrow {
  width: 44px;
}

/* Arrow icon background */
.hero-arrow .carousel-control-prev-icon,
.hero-arrow .carousel-control-next-icon {
  background-color: var(--bg-white);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  background-size: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Hover effect */
.hero-arrow:hover .carousel-control-prev-icon,
.hero-arrow:hover .carousel-control-next-icon {
  background-color: var(--primary-color);
  filter: invert(1);
}

/* Position adjust (optional polish) */
.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

/* Mobile: slightly smaller arrows */
@media (max-width: 768px) {
  .hero-arrow .carousel-control-prev-icon,
  .hero-arrow .carousel-control-next-icon {
    width: 32px;
    height: 32px;
  }
}


/*  FORM */
.seat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.seat-option {
  position: relative;
  cursor: pointer;
}

.seat-option input {
  display: none;
}

.seat-option span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: all 0.2s ease;
}

.seat-option span i {
  color: var(--primary-color);
  font-size: 14px;
}

/* Hover */
.seat-option:hover span {
  border-color: var(--primary-color);
}

/* Active / Selected */
.seat-option input:checked + span {
  background: rgba(13,110,253,0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}



/* banner- css end */

/* Section spacing */
.top-destination-section {
  background: #defbff;
}

/* Heading */
.section-head h2 {
  font-size: 30px;
  font-weight: 700;
  /* color: var(--primary-color); */
}

.section-head p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Slick spacing FIX */
.destination-slider .slick-slide {
  /* padding: 18px; */   /* gap between cards */
  margin: 20px;
}

/* Card */
.destination-img-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

/* Image */
.destination-img-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Hover */
.destination-img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.16);
}

/* Badge */
.badge-new {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffeb3b;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  z-index: 2;
}

/* Footer title */
.card-footer {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Slick dots spacing */
.slick-dots {
  bottom: -35px;
}
section.top-destination-section {
    padding: 101px 0px 50px 0px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}


/*  About Us  */

.about-routes-section {
  padding: 60px 0;
  background: #fff;
}

/* Titles */
.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #000;
}

.section-title span {
  color: var(--text-color); /* red highlight */
}
.img img {
    width: 106px;
    background: white;
    padding: 12px;
    border-radius: 10px;
}
/* About text */
.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Read More button */
.btn-read {
  background: var(--accent-color);
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 0;
  text-decoration: none;
}

.btn-read:hover {
  background: #8c0000;
  color: #fff;
}

/* Vertical divider */
.vertical-line {
  width: 1px;
  height: 100%;
  background: #ccc;
}

/* Routes list */
.routes-list {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Route item */
.route-item {
  padding: 10px 12px;
  border-left: 4px solid transparent;
  margin-bottom: 10px;
  cursor: pointer;
}

.route-item h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.route-item p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* Active route */
.route-item.active {
  border-left-color: #7a3db8;
  background: #f7f5fb;
}

/* Scrollbar (optional polish) */
.routes-list::-webkit-scrollbar {
  width: 4px;
}

.routes-list::-webkit-scrollbar-thumb {
  background: #7a3db8;
  border-radius: 10px;
}
/*  About Us  */

/* =======================Amenities= =============== */

.travel-stats {
  padding: 90px 0;
  background: linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
              url('../img/bannre-2.jpeg') center/cover;
}

.stat-box {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px 10px;
  margin: 10px;
  transition: .3s;
  color: #fff;
}
.stat-box:hover { transform: translateY(-8px); }

.stat-box i {
  font-size: 34px;
  margin-bottom: 15px;
  color: #28a745;
}

.stat-box h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  letter-spacing: 1px;
}



/* -====== salient-section ======= */
/* Section */
.salient-section {
  background: #fff;
}

/* Title */
.salient-title {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1px;
}

.salient-title span {
  font-weight: 700;
}

/* Top boxes */
.salient-box {
  background: #d5d5d55e;
  color: #000000;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  box-shadow: 0 4px 10px rgb(0 0 0 / 24%);
}

.salient-box::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 28px;
  background: #b00000;
  border-radius: 4px;
}

/* Bottom features */
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon img {
    width: 59px;
}
/* .feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #003c46;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #f4d03f;
} */

.feature-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .salient-title {
    font-size: 28px;
  }
  .feature-icon img {
    width: 35px;
}
.feature-item h5 {
    font-size: 12px;
    
}
  .salient-box {
    text-align: center;
    padding-left: 20px;
  }

  .salient-box::before {
    display: none;
  }

  .feature-item {
    align-items: center;
  }
}

section.salient-section {
    padding: 100px 0;
}




/*  */

/* ================= STICKY BUTTON ================= */
.sticky-packages-btn {
  position: fixed;
  right: 0;
  top: 42%;
  background: #0d6efd;
  color: #fff;
  padding: 12px 8px;
  border-radius: 12px 0 0 12px;
  z-index: 9999;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 6px;
  writing-mode: vertical-rl;

  box-shadow: -4px 6px 18px rgba(0,0,0,0.3);
}
.form-group {
    width: -webkit-fill-available;
}
.icon-stack {
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
}

.sticky-packages-btn span {
  font-weight: 600;
  font-size: 14px;
}

/* ================= STICKY FORM ================= */
.sticky-enquiry {
  position: fixed;
  right: -380px;
  top: 12%;
  width: 380px;
  background: #fff;
  padding: 20px;
  z-index: 9999;
  transition: right 0.4s ease;
  border-radius: 14px 0 0 14px;
  box-shadow: -8px 0 28px rgba(0,0,0,0.3);
}

.sticky-enquiry.active {
  right: 0;
}

/* Header */
.sticky-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.sticky-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.close-sticky {
  font-size: 22px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 50%;
}

.close-sticky:hover {
  background: #f1f1f1;
}

/* ================= FORM ================= */
.form-group {
  margin-bottom: 10px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-control {
  width: 100%;
  height: 38px;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 0 2px rgba(13,110,253,0.15);
}

textarea.form-control {
  height: 70px;
  resize: none;
}

/* Select */
.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  padding-right: 36px;
}

.select-wrap i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #555;
  pointer-events: none;
}

/* Button */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  border: none;
  padding: 10px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .sticky-packages-btn {
    display: none;
  }

  .sticky-enquiry {
    right: 0;
    left: 0;
    bottom: -100%;
    top: auto;
    width: 100%;
    border-radius: 16px 16px 0 0;
    transition: bottom 0.4s ease;
  }

  .sticky-enquiry.active {
    bottom: 0;
  }
}












/* footer */
/* FOOTER TOP */
.footer-top {
  background: var(--accent-color);
  color: #fff;
  padding: 50px 0;
}

.thank-icon i {
  font-size: 40px;
  margin-bottom: 10px;
}

.footer-top .small-text {
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-top .big-text {
  font-size: 32px;
  font-weight: 700;
  margin-top: 10px;
}

/* FOOTER CONTENT */
.footer-content {
  background: #222;
  color: #ccc;
  padding: 50px 0 30px;
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #0fa3b1;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col i {
  color: #0fa3b1;
  margin-right: 8px;
}

/* LISTS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-col ul li:hover {
  color: #fff;
}
span.top-a a {
    color: white;
}
/* DIVIDER */
.footer-content hr {
  border-color: #444;
  margin: 30px 0 20px;
}

/* COPYRIGHT */
.copyright {
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-top .big-text {
    font-size: 22px;
  }

  .footer-col {
    margin-bottom: 30px;
  }
    section.feature-section {
    padding: 40px 0 55px !important;
}
section.top-destination-section {
    padding: 46px 0px 50px 0px !important;
   
}
button.carousel-control-next.hero-arrow {
    display: none;
}
button.carousel-control-prev.hero-arrow {
    display: none;
}
.section-title {
  
    text-align: center;
}
p.about-text {
    text-align: justify;
}
.about-routes-section {
    padding: 60px 0 10px !important;
  
}
.carousel-control-prev {
    left: 20px;
    top: -187px !important;
}
.carousel-control-next {
    right: 20px;
    top: -187px !important;
}
}

/* footer end */


.vehicles-section{
  background:#fff;
}

/* Slick equal height fix */
.vehicle-slider .slick-track{
  display:flex;
}
.vehicle-slider .slick-slide{
  display:flex;
  height:auto;
}

.vehicle-card{
  display:flex;
  flex-direction:column;
  height:100%;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  margin:0 12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.vehicle-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.vehicle-content{
  padding:22px;
  text-align:center;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}

.vehicle-content h5{
  font-weight:700;
}

.vehicle-content .btn{
  margin-top:auto;
}

/* Mobile */
@media(max-width:768px){
  .vehicle-card img{
    height:180px;
  }

}








/* about section  */

section.hember {
    padding: 130px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

h1.section-title {
    text-align: center;
    color: white;
}

.services-section{
  background:#fff;
}

.service-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s ease;
  height:100%;
}

.service-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}


.arrow-btn{
  display:inline-flex;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#ff9f1c;
  color:#fff;
  align-items:center;
  justify-content:center;
  margin-top:15px;
}

.service-card a {
    text-decoration: none;
}



.feature-box{
  padding:20px;
}

.feature-box i{
  font-size:34px;
  color:var(--accent-color);
  margin-bottom:15px;
}

.feature-box h6{
  font-weight:700;
  margin-bottom:10px;
}

.feature-box p{
  font-size:14px;
  color:#555;
}

/*  */


.counter-section{
  background:#fff;
}

.counter-box{
  padding:20px;
}

.counter-box i{
  font-size:42px;
  color:#d9d9d9;
  margin-bottom:15px;
}

.counter-box h3{
  font-size:36px;
  font-weight:700;
  color:#0b2c4d;
}

.counter-box p{
  margin:0;
  color:#666;
  font-size:15px;
}


.testimonial-section{
  background:#fff9e6;
}

.divider{
  width:80px;
  height:3px;
  background:#f4a300;
}

.testimonial-card{
  background:#fff;
  padding:30px;
  border-radius:16px;
  margin:0 12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.stars i{
  color:#f4a300;
  margin-right:3px;
}

.testimonial-card p{
  font-size:14px;
  color:#555;
  margin:18px 0;
}

.user{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:#ff6a00;
}

.user i{
  font-size:22px;
  color:#6f42c1;
}

.slick-dots li button:before{
  font-size:10px;
  color:#999;
}
.slick-dots li.slick-active button:before{
  color:#ff6a00;
}

/* contat pagr  */

.contact-section{
  background:#f3f6f7;
}

.info-box{
  background:#fff;
  padding:25px;
  border-radius:14px;
  height:100%;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.info-box i{
  font-size:26px;
  color:var(--accent-color);
  margin-bottom:12px;
}
section.feature-section {
    padding: 120px 0 55px;
}
.info-box h6{
  font-weight:600;
}
a.navbar-brand img {
    width: 46px;
}
.form-box{
  background:#fff;
  padding:35px;
  border-radius:20px;
}

.info-card{
  background:#fff;
  padding:25px;
  border-radius:20px;
}

.info-card h6{
  font-weight:600;
}

.info-card i{
  color: var(--accent-color);
  margin-right:8px;
}




/*  */
.new-design {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.new-design:hover { transform: translateY(-8px); }

.img-box { position: relative; }
.img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #28a745;
  color: #fff;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
}

.vehicle-content { padding: 18px; text-align: center; }
.vehicle-content h5 { font-weight: 600; }
.seats { color: #28a745; font-weight: 500; }



.dest-hero {
  padding: 80px 0 50px;
  background: linear-gradient(135deg,#f8fbff,#eef5ff);
}
.dest-hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}
.dest-hero p {
  max-width: 750px;
  margin: auto;
  color: #555;
}

.dest-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}
.dest-card:hover { transform: translateY(-8px); }

.dest-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.dest-info {
  padding: 18px;
  text-align: center;
}
.dest-info h3 { font-weight: 600; margin-bottom: 8px; }
.dest-info p { font-size: 14px; color: #555; }



/* =======================gallery==================== */

.vehicle-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vehicle-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s;
}

.vehicle-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}

.vehicle-item:hover .overlay {
  opacity: 1;
}

.overlay h5 { margin-bottom: 5px; font-weight: 600; }
.overlay p { font-size: 13px; }


.offcanvas-header img {
    width: 44px;
}




  .how-works-section {
  background: #f3f3f3;
  padding: 80px 0;
}


.green {
  color: #1f9d55;
}

.steps-container {
  position: relative;
}

.progress-line {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #333;
  z-index: 0;
}

.step-box {
  position: relative;
  z-index: 1;
  padding: 0 25px;
}

.circle {
  width: 90px;
  height: 90px;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 25px;
  background: #f3f3f3;
}

.step-box h5 {
  font-size: 22px;
  margin-bottom: 15px;
}

.step-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .progress-line {
    display: none;
  }

  .step-box {
    margin-bottom: 50px;
  }
}

/* <!-- WhatsApp Floating Button -->
 */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    animation: float 2s ease-in-out infinite;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { opacity: 0; }
}

.slider-wrapper {
  position: relative;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #114478ab;
    color: #fff;
    border: none;
    width: 33px;
    height: 35px;
    border-radius: 18%;
    font-size: 28px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.prev-btn {
  left: -25px;
}

.next-btn {
  right: -25px;
}

.arrow-btn:hover {
  background: #145c32;
}

/* Mobile adjustment */
@media(max-width:768px){
  .prev-btn {
    left: 5px;
  }
  .next-btn {
    right: 5px;
  }
}
section.about-routes-section img {
    border-radius: 10px;
}


/* gallery */



.gallery-section {
  background: #f5f5f5;
}





.gallery-item {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}
