/* Default Color */
:root {
  --primary: #000000;
  --secondary: #ffffff;
  --accent: #266ef1;
  --accent-hover: #2c69d9;
  --success: #005c3b;
  --warning: #f6bc2f;
  --danger: #a8200d;
  --danger-hover: #950f22;
  --base-bg: #eceee9;
  --maroon: #750046;
  --green: #06c168;
  --cream: #f7f0ea;
  --pink: #fed7d2;
  --dark-green: #10462e;
}

/* Custom Scrollbar Styles */
:root {
  --scrollbar-width: 10px;
  --scrollbar-track-color: transparent;
  --scrollbar-thumb-color: var(--maroon);
  --scrollbar-thumb-hover-color: var(--maroon);
}

/* For Webkit browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
  opacity: 0;
  transition: opacity 0.3s ease;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #8c8b8b;
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover-color);
}

/* Make scrollbar visible on hover and when scrolling */
*:hover::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-color);
}

/* For Firefox */
* {
  scrollbar-width: inherit;
  scrollbar-color: transparent transparent;
}

*:hover {
  scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color);
}

/* For Edge and IE */
* {
  -ms-overflow-style: none;
}

*:hover {
  -ms-overflow-style: auto;
}

/* Add a class to apply when scrolling is active */
.scrolling-active::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-color) !important;
}

/* JavaScript will add this class when scrolling */

/* Default Styles */
.btn {
  border: none;
  padding: 0.5rem 1.5rem !important;
  border-radius: 50px !important;
  cursor: pointer !important;
}

.btn.btn-primary {
  background-color: white;
  color: var(--maroon);
}
.btn.btn-primary:hover {
  background-color: var(--maroon);
  color: white;
}
.btn.btn-secondary {
  background: none;
  color: white;
  border: 1px solid white;
}
.btn.btn-secondary:hover {
  background: var(--maroon);
  color: white;
  border: 1px solid var(--maroon);
}
.btn.btn-inverse {
  border: 1px solid;
  font-size: 12px;
  align-items: center;
  transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn.btn-black {
  background: black;
  color: white;
}

.container-padding {
  padding: 2% 10%;
}
.packages-tours-body {
  background-color: #ffffff;
}
/* Default Styles */

a.nav-link {
  color: white;
  text-decoration: none;
  font-size: 2.6rem;
  display: inline-block; /* Ensure the link behaves like a block for animation */
  transition: transform 0.3s ease; /* Smooth transition for the transform property */
}

a.nav-link:hover {
  transform: translateY(-10px); /* Move the text up */
}

a.nav-link:active {
  transform: translateY(0); /* Reset position when clicked */
}

.navbar {
  position: absolute !important;
  z-index: 100;
}

.hero-section {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/hero-bg.png");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2%;
}

.about-section {
  background: var(--base-bg);
}

.overlay {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 60%) 30%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  height: 90vh;
  width: 100%;

  top: 0;
}

.travista-sign-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

.travista-sign-in h1 {
  font-size: 50px;
  margin-bottom: 50px;
}

.travista-sign-in form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.travista-sign-in label {
  display: block;
  margin-bottom: 10px;
}

.travista-sign-in input[type="email"],
.travista-sign-in input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--cream);
  border-radius: 5px;
}

