:root {
  --text-color: #000;
  --primary-color: #d70000;
  --secondary-color: #d70000;
}


.breadcrumb-section {
  position: relative;
  padding: 120px 0;
  background: url('../images/bg-in.png') center center / cover no-repeat;
}

/* Dark overlay */
.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Keep text above overlay */
.breadcrumb-section .container {
  position: relative;
  z-index: 1;
}

/* Breadcrumb style */
.breadcrumb {
  background: transparent;
  justify-content: center;
  align-items: center;
  display: flex;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item.active {
  color:#fff;
  font-weight: 300;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  color: #ffffff;
}

/* Title */
.breadcrumb-section h1 {
  font-size: 2.6rem;
}



/* SECTION */
.about-section {
  background: #ffffff;
}

/* SUBTITLE */
.section-subtitle {
  color: #ff6b4a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

/* IMAGE GRID */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 15px;
  position: relative;
}

.image-grid .img {
  overflow: hidden;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* GRID POSITION */
.img-1 {
  grid-row: span 2;
}

.img-2 {
  grid-column: 2;
}

.img-3 {
  grid-column: 2;
}

/* HOVER ANIMATION */
.image-grid .img:hover img {
  transform: scale(1.1);
}

/* FEATURES */
.about-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.about-feature i {
  font-size: 26px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.about-feature h6 {
  margin-bottom: 4px;
  font-weight: 600;
}

.about-feature p {
  margin: 0;
  color: #6c757d;
  font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .image-grid {
    grid-template-rows: repeat(2, 150px);
  }
}






.offer-section {
  background: url("../images/contact-bg.jpg") center/cover no-repeat;
  position: relative;
  padding: 60px 0;
}

.offer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 35, 65, 0.75);
}


#testimonial .overlap-left {
  margin-left: -100px;
}



.services-section {
  background: #f8fafc;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d70000d1, #802121);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}



.service-card a:hover {
  text-decoration: none;
}


.explore-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #d70000;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Arrow animation */
.explore-link span {
  display: inline-block;
  transition: transform 0.3s ease;
}


/* Hover Effects */
.explore-link:hover {
  color: #d70000;
}

.explore-link:hover span {
  transform: translateX(6px);
}



.section_faq {
  background: #0a223c;
}

.section_faq .accordion-item {
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.05) !important;
}

.section_faq .accordion-button {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
  font-size: 18px;
  font-weight: 400;
}

