.custom-adress{
  font-size: 12px !important;
}
.service-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-bottom: 4px solid var(--accent-color);
}

.service-card-body {
  flex-grow: 1;
  padding: 1rem 1.3rem 0rem;
  font-weight: 900;
  font-size: 19px;
  color: var(--primary-color);
  text-align: center;
  color: #86bb45;
  color: #018ccc;
}
.service-btns {
  display: flex;
  justify-content: space-around;
  gap: 0.4rem;
  padding: 0 0.8rem 1rem;
}

.btn-whatsapp {
  background-color: #25d366;
}

.service-btn {
  flex: 1;
  text-align: center;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.btn-enquiry {
  background-color: var(--accent-color);
  color: var(--dark-bg);
}
.service-btns .btn-enquiry {
  background: #86bb45;
  color: #fff;
}

.btn-call {
  background-color: #555;
}
.service-btns a:hover {
  color: #fff;
}
.service-btns .fa-phone {
  transform: rotate(-0deg);
}

button.disabled-btn {
  display: block;
  max-width: 200px;
  margin: 30px auto 0;
  background: #018ccc;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
}

.custom-btn{
   background: #018ccc;
    color: #fff;
    height: 40px;
    width: 100px;
}

button.btn.float-end {
    background: #018ccc;
    color: #fff;
    height: 40px;
    width: 100px;
}

button.btn.float-end:hover {
    background: #86bb45;
}


/* Section Styling */
.tour-section {
  padding: 50px 20px;
  background-color: #efefef;
  
}

/* Grid Layout */
.tour-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Card */
.tour-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-price {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #018ccc;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

/* Card Content */
.tour-details {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.tour-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgb(0 48 109);
}
.tour-route {
    font-size: 13px;
    color: #575757;
    font-weight: 600;
    margin-bottom: 15px;
    flex: 1;
    line-height: 17px;
}
.tour-info {
  background: rgba(255, 193, 7, 0.15);
  padding: 10px;
  border-radius: 8px;
}
.tour-info p {
  font-size: 14px;
  margin: 0 0 10px;
  color: #333;
}

.custom-location {
  color: rgb(0 48 109);
  margin-right: 6px;

}

/* Buttons */
.tour-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.btn {
  flex: 1;
  text-align: center;
  padding: 3px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.enquire-btn {
  background: #018ccc;
}
.whatsapp-btn {
      background: #018ccc;
}

.text-md-primary {
    color: #028ccd;
}



.social-icons {
      display: table;
      gap: 15px;
      justify-content: center;
      margin-top: 20px;
    }
    .social-icons a {
      text-decoration: none;
    font-size: 28px;
    color: #fff;
    transition: all 0.3s ease;
    margin-right: 15px;
    }
    .social-icons a.youtube:hover {
      color: #ff0000;
      transform: scale(1.2);
    }
    .social-icons a.instagram:hover {
      color: #e4405f;
      transform: scale(1.2);
    }
    .social-icons a.facebook:hover {
      color: #1877f2;
      transform: scale(1.2);
    }