.travista-sign-in button {
  width: 100%;
  padding: 10px;
  background-color: var(--green);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.travista-sign-in button:hover {
  background-color: var(--green);
}

.travista-sign-in p {
  margin-top: 20px;
  text-align: center;
}

.travista-sign-in p a {
  color: var(--green);
  text-decoration: none;
}

.travista-sign-in p a:hover {
  text-decoration: underline;
}

.explore-more-card {
  width: 550px;
  max-width: 600px;
  height: 1000px;
  background-size: cover;
  background-position: center;
  color: white !important;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  padding: 30px;
  border-radius: 20px !important;
  transition: all 0.4s !important;
}

.explore-more-card:nth-child(odd) {
  margin-top: 50px;
}

.explore-more-card:hover {
  width: 650px;
}

.build-package-section {
  height: auto;
  padding: 5% 8%;
}

.comments-section {
  height: 100vh;
  background: url("/assets/comments.png");
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.comment-card {
  max-width: 350px;
}

.comments-section {
  overflow: hidden;
}

.comments-section .slider-container {
  margin: 0 -20%;
}

.comments-section .slider-btn {
  background: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 50px 10px;
  border: none;
  transition: all 0.3s;
}

.comments-section .slider-btn:hover {
  cursor: pointer;
  color: var(--accent);
}

.faq-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5%;
}

.faq-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.faq-section :is(ul, li) {
  padding: 0;
}

.faq-list li {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.faq-list li svg {
  font-size: 2rem;
}

.faq-list hr {
  margin-top: 0;
}

.footer {
  padding: 5%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.footer .footer-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.footer svg {
  font-size: 3rem;
  margin: 0 0.5rem;
}

.footer ul a {
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.packages-page .hero {
  background: url("/assets/packages_Tours.jpg");
  height: 45vh;

  position: relative;
}

.packages-page .hero .overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.packages-page .hero h2 {
  font-size: 5rem;
}

.packages-page .hero p {
  width: 50%;
  text-align: center;
}

.packages-page .packages-tours {
  padding: 3%;
}
/*  */
/* Navbar Styles */
.navbar {
  background-color: #064e3b;
  padding: 1rem;
}

.navbar h1 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar ul {
  display: flex;
  gap: 1rem;
}

.navbar a {
  color: white;
  text-decoration: none;
}

/* Hero Section Styles */
.hero {
  background-color: #065f46;
  color: white;
  padding: 3rem 0;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.hero button {
  margin-top: 1.5rem;
  background-color: #ec4899;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
}

.hero img {
  border-radius: 0.5rem;
}

/* Core Values Styles */
.core-values {
  background-color: #f3f4f6;
  padding: 3rem 0;
  text-align: center;
}

.core-values h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.core-value-item {
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.core-value-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
}

.core-value-item p {
  margin-top: 1rem;
  color: #4b5563;
}

/* Perks Section Styles */
.perks {
  background-color: #f3f4f6;
  padding: 3rem 0;
}

.perks h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.perks .perk {
  padding: 1rem;
  background-color: white;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Open Roles Section Styles */
.open-roles {
  background-color: white;
  padding: 3rem 0;
}

.open-roles h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.role-item {
  padding: 1rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.role-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
}

.role-item p {
  color: #6b7280;
}

.role-item button {
  background-color: #fbbf24;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}

/* Footer Styles */
footer {
  background-color: #111827;
  color: white;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
}

footer p {
  margin: 0;
}

footer ul {
  display: flex;
  gap: 1rem;
}

footer ul li a {
  color: white;
  text-decoration: none;
}

/* Account Page Style */
.account-page {
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Header Section */
.account-header {
  text-align: left; /* Default alignment */
  padding: 5rem 2rem 0rem 2rem;
}

.account-header h1 {
  font-size: 48px; /* Adjusted size for larger screens */
  margin-bottom: 0.5rem;
  padding: 2rem 2rem 0rem 2rem;
}

.account-header p {
  color: #666;
  font-size: 14px;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
}

/* Tabs */
.account-tabs {
  display: flex;
  justify-content: left; /* Default alignment for large screens */
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.account-tabs button {
  background: none;
  border: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: #777;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.account-tabs .active {
  border-bottom: 2px solid #000;
  font-weight: bold;
  color: #000;
}

/* Content Section */
.account-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 1rem;
  background-color: #f4f4f4;
  margin-top: -24px;
}

/* Saved Content */
.saved-section-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.saved-content {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  justify-content: left; /* Default for large screens */
  gap: 2rem;
}

/* Cards Grid */
.saved-section-content .MuiGrid-container {
  justify-content: flex-start; /* Align cards left on larger screens */
}

.saved-section-content .MuiGrid-item {
  max-width: 100%;
}

/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-secondary {
  background-color: #eee;
  color: #555;
}

.btn-inverse:hover {
  background-color: #ddd;
}

/* View More Button */
.view-more-container {
  display: none; /* Hidden by default */
}
/* FAQs Page */
.FAQs-page {
  font-family: Arial, sans-serif;
  color: #333;
}

.FAQs-hero {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #e6e1f4;
}

.FAQs-hero h1 {
  font-size: 3rem; /* Use relative units */
  color: #27063b;
  padding-bottom: 1px;
  margin-bottom: auto;
}

.FAQs-hero p {
  color: #27063b;
  padding-top: 5px;
  margin-top: auto;
}

.FAQs-contact-btn {
  background-color: #27063b;
  color: #e6e1f4;
  padding: 0.7rem 1rem;
  border: none;
  cursor: pointer;
  border-radius: 20px;
}

.FAQs-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 2rem;
  margin: 50px;
  margin-top: -30px;
}
.FAQs-filter-section {
  display: flex;
  gap: 5rem;
  padding: 2rem;
  padding-left: 70px;
}
.FAQs-list {
  flex: 1;
  margin-right: 1rem;
}

.FAQs-filter {
  width: 90%;
  max-width: 250px;
  margin: 1rem auto;
  padding: 0.8rem;
  border-radius: 10px;
  border-color: #777777;
}

.FAQs-questions {
  border-top: 1px solid #ddd;
}

.FAQs-question {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.FAQs-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-left: 1.5rem;
}

.FAQs-answer.open {
  max-height: 100px;
  padding-top: 0.5rem;
  padding-bottom: 0.7rem;
}

.FAQs-form {
  padding: 20px;
  display: flex;
  flex: 1;
  justify-content: space-around;
  flex-direction: column;
  padding-left: 120px;
  padding-right: 120px;
}

.FAQs-form h2 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: auto;
  text-align: center;
}

.FAQs-form p,
a {
  color: black;
  margin-bottom: 0rem;
  text-align: center;
}

.FAQs-form-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  margin: auto;
}

/* Tablet view */
@media (min-width: 768px) {
  .FAQs-hero h1 {
    font-size: 4rem;
  }

  .FAQs-content {
    flex-direction: column;
    justify-content: space-around;
  }
  .FAQs-filter {
    width: 100%;
    max-width: 250px;
    margin: 1rem auto;
    padding: 0.8rem;
    border-radius: 10px;
    border-color: #777777;
    align-items: center;
  }
  .FAQs-form {
    padding: 2rem 5%;
    flex-direction: column;
  }
}

/* Desktop view */
@media (min-width: 1024px) {
  .FAQs-hero h1 {
    font-size: 5rem;
  }

  .FAQs-filter {
    width: 12%;
    margin-left: 20px;
    margin-top: 20px;
  }

  .FAQs-content {
    flex-direction: row;
    justify-content: space-around;
    padding: 2rem;
  }

  .FAQs-form {
    padding-left: 120px;
    padding-right: 120px;
    flex-direction: row;
  }

  .FAQs-form h2 {
    font-size: 2.5rem;
    text-align: left;
  }

  .FAQs-form p,
  a {
    text-align: left;
  }

  .FAQs-form-section {
    width: 50%;
  }
}
/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .FAQs-hero h1 {
    font-size: 2.5rem;
    margin-top: 5rem;
  }
  .FAQs-contact-btn {
    margin: 15px;
  }
  .FAQs-form {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .FAQs-form h2 {
    font-size: 2rem;
    text-align: center;
  }

  .FAQs-form p,
  .FAQs-form a {
    text-align: center;
    padding-bottom: 20px;
  }

  .FAQs-form-section {
    width: 100%;
    max-width: 100%;
  }
  .FAQs-filter {
    width: 30%;
    max-width: 250px;
    margin: 1rem auto;
    padding: 0rem;
    border-radius: 10px;
    border-color: #777777;
    border: 1px solid #777777;
    align-items: center;
  }
}
/*PI*/
.textarea-input {
  width: 100%;
  color: #000;
  padding: 0.75rem;
  border: 2px solid #d9d9d9;
  border-radius: 16px;
  font-size: 1rem;
  box-sizing: border-box;
  height: 9rem;
}
/*Message Form*/

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  width: 100%;
  margin: auto;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-input {
  width: 100%;
  color: #000;
  padding: 0.75rem;
  border: 2px solid #d9d9d9;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

textarea.form-input {
  resize: none;
  height: 150px;
}

.country-code {
  width: 20%;
}

.phone-input {
  width: 80%;
}

.terms-label {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbcbcb;
}

.submit-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 16px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #333;
}
/* Apply for Visa */

.ApplyForVisa-page {
  font-family: Arial, sans-serif;
  color: #333;
}

.ApplyForVisa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem;
  background-color: #320707;
  flex-direction: row;
  gap: 2rem;
}

.ApplyForVisa-hero {
  padding: 50px;
  flex: 1;
}

.ApplyForVisa-header img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  margin-right: 64px;
  border-radius: 20px;
}

.ApplyForVisa-header h1 {
  font-size: 4rem;
  color: #fed7d2;
  text-align: left;
  padding-left: 12px;
  margin: auto 0;
}

.ApplyForVisa-header p {
  color: #fed7d2;
  padding-left: 12px;
  margin-top: 20px;
}

.ApplyForVisa-contact-btn {
  background-color: #fed7d2;
  color: #320707;
  padding: 0.7rem 1rem;
  border: none;
  margin-top: 20px;
  margin-left: 12px;
  cursor: pointer;
  border-radius: 20px;
}

.subTitle-ApplyForVisa p {
  color: #fed7d2;
  padding-left: 12px;
  text-align: left;
  padding-top: 20px;
}

.ApplyForVisa-form {
  display: flex;
  padding-top: 80px;
  flex: 1;
  justify-content: space-around;
  padding-right: 20px;
}

.ApplyForVisa-faqs-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5%;
  background-color: #eceee9;
}

.ApplyForVisa-faqs-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.ApplyForVisa-Form-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 2rem;
  margin: 50px;
  margin-top: -30px;
}

.ApplyForVisa-form-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.ApplyForVisa-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  width: 100%;
  padding-left: 100px;
  margin: auto;
}

