.page-banner {
  background: #0f8dc0;
  background-size: cover;
  background-position: center;
  padding: 20px 0 0;
  color: #fff;
  margin-bottom: 0px;
}
.page-banner .banner-title {
  font-size: 36px;
  margin-bottom: 0px;
  position: relative;
  padding-bottom: 15px;
}
.page-banner .breadcrumb {
  background: transparent;
  justify-content: center;
}
.page-banner .breadcrumb-item {
  color: #fff;
}
.page-banner .breadcrumb-item a {
  color: #fff;
}
.page-banner .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}

.services-section {
  padding: 60px 0 0;
}
.services-section .title-2 {
  color: #0f8dc0;
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 600;
}
.services-section .service-category {
  margin-bottom: 2px;
  padding: 30px;
  background: #d9f9ff;
  border-radius: 10px;
  border: 1px solid rgba(15, 141, 192, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.services-section .service-category:hover .category-header .icon-wrapper {
  background: #0f8dc0;
}
.services-section .service-category:hover .category-header .icon-wrapper i {
  color: #fff;
}
.services-section .service-category .category-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 0px;
  border-bottom: 1px solid rgba(15, 141, 192, 0.1);
  background: #5fe7ff;
  border-radius: 100px;
}
.services-section .service-category .category-header .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(15, 141, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}
.services-section .service-category .category-header .icon-wrapper i {
  font-size: 24px;
  color: #0f8dc0;
  transition: all 0.3s ease;
}
.services-section .service-category .category-header h2 {
  margin: 0;
  color: #0b6a91;
  font-size: 28px;
}
.services-section .destination-group {
  margin-bottom: 40px;
}
.services-section .destination-group h3 {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.services-section .destination-group h3 i {
  color: #0f8dc0;
  margin-right: 10px;
}
.services-section .country-card {
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  height: 100%;
}
.services-section .country-card i {
  color: #0f8dc0;
  margin-right: 10px;
  font-size: 16px;
}
.services-section .country-card span {
  color: #333;
  font-size: 12px;
}
.services-section .country-card:hover {
  transform: translateY(-3px);
}
.services-section .worldwide-note {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 30px;
  background: rgba(15, 141, 192, 0.02);
  border-radius: 10px;
}
.services-section .worldwide-note i {
  font-size: 40px;
  color: #0f8dc0;
  margin-right: 20px;
}
.services-section .worldwide-note p {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.timeline-section {
  padding: 60px 0 20px;
  background: rgba(15, 141, 192, 0.02);
}
.timeline-section .section-header {
  margin-bottom: 0px;
}
.timeline-section .section-header h2 {
  color: #0b6a91;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.timeline-section .section-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #0f8dc0, #45bff0);
}

.timeline-wrapper {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}
.timeline-wrapper .timeline-snake {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}
.timeline-wrapper .timeline-snake:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(15, 141, 192, 0.1);
  z-index: 1;
}

.timeline-point {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.timeline-point span {
  font-weight: 600;
  color: #0f8dc0;
}
.timeline-point i {
  width: 30px;
  height: 30px;
  background: #0f8dc0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-point.start {
  left: 0;
}
.timeline-point.end {
  right: 0;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 30px;
  position: relative;
  z-index: 2;
}

.timeline-step {
  position: relative;
}
.timeline-step:nth-child(n+4) {
  margin-top: -50px;
}
.timeline-step:nth-child(n+7) {
  margin-top: -50px;
}
.timeline-step .step-content {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}
.timeline-step .step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.timeline-step .step-content:hover .step-icon {
  transform: scale(1.1);
}
.timeline-step .step-content .step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}
.timeline-step .step-content .step-icon i {
  font-size: 28px;
  color: #fff;
}
.timeline-step .step-content h3 {
  font-size: 16px;
  margin: 0;
  color: #333;
}
.timeline-step .step-content .step-arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
}
.timeline-step .step-content .step-arrow.right {
  right: -10px;
  top: 50%;
  margin-top: -10px;
}
.timeline-step .step-content .step-arrow.left {
  left: -10px;
  top: 50%;
  margin-top: -10px;
}

.timeline-steps:after {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  height: 50%;
  border: 2px solid rgba(15, 141, 192, 0.1);
  border-radius: 20px;
  z-index: -1;
}

.step-yellow .step-icon {
  background: #ffc107;
}

.step-orange .step-icon {
  background: #fd7e14;
}

.step-red .step-icon {
  background: #dc3545;
}

.step-teal .step-icon {
  background: #20c997;
}

.step-purple .step-icon {
  background: #6f42c1;
}

@media (max-width: 991px) {
  .page-banner {
    padding: 80px 0;
  }
  .page-banner .banner-title {
    font-size: 40px;
  }
  .services-section .service-category {
    padding: 20px;
  }
  .services-section .service-category .category-header h2 {
    font-size: 24px;
  }
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-step:nth-child(n+3) {
    margin-top: -50px;
  }
  .timeline-step:nth-child(n+5) {
    margin-top: -50px;
  }
}
@media (max-width: 768px) {
  .page-banner {
    padding: 23px 0 5px;
  }
  .page-banner .banner-title {
    font-size: 32px;
  }
  .services-section .worldwide-note {
    flex-direction: column;
    text-align: center;
  }
  .services-section .worldwide-note i {
    margin: 0 0 15px 0;
  }
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .timeline-step {
    margin-top: 0 !important;
  }
  .timeline-point {
    display: none;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  font-size: 14px;
}

.timeline {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 0;
}
.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background: #006E51;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
.timeline .container {
  padding: 15px 30px;
  position: relative;
  background: inherit;
  width: 50%;
}
.timeline .container.left {
  left: 0;
}
.timeline .container.right {
  left: 50%;
}
.timeline .container::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: -8px;
  background: #ffffff;
  border: 2px solid #006E51;
  border-radius: 16px;
  z-index: 1;
}
.timeline .container.right::after {
  left: -8px;
}
.timeline .container::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  top: calc(50% - 1px);
  right: 8px;
  background: #006E51;
  z-index: 1;
}
.timeline .container.right::before {
  left: 8px;
}
.timeline .container .date {
  position: absolute;
  display: inline-block;
  top: calc(50% - 8px);
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #006E51;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}
.timeline .container.left .date {
  right: -75px;
}
.timeline .container.right .date {
  left: -75px;
}
.timeline .container .icon {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 9px 0;
  top: calc(50% - 20px);
  background: #F6D155;
  border: 2px solid #006E51;
  border-radius: 40px;
  text-align: center;
  font-size: 18px;
  color: #006E51;
  z-index: 1;
}
.timeline .container.left .icon {
  right: 56px;
}
.timeline .container.right .icon {
  left: 56px;
}
.timeline .container .content {
  padding: 30px 90px 30px 30px;
  background: #F6D155;
  position: relative;
  border-radius: 0 500px 500px 0;
}
.timeline .container.right .content {
  padding: 30px 30px 30px 90px;
  border-radius: 500px 0 0 500px;
}
.timeline .container .content h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: normal;
  color: #006E51;
}
.timeline .container .content p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

