/* Start button css*/
.primary-btn {
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    border: none;
    outline: none !important;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 25px;
    line-height: 1;
    transition: 500ms;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-family: var(--font-rubik);
    z-index: 1;
    border-radius: 5px;
}
.primary-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: var(--primary-color1);
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.primary-btn::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--primary-color2);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.primary-btn span {
  position: relative;
  color: inherit;
  z-index: 2;
  transition: 0s;
}
.primary-btn:hover {
  color: var(--primary-color1);
}
.primary-btn:hover::before {
  top: 100%;
}
.primary-btn:hover::after {
  bottom: -50%;
}
/* End button css*/
/* Air Ambulance Section */
.air-ambulance-banner {
    width: 100%;
    height: 82px;
    background: linear-gradient(90deg, #1a2a4a 0%, #2c3e50 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-left .icon {
    width: 50px;
    height: 50px;
    fill: #e74c3c; /* Red color for the icon */
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.banner-left .text-content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.banner-left .text-content p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #b0c4de; /* Lighter blue for sub-text */
}

.banner-right .emergency-btn {
    background-color: rgb(253, 27, 2); /* Bright red button */
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px; /* Rounded button */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;

    /* --- Blinking Animation for the Button --- */
    animation: blinkButton .7s infinite;
}

@keyframes blinkButton {
    0% { background-color: #002fff; }
    30% { background-color: #ff8800; }
    80% { background-color: rgb(255, 0, 0); }
    100% { background-color: rgb(0, 4, 255); }
}

.banner-right .emergency-btn:hover {
    background-color: #a93226; /* Even darker red on hover */
    transform: scale(1.05);
    animation-play-state: paused; /* Pause blinking on hover */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .air-ambulance-banner {
        padding: 0 15px;
    }
    .banner-left .text-content h3 {
        font-size: 17px;
    }
    .banner-left .text-content p {
        font-size: 11px;
    }
    .banner-right .emergency-btn {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 15px;
    }
    .destination-card .card-title h4 {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .banner-left .icon {
        width: 40px;
        height: 40px;
    }
    .banner-left .text-content h3 {
        font-size: 15px;
    }
    .banner-left .text-content p {
        display: none; /* Hide sub-text on very small screens */
    }
}

/* Car Wrapper */
.car-wrapper {
    border: 1px solid #ffe1b4;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.car-wrapper .car-thumb {
    position: relative;
    margin-bottom: 22px;
    border-radius: 10px;
    overflow: hidden;
}

.car-wrapper .car-thumb img {
    width: 100%;
}
.car-wrapper .car-thumb .distant-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color1);
    color: #fff;
    padding: 0px 10px;
    font-size: 12px;
    border-radius: 0 0 10px 0;
}
.car-wrapper .car-list {
    display: flex;
    background: #f0f1f1;
    align-items: center;
    justify-content: space-around;
    padding: 10px 20px;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 25px;
}
.car-wrapper .car-list-item {
    position: relative;
    z-index: 1;
    padding-right: 17px;
    margin-right: 17px;
}
.car-wrapper .car-list-item::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 15px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: #ffe1b4;
}
.car-wrapper .car-list-item:last-child {
    padding-right: 0;
    margin-right: 0;
}
.car-wrapper .car-list-item:last-child::before {
    display: none;
}
.car-wrapper .car-title {
    margin-bottom: 20px
}
.car-wrapper .car-title a {
    font-size: 24px;
    font-weight: 600;
    color: var(--title-color);
}
.car-title a:hover {
    color: var(--primary-color1);
}
.car-wrapper .car-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.car-wrapper .car-price-subtitle {
    font-size: 12px;
    font-weight: 400;
}
.car-wrapper .car-price-title-thoth {
    text-decoration-line: line-through;
    color: #6f7785;
    font-weight: 400;
    font-size: 16px;
}
.car-wrapper .car-price-title {
    color: var(--primary-color1);
    margin-top: 0;
    font-size: 26px;
    font-weight: 700;
}
.car-wrapper .review-area-new ul li i {
    font-size: 12px;
}
.car-wrapper .review-area-new ul  {
    line-height: 0px;
}
.car-wrapper .review-area-new span {
 font-size: 14px;
}
/* End car css*/

/* Featured Section */
.feature-card-section .feature-wrapper {
    border: 1px solid #ffe1b4;
    border-radius: 10px;
    padding: 30px;
    padding-bottom: 20px;
}
.feature-card-section .feature-icon span {
    width: 64px;
    height: 64px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffe1b4;
    border-radius: 50%;
    margin-bottom: 10px
}
.feature-card-section .feature-icon span img {
    width: 30px;
    height: 30px;
}
.feature-card-section .feature-title {
    font-size: 24px;
    margin-bottom: 10px;
}
.feature-card-section .feature-paragraph {
    font-size: 18px;
}

/* Start destination css*/
.destination-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.destination-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(0deg, rgb(229, 118, 0) 0%, rgba(99, 171, 69,0.2266395905041709) 72%, rgba(0,166,234,0) 100%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 2;
    border-radius: 10px;
}
.destination-wrapper.one .destination-thumb img {
    height: 490px;
}
.destination-wrapper.two .destination-thumb img {
    height: 230px;
}
.destination-wrapper.three .destination-thumb img {
    height: 230px;
}
.destination-wrapper.four .destination-thumb img {
    height: 490px;
}
.destination-thumb img {
    border-radius: 10px;
    object-fit: cover;
}
.destination-wrap h5 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 26px;
}
.destination-wrap {
    position: absolute;
    bottom: 45px;
    left: 15px;
    transform: translateY(180px);
    opacity: 0;
    visibility: hidden;
    transition: .4s ease-in-out;
    z-index: 3;
}
.destination-wrapper:hover .destination-wrap {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    z-index: 3;
}
.destination-wrapper.two .destination-wrap  {
    bottom: 20px;
}
.destination-wrapper.three .destination-wrap  {
    bottom: 20px;
}
.destination-wrapper:hover::before {
    visibility: visible;
    opacity: 1;
}
.destination-button .primary-btn span {
    color: #012549;
}
.destination-button .primary-btn::before {
    background-color: #fff;
}
.destination-button .primary-btn:hover span {
    color: #Fff;
}
/* End destination css*/