/*Single Blog Page*/
/* Header.css */
.Single-Blog-header {
  padding: 100px 150px 0 150px;
}
.Single-Blog-header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  background-color: #fff;
  gap: 40px; /* Space between date, content, and buttons */
}

.Single-Blog-date-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #75003d;
}

.Single-Blog-month {
  font-size: 14px;
  font-weight: 600;
}

.Single-Blog-day {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.Single-Blog-year {
  font-size: 14px;
  font-weight: 600;
}

.Single-Blog-content-container {
  text-align: center;
  max-width: 600px;
}

.Single-Blog-main-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  color: #000;
  text-align: left;
}

.Single-Blog-subtitle {
  font-size: 20px;
  color: #777777;
  margin-top: 5px;
  text-align: left;
}

.Single-Blog-button-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.Single-Blog-action-button {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  color: #000;
  transition: background-color 0.3s;
}

.Single-Blog-action-button:hover {
  background-color: #e0e0e0;
}
.Single-Blog-image-hero {
  width: 100%;
}
.Single-Blog-image-hero img {
  width: 100%;
  width: 100%;
}
.Single-Blog-Content {
  padding-top: 50px;
  padding-right: 150px;
  padding-left: 150px;
  text-align: center;
  display: block;
}
.Single-Blog-Content h3 {
  padding-left: 200px;
  text-align: left;
  font-weight: normal;
  font-size: 36px;
}
.Single-Blog-Content p {
  font-size: 20px;
  padding-left: 200px;
  padding-right: 200px;
  text-align: justify;
}
.Single-Blog-Content img {
  margin: auto;
}
.Single-Blog-Back-btn {
  padding-top: 50px;
  padding-right: 150px;
  padding-left: 150px;
  text-align: center;
  display: block;
  padding-bottom: 50px;
}
.Single-Blog-Back-btn button {
  border: 1px solid #000;
  padding: 15px 24px 15px 24px;
  border-radius: 100px;
  background-color: transparent;
  font-size: 14px;
}
/* Media Queries for Responsiveness */