@media (max-width: 767.98px) {
  .timeline::after {
    left: 90px;
  }
  .timeline .container {
    width: 100%;
    padding-left: 120px;
    padding-right: 30px;
  }
  .timeline .container.right {
    left: 0%;
  }
  .timeline .container.left::after, .timeline .container.right::after {
    left: 82px;
  }
  .timeline .container.left::before, .timeline .container.right::before {
    left: 100px;
    border-color: transparent #006E51 transparent transparent;
  }
  .timeline .container.left .date, .timeline .container.right .date {
    right: auto;
    left: 15px;
  }
  .timeline .container.left .icon, .timeline .container.right .icon {
    right: auto;
    left: 146px;
  }
  .timeline .container.left .content, .timeline .container.right .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
  }
}
.destinations-wrapper .col-lg-4.right-border {
  border-right: 2px solid #07a7c3;
  background: #d9f9ff;
  padding: 15px;
  min-height: 400px;
}
@media screen and (max-width: 768px) {
  .destinations-wrapper .col-lg-4.right-border {
    border-right: none;
    min-height: auto;
  }
}
.destinations-wrapper .col-lg-4 {
  height: 100%;
}
.destinations-wrapper .col-lg-4:last-child {
  border-right: none;
}
.destinations-wrapper .col-lg-8 {
  height: 100%;
}
.destinations-wrapper .col-lg-8 .row {
  height: 100%;
}
.destinations-wrapper .col-lg-8 .row .col-lg-12 {
  height: 100%;
  margin-top: 15px !important;
}
.destinations-wrapper .col-lg-8 .row .col-lg-12 .destination-group {
  height: 100%;
}
.destinations-wrapper .col-lg-8 .row .col-lg-12 .destination-group h3 {
  margin-bottom: 40px;
}
.destinations-wrapper .col-lg-8 .row .col-lg-4 .destination-group {
  height: 100%;
}
.destinations-wrapper .col-lg-8 .row .col-lg-4 .destination-group h3 {
  margin-bottom: 40px;
}

.our-route-plan {
  text-align: center;
  background-color: rgb(30, 221, 255);
  color: black !important;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 600;
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .our-route-plan {
    margin-bottom: 25px;
    width: 65%;
    font-size: 20px !important;
  }
}

.our-route-plan-img {
  border-radius: 10px;
  border: 2px solid #07a7c3;
  background-color: #d9f9ff;
  margin-bottom: 50px;
}/*# sourceMappingURL=services.css.map */