body{
    
}
.more_details {
    background-color: #de6d25 !important;
    color: white !important;
    border-color: #de6d25 !important;
}

.more_details:hover {
    background-color: #de6d25 !important;
    color: white !important;
    border-color: #de6d25 !important;
}
.economy_btn{
          background-color: #254a66 !important;
    font-size: medium;
    font-weight: 400;
  }
     .plane-animation {
    position: relative;
    display: inline-block;
    animation: fly-across 4s ease-in-out infinite;
  }

  @keyframes fly-across {
    0% {
      left: -100px;
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    50% {
      left: 0;
    }
    80% {
      opacity: 1;
    }
    100% {
      left: 100px;
      opacity: 0;
    }
  }
  
  /*// Fligth deatlis*/ 
  
  
  .flight-segment {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
  }

  .flight-line {
    border-left: 2px solid #ccc;
    margin-left: 8px;
    position: relative;
    padding-left: 15px;
  }

  .flight-line::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #6c63ff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: -6px;
  }

  .connection-info {
    border: 2px solid #6c63ff;
    border-radius: 20px;
    padding: 5px 10px;
    margin: 10px 0;
    display: inline-block;
    background: #fff;
    color: #fff;
    font-size: 14px;
    position: relative;
  }

  .connection-info span {
    background: #e74c3c;
    border-radius: 5px;
    padding: 2px 10px;
    display: inline-block;
  }

  .flight-badge {
    background: #f2f2f2;
    border-radius: 30px;
    padding: 3px 10px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .flight-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eee;
  }

  .dot {
    width: 6px;
    height: 6px;
    background: #444;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
  }
  .img_card{
      border-radius: 22px
  }
  
  
/*  .wrapper .card {
  background: #fff;
  display: flex;
  height: auto;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}*/
.wrapper .card:hover {
  transform: translateY(-10px);
}
.card .card-image {
  position: relative;
}
.card .card-image img {
  width: 100%;
  /*padding: 10px;*/
}