/* Responsive styles for smaller screens */
@media (max-width: 1024px) {
  .Single-Blog-header {
    padding: 80px 100px 0 100px;
  }
  .Single-Blog-header-container {
    gap: 30px;
  }
  .Single-Blog-Content {
    padding-right: 100px;
    padding-left: 100px;
  }
  .Single-Blog-Content h3 {
    padding-left: 150px;
  }
  .Single-Blog-Content p {
    padding-left: 150px;
    padding-right: 150px;
    line-height: 31px;
  }
  .Single-Blog-Content img {
    width: 60%;
  }
  .Single-Blog-Back-btn {
    padding-right: 100px;
    padding-left: 100px;
  }
}

@media (max-width: 768px) {
  .Single-Blog-header {
    padding: 60px 0px 0 0px;
  }
  .Single-Blog-header-container {
    flex-direction: column;
    gap: 20px;
    text-align: left;
    align-items: start;
  }
  .Single-Blog-content-container {
    max-width: 100%;
  }
  .Single-Blog-main-title,
  .Single-Blog-subtitle {
    text-align: left;
  }
  .Single-Blog-button-container {
    display: flow;
    gap: 15px;
  }
  .Single-Blog-Content {
    padding-right: 20px;
    padding-left: 20px;
  }
  .Single-Blog-Content h3 {
    padding-left: 0;
    font-size: 28px;
  }
  .Single-Blog-Content p {
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
  }
  .Single-Blog-Content img {
    width: 100%;
    height: 30vh !important;
  }
  .Single-Blog-Back-btn {
    padding-right: 50px;
    padding-left: 50px;
    margin-bottom: 30px;
  }
}

/*Build My Package Page*/
.build-my-package-page {
  font-family: Arial, sans-serif;
  color: #333;
}
.build-my-package-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 1rem;
  background-color: #3a341c;
  flex-direction: row;
  gap: 2rem;
}
.build-my-package-hero {
  padding-left: 70px;
  flex: 1;
}
.build-my-package-header img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  /* padding: 100px 170px 100px 300px; */
  margin-top: 98px;
  margin-right: 84px;
}
.build-my-package-header .overlay-photo {
  position: absolute;
  top: -22px; /* Positioning above the main image */
  left: 80%; /* Adjust horizontal position */
  width: 80px; /* Size of the smaller photo */
  height: 117px;
  z-index: 1; /* Ensures it appears above the main image */
}
.build-my-package-header h1 {
  font-size: 3rem;
  color: #ffeb69;
  text-align: left;
  margin: auto 0;
  margin-top: 30px;
}
.build-my-package-header p {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 15px;
  text-align: justify;
  line-height: 25px;
  margin-right: 74px;
}
.build-my-package-header span {
  color: #ffffff;
  margin-bottom: 20px;

  text-align: justify;
  line-height: 25px;
}
.build-my-package-subtitle {
  color: #fed7d2;
  padding-left: 12px;
  text-align: left;
  padding-top: 20px;
}
.build-my-package-hero-btn {
  background-color: #ffeb69;
  color: #000;
  padding: 0.7rem 1rem;
  border: none;
  margin-top: 20px;
  margin-left: 12px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
}

/* HowItWorks.css */
.Build-my-package-how-it-works {
  text-align: center;
  background-color: #eceee9; /* Light background color */
  padding: 50px 20px 70px 20px;
}

.Build-my-package-how-it-works h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333; /* Dark text color */
  margin-bottom: 60px;
  text-align: left;
  padding-left: 138px;
}

.Build-my-package-steps-container {
  display: flex;
  justify-content: center;
  gap: 150px;
}

.Build-my-package-step {
  max-width: 300px;
  text-align: left;
}

.Build-my-package-step-number {
  background-color: #ffec84; /* Yellow background */
  color: #333; /* Dark text color for number */
  font-size: 24px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: "Edu AU VIC WA NT Pre", cursive;
}

.Build-my-package-step h3 {
  font-size: 20px;
  color: #3a341c;
  font-weight: bold;

  margin-bottom: 10px;
}

