.elementor-777 .elementor-element.elementor-element-017b72d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-777 .elementor-element.elementor-element-22de19d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-777 .elementor-element.elementor-element-dbb69df .custom-breadcrumb{background-image:url("https://webmakers.in/tmv/wp-content/uploads/2024/11/breadcrumb.jpg");background-position:center center;background-repeat:no-repeat;background-size:cover;}.elementor-777 .elementor-element.elementor-element-dbb69df > .elementor-widget-container{border-radius:16px 16px 16px 16px;}.elementor-777 .elementor-element.elementor-element-dbb69df .custom-breadcrumb .breadcrumb-container-inner{padding-top:120px;padding-bottom:120px;}.elementor-777 .elementor-element.elementor-element-a10717d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:80px;--padding-bottom:80px;--padding-left:10px;--padding-right:10px;}@media(max-width:767px){.elementor-777 .elementor-element.elementor-element-a10717d{--padding-top:50px;--padding-bottom:50px;--padding-left:20px;--padding-right:20px;}}/* Start custom CSS for html, class: .elementor-element-1ac2fa4 */.tour-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px 0;
  background: #fff; /* subtle section background */
}

.tour-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(55,190,0,0.1), rgba(1,162,201,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 12px;
}

.tour-card:hover::before {
  opacity: 1;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.tour-image {
  position: relative;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
  filter: brightness(0.85); /* subtle darken */
}

.badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(45deg, #37BE00, #01A2C9); /* gradient badge */
  color: #fff;
  padding: 7px 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.tour-card:hover .badge {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.tour-content {
  padding: 20px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.tour-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #37BE00;
  transition: color 0.3s ease;
}

.tour-card:hover .tour-content h3 {
  color: #01A2C9;
}

.tour-content p {
  font-size: 15px;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.tour-card:hover .tour-content p {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-view {
  display: inline-block;
  background: linear-gradient(45deg, #FECC6E, #F6A500); /* gradient button */
  color: #000;
  padding: 11px 22px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background: linear-gradient(45deg, #37BE00, #01A2C9);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}/* End custom CSS */