.card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 25px 25px;
}
.card .card-content .card-title {
  color: #111111;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}
.card .card-content .card-text {
  color: #747474;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.card .card-footer {
  display: flex;
  margin-top: auto;
  align-items: center;
  padding-top: 15px;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.card .card-footer .card-profile {
  display: flex;
  align-items: center;
}
.card .card-profile .card-profile-info {
  display: flex;
  flex-direction: column;
}
.card .card-profile .card-profile-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #202020;
}
.card .card-profile .card-profile-role {
  font-size: 0.8rem;
  color: #7A7A7A;
}
.card .card-profile img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card .card-button {
color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.81rem;
    font-weight: 600;
    text-decoration: none;
    background:#0393D2;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    width: 80%;
    text-align: center;
    margin: auto;
    display: block;
}
.card .card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(99, 102, 241, 0.3);
}
.wrapper .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  opacity: 1;
  overflow: hidden;
  position: relative;
  background: #B1B3F8;
}
.wrapper .swiper-pagination-bullet-active {
  background: #a4a7fd;
}
/* Auto-play loading indicator */
.wrapper .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #6366f1;
  transform-origin: left center;
  transform: scaleX(0);
  animation: autoplay-loading 5s linear forwards;
}
.container:hover .wrapper .swiper-pagination-bullet-active::before {
  animation-play-state: paused;
}
@keyframes autoplay-loading {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.wrapper :where(.swiper-button-prev, .swiper-button-next) {
  color: #6366f1;
  margin-top: -35px;
  transition: all 0.3s ease;
}
.wrapper :where(.swiper-button-prev, .swiper-button-next):hover {
  color: #8b5cf6;
}
/* Responsive media query code for small screens */
@media (max-width: 768px) {
  .wrapper {
    margin: 0 10px 25px;
  }
  .wrapper :where(.swiper-button-prev, .swiper-button-next) {
    display: none;
  }
}
/*logo CSS*/

 .client-logo {
      max-width: 100%;
      height: auto;
      /*filter: grayscale(100%);*/
      transition: filter 0.3s ease;
    }

    .client-logo:hover {
      filter: grayscale(0%);
    }

    .logo-container {
/*      padding: 1rem;
      margin: 0.5rem;*/
      text-align: center;
      border: 1px solid #dee2e6;
      border-radius: 5px;
      background-color: #fff;
    }
    
    /*country css*/
    
    figure.snip1206 {
  font-family: 'Raleway', Arial, sans-serif;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 10px;
/*  min-width: 220px;
  max-width: 310px;
  max-height: 220px;*/
  width: 100%;
  color: #000000;
  text-align: center;
}
figure.snip1206 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
figure.snip1206 img {
  opacity: 1;
  width: 100%;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
figure.snip1206:after {
  background: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  opacity: 0.75;
  -webkit-transform: skew(-45deg) scaleX(0);
  transform: skew(-45deg) scaleX(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
figure.snip1206 figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
figure.snip1206 h2,
figure.snip1206 p {
  margin: 0;
  width: 100%;
  opacity: 0;
}
figure.snip1206 h2 {
  padding: 0 30px;
  display: inline-block;
  font-weight: 400;
  text-transform: uppercase;
}
figure.snip1206 p {
  padding: 0 50px;
  font-size: 0.8em;
  font-weight: 500;
}
figure.snip1206 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
figure.snip1206:hover:after,
figure.snip1206.hover:after {
  -webkit-transform: skew(-45deg) scaleX(1);
  transform: skew(-45deg) scaleX(1);
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
figure.snip1206:hover figcaption h2,
figure.snip1206.hover figcaption h2,
figure.snip1206:hover figcaption p,
figure.snip1206.hover figcaption p {
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
figure.snip1206:hover figcaption h2,
figure.snip1206.hover figcaption h2 {
  opacity: 1;
}
figure.snip1206:hover figcaption p,
figure.snip1206.hover figcaption p {
  opacity: 0.7;
}
/* Button initially hidden */
.hover-button-wrapper {
  margin-top: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Style the button itself */
.hover-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #007bff; /* Bootstrap blue */
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Show on hover */
figure.snip1206:hover .hover-button-wrapper,
figure.snip1206.hover .hover-button-wrapper {
  opacity: 1;
  transform: translateY(0);
}
    /*flight details css*/
    
    
      .price-box h4 {
      color: #1c5991;
      margin-bottom: 20px;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      color: #444;
    }

    .total {
      font-size: 22px;
      color: #1c5991;
      font-weight: bold;
      margin-top: 20px;
    }

    .support {
      margin-top: 40px;
      color: #333;
      font-size: 16px;
          text-align: center;
    }

    @media(max-width: 768px) {
      .booking-wrapper {
        flex-direction: column;
      }
      .left-col, .right-col {
        border-right: none;
        padding: 20px;
      }
    }
    .price-box{
           padding: 30px 30px 40px;
    background-color: rgb(70 195 255 / 11%);
    border: 1px solid #36799f00;
    }
    
    /*/FAQS*/
    
    
    

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
  border-top: none;
    border-left: none;
    border-right: none;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #03b5d2;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: grey;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #03b5d2;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: max-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}



/*Terms And Conditions*/


.termsAndConditionsHeading{
  margin-top: 70px;
  margin-bottom: 30px;
  font-size: 32px;
}
.termsParagraphIntro{
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.spangleWelcome{
  font-weight: 500;
}
.serviceLeadingSection{
  width: 80%;
  margin-top: 15px;
  margin-bottom:15px;
}
.sn{
  font-size: 32px;
  padding-right: 5px;
}
.st{
  font-size: 32px;
}
.spl{
  margin-top: 15px;
  margin-bottom: 15px;

}
.serviceInfoContainer{
  position:relative;
  width: 100%;    
}
.serviceLead{
  font-weight: 700;
  margin-left: 15px;  
  margin-top: 15px;
  margin-block-end: 5px;  

}
.serviceDetails{
  margin-left: 15px;
}

.displayNone{
  display:none;
}
.secionLine{
  height: 40px;
  width:5px;

  position:absolute;
  top:7px;
}
/*Font Colours below*/
.lightGreen{
  color: rgb(85, 189, 134);
}
.blue{
  color: #2998ff;
}
.orange{
  color: #ff7730;
}
.purple{
  color: #2a0073
}

/*Set the colours for the lines*/

.lineColorGreen{
  background-image: linear-gradient(to right bottom, rgb(85, 189, 134), rgb(11, 103, 92));
}
.lineColorBlue{
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}
.lineColorOrange{
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}
.lineColorPurple{
  background-image: linear-gradient(to bottom right, #b25f88, #2a0073)
}
.closeTerms{
  border-bottom: 1px solid black;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.fadeIn{
  animation-name: fadeIn;
  animation-duration: .8s;
  animation-timing-function: ease-out;
  z-index: 1001;
}

@keyframes fadeIn{
  0% {

    opacity: 0;
  }
  100%{

    opacity: 1;
  }
}

/* .flight-deals {
      padding: 60px 20px;
      text-align: center;
    }

    .flight-deals .title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .flight-deals .subtitle {
      font-size: 18px;
      color: #b3b3b3;
      margin-bottom: 10px;
    }

    .flight-deals .description {
      max-width: 600px;
      margin: 0 auto 40px auto;
      font-size: 14px;
      color: #6e6e6e;
      line-height: 1.6;
    }

    .deals-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px 60px;
      max-width: 900px;
      margin: 0 auto;
    }

    .deal-item {
      border-bottom: 1px solid #3d2a4d;
      text-align: left;
    }

     Header Button 
    .deal-header {
      width: 100%;
      background: none;
      border: none;
      font-weight: bold;
      font-size: 16px;
      color: #3c3c3c;
      padding: 10px 0;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .deal-header:hover {
      color: #0393d2;
    }

    .arrow {
      transition: transform 0.3s;
    }

     Content Hidden by default 
    .deal-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      font-size: 14px;
      color: #6e6e6e;
      padding-left: 5px;
    }

    .deal-item.active .deal-content {
      max-height: 300px;  Enough space for content 
    }

    .deal-item.active .arrow {
      transform: rotate(180deg);
    }

     Responsive 
    @media (max-width: 768px) {
      .deals-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .deals-grid {
        grid-template-columns: 1fr;
      }
    }
 
    */
    
/*country css pages*/    
 .flight-deals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

/* Card Styling */
.flight-card {
  /*position: relative;*/
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  /*overflow: hidden;*/
  margin-top: 30px; /* space for floating badges */
}

/* Floating badge row */
.badge-row {
  position: relative;
  top: -15px;
  left: 15px;
  display: flex;
  gap: 10px;
}

.badge {
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.badge.type {
  background: #333;
  color: #fff;
}

.badge.type.return {
  background: #555;
}

.badge.found {
  background: #e0e0e0;
  color: #555;
}

/* Content Layout */
.flight-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

/* Left Section */
.left {
  display: flex;
  align-items: center;
}

.airline-logo {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.route-details h4 {
  margin: 0;
  font-size: 18px;
}

.route-details p {
  margin: 2px 0;
  font-size: 14px;
  color: #666;
}

.route-details .date {
  font-size: 13px;
  color: #555;
}

/* Right Section */
.right {
  text-align: right;
}

.price {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.pick-btn {
  background: #0393D2;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 6px;
  font-weight: bold;
  transition: background 0.2s ease;
  color: white;
}

.pick-btn:hover {
  background: #0393D2;
}
/* Modal Overlay */
.modal.show .modal-dialog {
    transform: none;
    max-width: 50%;
}


.mode-switch > label.mode-switch-inner:after{
        background: #112f3e !important;
        color: white;
}

.form-check-input:checked[type=radio]{
    background:#112f3e !important;
    border: 1px solid #112f3e !important;
}

.mode-switch input[type=checkbox]:checked + label.mode-switch-inner:after {
    background: #112f3e !important;
}