.Build-my-package-step p {
  font-size: 14px;
  color: #777; /* Light text color */
  line-height: 1.5;
}
/*Contact Us*/
.contact-us-page {
  color: #000;
}
.contact-us-header {
  align-items: center;
  justify-content: space-between;
  padding: 3rem 1rem;
  background-color: #27063b;
  flex-direction: row;
  margin-bottom: 4rem;
}
.contact-us-header-titles {
  padding: 5rem 2rem 5rem 2rem;
  text-align: center;
}
.contact-us-header-titles h1 {
  font-size: 100px;
  font-family: inter;
  font-weight: 500;
  color: #fff;
}
.contact-us-header-titles p {
  color: #ddd8e8;
}
.contact-us-header-btn {
  background-color: #fed7d2;
  border: 1px solid #fed7d2;
  color: #27063b;
  padding: 0.8rem 1rem;
  border: none;
  margin-top: 20px;
  margin-left: 12px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
}
.contact-us-hero-image {
  padding-top: 5rem;
  align-self: center;
  text-align: center;
  width: 100%;
  border-radius: 2rem;
}
.contact-us-hero-image img {
  margin: auto;
  height: 45rem;
  width: 90%;
  object-fit: cover;
  border-radius: 2rem;
}
.contact-us-trips-container {
  display: flex;
  justify-content: center;
  gap: 150px;
}

.contact-us-trips-step {
  max-width: 20%;
}
.contact-us-trips-head {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-us-trips-head h3 {
  margin: 0; /* Remove default margin */
  font-size: 1.3rem; /* Adjust font size as needed */
  color: #ffffff;
}

.contact-us-trips-head span {
  margin: 0;
  font-size: 1.3rem;
  color: #777;
}
.contact-us-trips-step p {
  font-size: 17px;
  color: #ffffff; /* Light text color */
  line-height: 1.5;
}
.contact-us-trips-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 -15px;
}
.contact-us-trips-btn-getdirections {
  background-color: #eceee9;
  border: 1px solid #eceee9;
  color: #27063b;
  padding: 0.8rem 1rem;
  margin-top: 20px;
  margin-left: 12px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
}
.contact-us-trips-btn-call {
  background-color: transparent;
  border: 3px solid #eceee9;
  color: #eceee9;
  padding: 0.8rem 1rem;
  margin-top: 20px;
  margin-left: 12px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
}

/*BMP Steps Main*/
.BMP-steps-main {
  padding-top: 120px;
}

.BMP-steps-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 500px;
  width: 100%;
}

.BMP-steps-hero-content-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 338px;
}

.BMP-steps-hero-image-left {
  width: 300px;
  height: 400px;
}

.BMP-steps-hero-image-left img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-top-right-radius: 1300px;
  border-bottom-right-radius: 1300px;
}
.BMP-steps-hero-image-right {
  width: 300px;
  height: 400px;
}
.BMP-steps-hero-image-right img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-top-left-radius: 1300px;
  border-bottom-left-radius: 1300px;
}
.BMP-steps-hero-text-content {
  text-align: center;
}

.steps-Actions-Buttons {
  display: flex;
  justify-content: space-between; /* Align buttons horizontally */
  align-items: center;
  padding-right: 3rem;
  padding-left: 3rem;
  margin-top: 2rem;
}

.steps-action-button {
  background-color: #fff; /* Default white background */
  border: 2px solid #27063b; /* Border matching theme */
  border-radius: 30px; /* Rounded corners */
  color: #27063b; /* Text color matching theme */
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1.5rem; /* Add space inside the button */
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth hover effects */
}

.steps-action-button:hover {
  background-color: #142328;
  color: #eceee9;
}

.steps-back-button {
  background-color: #eceee9;
  border: none;
}

.steps-next-button {
  background-color: #142328;
  color: #eceee9;
  padding: 0.8rem 2rem;
}
.steps-next-button:hover {
  background-color: #eceee9;
  color: #142328;
  border: 1px solid #eceee9;
}

/*StepONe pages*/
.BMI-steps-first-Content {
  text-align: center;
  margin-bottom: 10rem;
  padding: 0rem 1rem;
}

.BMI-steps-first-Content h5 {
  font-size: 1rem;
  color: #777;
}

.BMI-steps-first-Content h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #000;
}
.BMP-steps-hero-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.BMP-steps-trip-options {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.BMP-steps-trip-option {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.BMP-steps-trip-option:hover {
  background-color: #f0f0f0;
  border-color: #999;
}
/* Container for buttons */
.trip-buttons-container {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(100px, 1fr)
  ); /* Adjust for responsiveness */
  gap: 20px;
  justify-content: center;
  padding: 0px;
}

/* Button styling */
.trip-buttons-container button {
  display: flex;
  flex-direction: column; /* Stack icon and text vertically */
  justify-content: center; /* Align items at the center */
  align-items: center; /* Center items horizontally */
  width: 100%; /* Full width for responsiveness */
  height: 100px;
  border: 2px solid #eceee9;
  border-radius: 12px;
  background-color: #fff;
  color: #000;
  text-transform: none;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  position: relative; /* For positioning the icon */
  transition: border-color 0.3s, background-color 0.3s ease;
}

.trip-buttons-container Button:hover {
  border-color: #000;
  background-color: #fff;
}

.trip-buttons-container span {
  position: absolute; /* Position icon absolutely */
  top: 10px; /* Adjust distance from top */
  left: 21px; /* Adjust distance from left */
  font-size: 30px;
  text-align: left;
  color: #000; /* Ensure icon color matches */
}

.trip-buttons-container Button::after {
  content: attr(data-label); /* Use a custom attribute for the button label */
  font-size: 17px;
  font-weight: bold;
  text-align: left;
  margin-top: 50px; /* Space between icon and text */
  color: inherit;
}
/*BMP Steps two*/
.step-two-container {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  flex-direction: column;
}

.step-two-container h5 {
  font-size: 16px;
  color: #a1a1a1;
  margin-bottom: 8px;
  margin: 2rem 0;
}

.step-two-container h4 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000;
}