.accordion-button:not(.collapsed) {
  color: #ffffff !important;
  background: linear-gradient(135deg, #d70000, #8f0305);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}


.section_faq {
  background:linear-gradient(#000000b5), url(../images/contact-bg.jpg) center / cover no-repeat;
  padding: 60px 0;
}


.section_faq .accordion-body {
  color: #fff;
  font-size: 16px;
  font-weight: 200;
}

.section_faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
  filter: invert(1);
  /* Makes the icon white */
}

.section_faq .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}


.section_faq .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  border: 1px solid #fff;
  border-radius: 51px;
  padding: 13px 21px;
  background: linear-gradient(135deg, #d70000, #500404);

}

.section_faq .nav-pills .nav-link {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 51px;
  padding: 13px 21px;
}


.why-choose {
  background: linear-gradient(#ad0909, #802121), url(../images/why-choose-bg.png) center / cover no-repeat;
  background-blend-mode: multiply;
}

.why-choose {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.image-wrap {
  position: relative;
  border-radius: 0 180px 180px 0;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.customer-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid #fff;
}

.subtitle {
  font-style: italic;
  opacity: 0.8;
}

.feature {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.check {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #d70000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}


.support-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease;
}


.support-img {
  max-width: 100%;
  border-radius: 16px;
}

.support-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #495057;
  margin-bottom: 10px;
  font-size: 15px;
}

.support-list i {
  color: #d70000d1;
  font-size: 16px;
}


/* SECTION */
.section_counter {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

/* HEADING */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b2c3d;
}

.section-desc {
  font-size: 1rem;
  color: #6c757d;
  margin-top: 10px;
}

/* COUNTER CARD */
.counter-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.counter-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(134deg, var(--primary-color), #630000);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-icon i {
  font-size: 26px;
  color: #ffffff;
}

/* NUMBER */
.counter {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0b2c3d;
  margin-bottom: 5px;
}

/* TEXT */
.counter-card p {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
}

.flight-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.trip-type label {
  cursor: pointer;
}

.multi-row {
  border: 1px dashed #ddd;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.remove-btn {
  cursor: pointer;
  color: red;
}

/* Inner Hero */
.inner-hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('assets/images/services-banner.jpg') center/cover no-repeat;
  padding: 120px 0;
}

.inner-hero-section h1 {
  font-size: 48px;
  font-weight: 700;
}

.inner-hero-section p {
  font-size: 18px;
  opacity: 0.9;
}


/* ============Service Card============= */

.service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #ffdede;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #d70000;
  transition: 0.4s;
}

/* Hover Effect */
.service-card:hover {
  background: #d70000;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover h4,
.service-card:hover ul li {
  color: #ffffff;
}

.service-card:hover .service-icon {
  background: #ffffff;
  color: #d70000;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  margin-bottom: 8px;
  color: #555;
  transition: 0.3s;
}


.contact-section {
    background: #f8f9fa;
}

.contact-card {
    background: #e9ecef;
    padding: 20px;
    border-radius: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background:var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.contact-form {
    background:var(--secondary-color);
    border-radius: 20px;
}

.contact-form .form-control {
    background: #fff;
    border: none;
    color: #000;
    padding: 12px;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: #333;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #000000;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: #000;
}

/* =========================
Section 
========================= */

.how-section{
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

.badge-title{
    display:inline-block;
    background:#fff3e6;
    color:#ff7a00;
    padding:6px 18px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    margin-bottom:30px;
}

.section-heading{
    font-size:46px;
    font-weight:700;
    margin-bottom:10px;
}

/* Step Card */
.step-card{
    text-align:center;
    position:relative;
    transition:0.4s ease;
}

.step-circle{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#ffffff;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    position:relative;
    transition:0.4s;
}

.step-card:hover .step-circle{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.step-number{
    position:absolute;
    top:-12px;
    right:-12px;
    background:#000;
    color:#fff;
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

.step-icon{
    font-size:38px;
    color:#d70000;
}

.step-card h5{
    font-weight:600;
    margin-bottom:12px;
}

.step-card p{
    color:#666;
    font-size:14px;
    max-width:350px;
    margin:auto;
}

/* SVG Curve Line */
.curve-line{
    position:absolute;
    top:200px;
    left:0;
    width:100%;
    z-index:-1;
}

.curve-line path{
    fill:none;
    stroke:#5dbb63;
    stroke-width:2;
    stroke-dasharray:6;
    animation:dash 6s linear infinite;
}

@keyframes dash{
    to{
        stroke-dashoffset:-100;
    }
}

@media(max-width:991px){
    .curve-line{
        display:none;
    }
    .section-heading{
        font-size:32px;
    }
}




/* =========================
   RESPONSIVE STYLES
========================= */

/* ----------- Tablets (max-width: 991px) ----------- */
@media (max-width: 991px) {

  .offer-section,
  .section_faq,
  .why-choose {
    padding: 50px 0;
  }

  #testimonial .overlap-left {
    margin-left: 0;
  }

  .service-card {
    padding: 30px 20px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .image-wrap {
    border-radius: 0 120px 120px 0;
  }

  .customer-badge {
    bottom: 25px;
    left: 25px;
    padding: 12px 16px;
    gap: 20px;
  }

  .avatars img {
    width: 32px;
    height: 32px;
  }

  .feature {
    gap: 12px;
  }

  .check {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .support-box {
    padding: 30px;
  }
}


/* ----------- Mobile (max-width: 767px) ----------- */
@media (max-width: 767px) {

  :root {
    --text-color: #000;
  }

  .offer-section,
  .section_faq,
  .why-choose {
    padding: 40px 0;
    text-align: center;
  }

  .service-card {
    padding: 25px 18px;
  }

  .service-card h5 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .icon-circle {
    margin: 0 auto 15px;
  }

  .explore-link {
    justify-content: center;
  }

  .image-wrap {
    border-radius: 20px;
    margin-bottom: 25px;
  }

  .customer-badge {
    position: static;
    margin-top: 15px;
    justify-content: center;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .check {
    margin-bottom: 10px;
  }

  .section_faq .accordion-button {
    font-size: 16px;
  }

  .section_faq .accordion-body {
    font-size: 14px;
  }

  .section_faq .nav-pills {
    justify-content: center;
    gap: 10px;
  }

  .section_faq .nav-pills .nav-link {
    padding: 10px 18px;
    font-size: 14px;
  }

  .support-box {
    padding: 25px;
  }

  .support-list li {
    font-size: 14px;
  }
}


/* MOBILE */
@media (max-width: 576px) {
  .section-title {
    font-size: 1.7rem;
  }

  .counter {
    font-size: 1.8rem;
  }

  .breadcrumb-section {
    padding: 90px 0;
  }

  .breadcrumb-section h1 {
    font-size: 2rem;
  }
}

/* ----------- Small Mobile (max-width: 480px) ----------- */
@media (max-width: 480px) {

  .icon-circle {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .customer-badge {
    padding: 10px 14px;
    border-radius: 30px;
  }

  .avatars img {
    width: 28px;
    height: 28px;
  }

  .support-box {
    padding: 20px;
  }
}