/* Visa Proccesign */
.visa-wrapper {
    border: 1px solid #ffe1b4;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.visa-thumb {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.visa-thumb img {
    border-radius: 10px;
}
.visa-tag {
    position: absolute;
    top: 20px;
    left: 0;
}
.visa-tag a {
    background: var(--primary-color1);
    color: #fff;
    padding: 2px 20px 2px 25px;
    border-radius: 0 30px 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.visa-tag a span {
    transform: translateY(-1px);
}
.visa-title {
    border-bottom: 1px solid #ffe1b4;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.visa-title a {
    font-size: 24px;
    font-weight: 700;
    color: var(--title-color);
    font-family: var(--font-rubik);
}
.visa-title a:hover {
    color: var(--primary-color1);
}
.visa-price {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.car-price-title {
    color: var(--primary-color1);
    font-family: var(--font-rubik);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
}
.visa-price-subtitle {
    font-weight: 400;
    font-size: 12px;
}
.visa-button .primary-btn {
    padding: 14px 28px;
}
/* End visa css*/

/* Activities Wrapper */
.tour-wrapper {
    border-radius: 10px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-bottom: 30px;
}
.tour-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.43) 0%, rgba(0, 0, 0, 0.227) 72%, rgba(0,166,234,0) 100%);
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 3;
    border-radius: 10px;
}
.tour-thumb img{
    border-radius: 10px;
}
.tour-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 88%;
    position: absolute;
    bottom: 0;
    left: 20px;
    z-index: 4;
    transition: all .3s ease-in-out;
}
.tour-title {
    color: #fff;
    font-size: 24px;
}
.tour-paragraph {
    color: #fff;
}
.tour-button a {
    width: 44px;
    height: 44px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffe1b4;
    border-radius: 50%;
}
.tour-button a svg {
    transition: .3s;
}
.tour-button a:hover svg {
    fill: var(--primary-color1);
}
/* End tour css*/

.footer-area {
    background-color: #112442;
    padding: 80px 0 0;
}
.footer-col-2 {
    margin-left: 40px;
}
.footer-col-3 {
    margin-left: 50px;
}
.footer-info-desc p {
    opacity: 0.902;
    line-height: 27px;
    color: #fff;
    padding: 25px 0 8px;
}
.footer-social span {
  color: #f7f9fb;
  font-weight: 500;
  margin-right: 10px;
}
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer-social a {
    width: 40px;
    height: 40px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    color: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    overflow: hidden;
    font-size: 14px;
}
.footer-social a:last-child {
  margin-right: 0;
}
.footer-social a:hover {
    background: var(--primary-color1);
    border-color: var(--primary-color1);
    color: #fff;
}
.footer-title {
    font-size: 24px;
    color: #f7f9fb;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    margin-bottom: 26px;
}
.footer-menu li {
  margin-bottom: 5px;
  list-style: none;
}
.footer-menu li a {
  color: #Fff;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.footer-menu li a::before {
  position: absolute;
  content: "";
  z-index: -1;
  left: -16px;
  top: 34%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}
.footer-menu li a:hover::before {
  visibility: visible;
  opacity: 1;
  transform: translateX(10px);
}
.footer-menu li a:hover {
  color: #Fff;
  padding-left: 10px;
}
.footer-info li {
  display: grid;
  margin-bottom: 10px;
}
.footer-info li span {
  line-height: 27px;
  color: #f7f9fb;
  font-weight: 600;
}
.footer-info li img {
    margin-right: 12px;
    max-width: 16px;
}
.footer-info li a {
  line-height: 27px;
  color: #f7f9fb;
  margin-left: 32px;
  display: inline-block;
}
.footer-info li a:hover {
    color: var(--primary-color1);
}
.footer-subscribe-desc p {
  color: #f7f9fb;
}
.footer-subscribe-widget {
  position: relative;
}
.footer-subscribe-widget input {
  width: 100%;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  border-radius: 5px;
  background-color: #Fff;
  margin-bottom: 25px;
  outline: 0;
}
.footer-subscribe-widget input::placeholder {
  font-size: 17px;
  color: #888f99;
}
.footer-subscribe-widget input:focus {
    border-color: 1px solid var(--primary-color1);
}
.footer-bg {
  margin-top: 35px;
  padding: 20px 0 20px;
  text-align: center;
  border-top: 1px solid rgba(136, 143, 153, 0.2);
}
.footer-bottom-content p {
  margin: 0;
  line-height: 27px;
  color: #f7f9fb;
}
.footer-bottom-content p a {
    color: var(--primary-color1);
}
.footer-bottom-content p a:hover {
    color: #fff;
}
.footer-bottom-content-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* End Footer css*/