.step-two-container p {
  font-size: 20px;
  color: #000;
  padding-bottom: 1rem;
}

.step-two-container-input-group {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  justify-content: space-between;
  width: 100%;
}

.step-two-container-dropdown {
  flex: 1;
  padding: 1rem 1rem;
  font-size: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  background-color: #fff;
  width: 100%;
  color: #777;
  /* Remove default arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Custom arrow */
  background-image: url("assets/chevron-down.png");
  background-repeat: no-repeat;
  background-position: right 1.5rem center; /* Position arrow */
  background-size: 15px 15px; /* Size of the arrow */
}

.step-two-container-dropdown::before {
  content: "\e009";
  font-family: "squarespace-ui-font";
  position: relative;
  display: block;
  top: 55%;
  transform: translateY(-50%);
  right: 3%;
  /*change the position of arrow*/
  pointer-events: none;
}
.step-two-container-dropdown::after {
  content: "\e009";
  font-family: "squarespace-ui-font";
  position: relative;
  display: block;
  top: 55%;
  transform: translateY(-50%);
  right: 3%;
  /*change the position of arrow*/
  pointer-events: none;
}
/*Step Two traveller counter*/
.step-two-container-travellers-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Arial", sans-serif;
  margin: 1rem 0;
}
.step-two-travellers-label {
  font-size: 12px;
  font-weight: 500;
  color: #777777;
  margin-bottom: 8px;
}
.step-two-container-travellers-counter {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 5px 10px;
  background-color: #fff;
  width: 100%;
  justify-content: space-between;
}
.step-two-counter-travellers-value {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  width: 50%;
  left: 1rem;
  text-align: left;
}
.step-two-travellers-buttons {
  display: flex;
  gap: 8px;
}
.step-two-container-travellers-counter-btn {
  background-color: #f6f6f6;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease; /* Smooth hover effects */
}
.step-two-container-travellers-counter-btn:hover {
  background-color: #000;
  border: 1px solid #e0e0e0;
  color: #eceee9;
}
/*Slider thumb*/
/* Container styling */
.budget-slider-container {
  margin: 0 auto;
  text-align: left;
  width: 100%;
  font-family: "Arial", sans-serif;
}

/* Label styling */
.budget-slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  color: #777777;
}

.budget-slider-title {
  font-weight: bold;
}

.budget-slider-current {
  font-weight: normal;
  text-align: right;
  margin-top: 4px;
}

/* Slider container */
.budget-slider-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider styling */
.budget-slider-box range {
  width: 100%;
  color: #990066; /* Dark magenta */
}

.budget-slider .MuiSlider-thumb {
  background-color: #fff;
  border: 1px solid #990066;
  width: 120px; /* Adjust width for arrows and budget value to fit */
  height: 50px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
}

/* Center the value inside the thumb */
.budget-slider .MuiSlider-thumb::before {
  position: absolute;
  font-size: 12px;
  color: #990066;
  font-weight: bold;
  left: 50%;
  transform: translateX(-50%);
}

/* Add budget value inside the thumb */
.budget-slider .MuiSlider-thumb::after {
  content: attr(data-value);
  position: absolute;
  font-weight: 500;
  left: 32%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: 100%;
  color: #990066;
}

/* Rail styling */
.budget-slider .MuiSlider-rail {
  background-color: #ccc;
}

/* Description styling */
.budget-slider-description p {
  margin-top: 16px;
  font-size: 14px;
  color: #555;
}

/*travel date*/
.step-two-container-travel-options {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 1rem;
}
.step-two-container-travel-date-left {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}
.step-two-container-label {
  font-size: 12px;
  font-weight: 500;
  color: #777777;
  margin-bottom: 8px;
}
.step-two-container-travel-date-dropdown {
  flex: 1;
  height: 2rem;
  padding: 0rem 1rem;
  width: 100%;
  font-size: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background-color: #fff;
  color: #777;
}
.step-two-container-travel-date-right {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}
.step-two-container-travel-date-left label,
.step-two-container-travel-date-right label {
  font-size: 12px;
  font-weight: 500;
  color: #777777;
  margin-bottom: 8px;
}

