body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  margin: 0;
}

/* Header */
.navbar {
  background-color: #1a1f36;
}

.navbar-brand,
.nav-link {
  color: white !important;
}

.navbar-nav .nav-link:hover {
  color: #00cfff !important;
}
.navbar-toggler {
  background: aliceblue;
}
/* Tagline badge */
.tagline {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin: 2rem 0;
  font-size: 1rem;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tagline:hover {
  background: linear-gradient(to right, #2563eb, #7c3aed);
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Button group layout */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
  }
}
/* Get Free Quote Quiz */
/* Section Styling */
.quiz-section {
  background: linear-gradient(
    135deg,
    var(--bs-danger-text-emphasis),
    var(--bs-danger-border-subtle)
  );
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* Container */
.quiz-container {
  background: #ffffff10;
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Headings */
.quiz-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.sub-text {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Quiz Steps */
.quiz-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.quiz-step.active {
  display: block;
}

.quiz-step h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Options */
.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.option {
  background: #fff;
  color: #0e4d92;
  border: none;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.option:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

/* Buttons */
.next-btn,
.finish-btn,
.cta-btn {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.next-btn:hover,
.finish-btn:hover,
.cta-btn:hover {
  background: #fff;
  color: #0e4d92;
  transform: scale(1.05);
}

/* Result Box */
.quiz-result {
  display: none;
  animation: fadeIn 0.6s ease;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Flash Deals Section */
.exclusive-flash-deals {
  background: #fef2f2;
  /* Dark background */
  color: #fff;
}

.flash-deals {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  font-weight: 600;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  /* blue to purple */
  padding: 0.75rem 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

/* Flight Grid Layout */
.flight-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 0 1rem;
}

/* Flight Cards */
.flight-card {
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.flight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15);
}

/* Price Tag */
.price {
  font-size: 1.75rem;
  font-weight: bold;
  color: #111;
}

/* Discount Badge */
.discount-badge- {
  background-color: #dc2626;
  color: #fff;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
  font-weight: 600;
  align-self: flex-start;
}

/* CTA Button */
.cta {
  background: linear-gradient(to right, #0e4d92, #00bfa6);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.2rem;
  margin-top: 0.75rem;
  border-radius: 9999px;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}

.cta:hover {
  background: linear-gradient(to right, #0a3a72, #009c8b);
}

/* Theme Variants (you can assign these to each card for color variety) */
.blue-purple {
  border-left: 6px solid #6366f1;
}

.green-teal {
  border-left: 6px solid #10b981;
}

.purple-pink {
  border-left: 6px solid #d946ef;
}

.yellow-red {
  border-left: 6px solid #f59e0b;
}
/*Ready to travel*/
@keyframes bluePurpleBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.ready-to-travel {
  background: linear-gradient(
    270deg,
    #312e81,
    #4f46e5,
    #c562af,
    #312e81,
    #7e22ce,
    #be185d
  );
  background-size: 800% 800%;
  animation: bluePurpleBackground 15s ease infinite;
  padding: 60px 20px;
}
/*why trust with us*/
.step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.speed-icon {
  background-color: #210340;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speed-icon:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); */
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.security-icon {
  background-color: #6d28d9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-icon:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.price-icon {
  background-color: #63362f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-icon:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.support-icon {
  background: linear-gradient(to right, #dc2626, #ea580c);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-icon:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.step-card {
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
/*Ready to Save Money*/
/* Section Background */
.why-choose-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #ebf8ff, #ffffff, #e6fffa);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.why-choose-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.why-choose-section .heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 50px;
  position: relative;
}

.why-choose-section .heading .underline {
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #38b2ac, #3182ce);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Feature Card */
.feature-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #38b2ac;
}

/* Icon Circle */
.feature-card .icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c6f6d5, #9ae6b4);
  color: #2f855a;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  transition: transform 0.3s ease;
}

.feature-card:hover .icon {
  transform: scale(1.15) rotate(-5deg);
}

/* Text */
.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 6px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
}
/* Quiz Container */
#quote-quiz {
  background: linear-gradient(to right, #1b1464, #4a148c);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Decorative Wave */
#quote-quiz::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("https://i.ibb.co/ZVh01dm/wave.png") repeat-x;
  background-size: contain;
  opacity: 0.2;
}

/* Heading */
#quote-quiz h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Description */
#quote-quiz p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #e0e0e0;
}

/* Options */
.quiz-step button {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 12px auto;
  padding: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #ffd700, #ff9800);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quiz-step button:hover {
  background: linear-gradient(45deg, #ffb300, #f57c00);
  transform: scale(1.05);
}

/* Hidden Steps */
.quiz-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

/* Active Step */
.quiz-step.active {
  display: block;
}

/* Result Box */
#quote-result {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin-top: 20px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 500;
  color: #ffd700;
  display: none;
  animation: slideUp 0.6s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ready-to-save {
  background-color: #f0fdf4;
}
/* Top Cruise Packages*/
/* Section Styling */
.top-packages-section {
  background: #f9fafc;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
}
.section-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

/* Package Card */
.package-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.package-card:hover img {
  transform: scale(1.05);
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Body */
.package-body {
  padding: 15px;
  flex-grow: 1;
}
.package-body h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}
.package-body p {
  font-size: 0.9rem;
  color: #374151;
  margin: 5px 0;
}
.rating {
  font-size: 0.9rem;
  font-weight: 500;
  color: #f59e0b;
}

/* Footer */
.package-footer {
  background: #f3f4f6;
  padding: 10px;
  text-align: center;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.contact-btn:hover {
  background: #1d4ed8;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  margin-bottom: 25px;
  overflow: hidden;
}
.progress-fill {
  width: 25%;
  height: 100%;
  background: #ffd700;
  border-radius: 5px;
  transition: width 0.4s ease;
}

/* Buttons */
.quiz-btn {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  color: #1b1464;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-btn:hover {
  background: #ffd700;
  color: #1b1464;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* CTA button */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  margin-top: 20px;
  background: #ffd700;
  color: #1b1464;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #fff;
  color: #1b1464;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Steps hidden by default */
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*Ready to begin Journey*/
:root {
  --accent: #0e4d92;
  /* navy */
  --accent-2: #00bfa6;
  /* teal */
  --panel: #0f172a;
  /* slate/blue-black */
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.8);
}

.cta {
  /*padding: 32px 16px 40px;*/
  background: radial-gradient(
      1100px 400px at 20% -20%,
      rgba(0, 191, 166, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(14, 77, 146, 0.22),
      transparent 60%
    ),
    linear-gradient(0deg, #06101c, #06101c);
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 24px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-text h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.2;
  margin: 0 0 6px;
  font-weight: 800;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
}

.cta-text p {
  margin: 0;
  color: var(--text-dim);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.btn .icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(0, 191, 166, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 191, 166, 0.32);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn:focus {
  outline: 2px solid rgba(0, 191, 166, 0.6);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }

  .btn {
    flex: 1;
  }
}
/*about-us*/
.promise-section {
  background: #f1f7fb;
  padding: 60px 20px;
}
.promise-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #00bfa6;
  text-align: center;
}
.promise-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}
.promise-list li {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
}
.promise-list li::before {
  content: "✓";
  color: #00bfa6;
  font-weight: bold;
  margin-right: 10px;
}
/*Contact us*/
/*Contact Us*/

.contact-header {
  background: linear-gradient(to right, #1b1464, #ffd700);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.contact-form-section {
  background: white;
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  margin-top: -50px;
  z-index: 2;
  position: relative;
}

.form-control {
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  box-shadow: none;
  border-bottom: 2px solid #1b1464;
}

.btn-custom {
  background-color: #1b1464;
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #ffd700;
  color: #1b1464;
}

.map-responsive iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 30px 15px;
  }
}
/*Privacy-policy*/

.accordion-button {
  background-color: #1b1464;
  color: #ffd700;
}

.accordion-button:not(.collapsed) {
  background-color: #ffd700;
  color: #1b1464;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}
/*footer*/
.footer {
  background: linear-gradient(135deg, #ffd700, #1b1464);
}
/*Contact Us*/
/*Contact Us*/

.contact-header {
  background: linear-gradient(to right, #1b1464, #ffd700);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.contact-form-section {
  background: white;
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  margin-top: -50px;
  z-index: 2;
  position: relative;
}

.form-control {
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  box-shadow: none;
  border-bottom: 2px solid #1b1464;
}

.btn-custom {
  background-color: #1b1464;
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #ffd700;
  color: #1b1464;
}

.map-responsive iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 30px 15px;
  }
}