.step-two-container-flexibility {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 5px 10px;
  background-color: #fff;
  width: 100%;
  justify-content: space-between;
  height: 2.6rem;
}
.step-two-flexibility-buttons {
  display: flex;
  gap: 8px;
}
.step-two-container-flexibility-btn {
  background-color: #f6f6f6;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease; /* Smooth hover effects */
}
.step-two-container-flexibility-value {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  width: 50%;
  left: 1rem;
  text-align: left;
}

/*Step three BMP*/
.BMI-steps-third-Content {
  text-align: center;
  margin-bottom: 5rem;
  padding: 3rem;
}

.BMI-steps-third-Content h5 {
  font-size: 1rem;
  color: #777;
}

.BMI-steps-third-Content h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #000;
}

.BMI-steps-third-Content p {
  font-size: 14px;
  color: #000;
  padding-bottom: 1rem;
}

.BMI-steps-third-Content form {
  width: 100%;
  padding: 1rem;
}

.BMI-steps-third-Content form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 14px;
  color: #000;
}

.BMI-steps-third-Content form input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  height: 3rem;
  color: #000;
}
.form-row-phone {
  display: flex;
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}
.form-row-phone select {
  height: 3.2rem;
  width: 30%;
  margin-bottom: 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
}
/* about page css */
.About-hero-section {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #10462e; /* Solid background color */
}

.about-hero-image {
  width: 100%;
  height: auto;
}

.about-right-image img {
  text-align: center; /* Centers images in their respective columns */
  height: 23rem;
  border-bottom-left-radius: 200px;
  border-top-left-radius: 200px;
}

.about-left-image img {
  text-align: center; /* Centers images in their respective columns */
  height: 23rem;
  border-bottom-right-radius: 200px;
  border-top-right-radius: 200px;
}

.about-center-content {
  text-align: center;
}

.about-center-content h4 {
  font-size: 1rem;
  color: #fed7d2;
  padding-bottom: 0.5rem;
}

.about-center-content h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fed7d2; /* Ensure the title is visible on dark background */
  padding-left: 7rem;
  padding-right: 7rem;
}

.about-center-content h5 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fed7d2; /* Ensure the description is visible on dark background */
  padding-left: 4rem;
  padding-right: 4rem;
}

.about-center-content button {
  background-color: #fed7d2; /* Custom button color */
  color: #10462e;
  padding: 0.5rem 0.7rem;
  border-radius: 40px;
}

.about-center-content button:hover {
  background-color: #fed7d2;
}

/* Background section styling */
.about-background-section {
  position: relative;
  background-image: url("assets/About/background.png");
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the background image covers the section */
  background-position: center center; /* Centers the background image */
  padding: 50px 0; /* Adds padding to section */
  text-align: center; /* Center text for cards */
  height: 200vh; /* Ensure the section takes up full viewport height */
}

/* Centered image container */
.about-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200vh; /* Ensures image container fills the section */
}
/* Centered image styling */
.about-image-container img {
  width: 100rem; /* Scale image width to 40% of the container */
  height: 80rem;
  object-fit: contain; /* Ensure the image scales without distortion */
  transition: all 0.3s ease; /* Smooth scaling transition */
}

/* Card container styling */
.about-card-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevent cards from affecting image clickability */
}

/* General card styling */
.about-card {
  position: absolute;
  width: 200px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  pointer-events: auto; /* Re-enable interaction for cards */
}

/* Card-specific positioning */
.about-card-1 {
  top: 1%;
  left: 40%;
  height: 9rem;
}

.about-card-2 {
  top: 14%;
  left: 32%;
  height: 9rem;
}

.about-card-3 {
  top: 28%;
  left: 32%;
  height: 9rem;
}

.about-card-4 {
  top: 22%;
  right: 30%;
  height: 9rem;
}

.about-card-5 {
  top: 39%;
  right: 30%;
  height: 9rem;
}
.about-card-6 {
  top: 42%;
  left: 25%;
  height: 9rem;
}

.about-card-7 {
  top: 55%;
  left: 30%;
  height: 9rem;
}

.about-card-8 {
  top: 57%;
  right: 30%;
  height: 9rem;
}

.about-card-9 {
  top: 70%;
  right: 34%;
  height: 9rem;
}

.about-card-10 {
  top: 72%;
  left: 22%;
  height: 9rem;
}

.about-card-11 {
  top: 83%;
  left: 39%;
  height: 9rem;
}

.about-card-12 {
  top: 93%;
  right: 26%;
  height: 9rem;
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* careers page */
.Careers-page {
  font-family: Arial, sans-serif;
  color: #333;
}
.careers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 1rem;
  background-color: #10462e;
  flex-direction: row;
  gap: 2rem;
}
.careers-hero {
  padding-left: 70px;
  flex: 1;
}
.careers-header img {
  width: 25rem;
  height: 20rem;
  object-fit: cover;
  /* padding: 3rem 7rem 3rem 12rem; */
  border-radius: 20px;
  margin-right: 92px;
  margin-top: 98px;
}
.careers-header .overlay-photo {
  position: absolute;
  top: 40.121%; /* Positioning above the main image */
  left: 45%; /* Adjust horizontal position */
  width: 80px; /* Size of the smaller photo */
  height: 117px;
  z-index: 10; /* Ensures it appears above the main image */
}
.careers-header h1 {
  font-size: 3rem;
  color: #fed7d2;
  text-align: left;
  margin: auto 0;
  margin-top: 30px;
}
.careers-header p {
  color: #fed7d2;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 15px;
  text-align: justify;
  line-height: 25px;
  margin-right: -72px;
}
.careers-header span {
  color: #fed7d2;
  margin-bottom: 20px;

  text-align: justify;
  line-height: 25px;
}
.careers-subtitle {
  color: #fed7d2;
  padding-left: 12px;
  text-align: left;
  padding-top: 20px;
}
.careers-hero-btn {
  background-color: #fed7d2;
  color: #10462e;
  padding: 0.7rem 1rem;
  border: none;
  margin-top: 20px;
  margin-left: 12px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
}

.careers-core-values {
  background-color: #eceee9;
  padding: 65px 70px;
  text-align: center;
}

.careers-core-values h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #333;
  text-align: left;
}

.careers-core-values-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.careers-core-value {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: left; /* Center align icons, titles, and text */
  text-align: left; /* Center-align text */
  gap: 5px; /* Adjust spacing between items */
  flex: 1;
  max-width: 250px;
}

.careers-icon {
  font-size: 2.5rem !important;
  color: black; /* Adjust color to match your theme */
}

.careers-core-value img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.careers-core-value h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  color: #333;
}

.careers-core-value p {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.careers-open-roles {
  background-color: #eceee9;
  padding: 50px 0px;
}

.careers-open-roles-container {
  display: flex;
  justify-content: space-between;
}

.careers-open-roles-left {
  flex: 1;
  justify-content: flex-end;
  margin-left: 5rem;
}

.careers-open-roles-left h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.careers-open-roles-left h3 {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.careers-open-roles-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 45%;
}

.careers-filter {
  background: white;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.9rem;
  border: 1px solid #ddd;
}

.careers-open-roles-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  margin-right: 3rem;
}

.careers-role-card {
  background-color: white;
  border-radius: 20px;
  padding: 15px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 65%;
  display: flex; /* Enable flexbox layout */
  flex-direction: column; /* Align items vertically */
  position: relative; /* Allow the button to align independently */
}

.careers-role-card h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.careers-role-card h4 {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 5px;
}

.learn-more-btn {
  background-color: #ffeb69;
  color: #000;
  font-weight: 500;
  padding: 5px 15px;
  font-size: 0.5rem;
  border-radius: 20px;
  text-transform: none;
  align-self: flex-end; /* Aligns the button to the right */
  top: -50%;
}

.learn-more-btn:hover {
  background-color: #ffeb69;
}

.overlay-photo {
  display: block; /* Ensure it is visible by default */
}

/* blogs page */
.Blogs-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding-top: 6rem;
}

.Blogs-center-img {
  width: 20%;
  object-fit: contain;
}
.Blogs-header h4 {
  color: #777;
  font-size: 1rem;
  padding: 1rem;
}

.people-pic {
  width: 15%;
  left: 80%;
  position: relative;
}

/* Responsive grid */
.Blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  margin-top: 30px;
  padding-left: 3rem;
}

.Blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.Blog-card-image-container {
  position: relative;
  margin-bottom: -35px;
}

.Blog-card-image {
  width: 90%;
  height: 70%;
  object-fit: cover;
  border-radius: 10px;
}

.Blog-category {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 2px 7px;
  background-color: white;
  color: rgb(171, 2, 2);
  font-weight: bold;
  border-radius: 5px;
}

.Blog-card-content h4 {
  font-size: 20px;
  font-weight: bold;
  width: 80%;
}

.Blog-date {
  font-size: 14px;
  color: gray;
  margin-top: 5px;
}

.View-more-btn {
  display: flex;
  justify-self: center;
  align-items: center;
  text-align: center;
  margin: 30px auto;
  padding: 10px 20px;
  background-color: #f4a300;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  position: relative;
}

/* home page */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
}

.modal-content {
  background: white;
  padding: 2rem;
  max-height: 90vh;
  width: 90%;
  max-width: 700px;
  overflow-y: auto;
  border-radius: 10px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
/* Styles for the backdrop */
.visa-dialog-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Styles for the dialog */
.visa-dialog {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
}

/* Title */
.trip-button.active {
  border: 2px solid #990066;
  background-color: rgba(153, 0, 102, 0.1);
  transform: scale(1.05);
}

.error-message {
  background-color: rgba(255, 0, 0, 0.1);
  border-radius: 4px;
  padding: 8px;
  margin-top: 16px;
  font-size: 14px;
}

.step-two-container-travel-date-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.visa-dialog h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

/* List style */
.visa-dialog ul {
  list-style-type: none;
  padding: 0;
}

.visa-dialog li {
  margin: 10px 0;
}

.visa-dialog li strong {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Download link */
.visa-dialog a {
  color: #007bff;
  text-decoration: none;
}

.visa-dialog a:hover {
  text-decoration: underline;
}

/* Close button */
.visa-dialog button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.visa-dialog button:hover {
  background-color: #0056b3;
}
