:root {
  --primary-color: #e87722; /* Primary color (IAD Orange) */
  --highlight-color: #00628c; /* highlight color */
  --white-color: #fffbfe; /* White color */
  --font-size-base: 1rem;
  --text-label-color: #00628c;
  --place-holder-color: #25323e66;
  --border-color: #bfbfbf;
}

html {
  font-size: 1rem;
  background-color: #ffffff;
  color: #25323e !important;
}

body {
  font-family: "Montserrat", sans-serif;
}

.btn {
  font-family: Montserrat !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 17.07px !important;
  text-align: center !important;
}
.btn-outlined {
  font-family: Montserrat !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 17.07px !important;
  text-align: center !important;
  white-space: nowrap; /* Prevents button content from wrapping */
  display: inline-block; /* Ensures button stays on the same line */
}
/* Container styling */
.button-container {
  display: flex;
  gap: 1rem;
}

.header {
  position: sticky !important;
  top: 0;
  background: #fff;
  z-index: 9999;
}

/* Remove focus effects from all form elements in Bootstrap 5 */
.form-control:focus,
.form-select:focus,
.form-check:focus,
.btn-check:focus,
.input-group-text:focus {
  outline: none; /* Removes the default browser outline */
  box-shadow: none !important; /* Removes the blue shadow */
  border-color: #ced4da !important; /* Resets the border to Bootstrap's default gray */
}

/* Optional: Resetting button focus styles if needed */
button:focus {
  outline: none;
  box-shadow: none !important;
}

a {
  color: var(--primary-color);
}

a:hover {
  color: #cc6b1d;
}

.btn-filled:hover {
  background-color: darken(var(--primary-color), 10%);
  color: white;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.10000000149011612px;
  text-align: center;
}

.btn-outlined {
  width: 9.25rem;
  height: 2.5rem;
  padding: 10px 24px;
  background-color: transparent;
  color: var(--primary-color) !important;
  border: 0.1rem solid var(--primary-color);
  border-radius: 6.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  font-weight: 600 !important;
  background-color: #fff;
}

.btn-outlined:hover {
  background-color: var(--primary-color);
  color: var(--white-color) !important;
}

.btn-outlined:hover a svg {
  fill: #fff;
  color: #fff !important;
}

.header {
  padding: 0.875rem;
}

.logo-propertips img {
  width: 12vw;
  height: auto;
}

/* Container for the landing page */
.landing-page {
  max-width: 100%;
  padding: 5rem 0.875rem !important;
  background-color: #fff;
  background: linear-gradient(180deg, #b1d9ec 0%, #f3f6f7 100%);
}

/* Toggle */
.toggle-container {
  border-color: #bfbfbf;
  padding: 4px;
  min-height: 40px;
}

.toggle-container input:hover {
  color: var(--primary-color);
}

.form-group input {
  padding: 0.5rem 0.4rem !important;
  font-size: 14px !important;
}

*:focus {
  outline: none;
}

.form-group textarea {
  padding: 0.5rem 0.4rem !important;
  font-size: 14px !important;
}

/* Right Section (Form) */
.right-section {
  padding: 2rem 2rem 0rem 2rem;
  background-color: #f9f9f9;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-right: 6.2rem;
}

.testimonial-ratings {
  display: block !important;
}
.testimonial-ratings a {
  text-decoration: none !important;
}

.recommendation-form h2 {
  color: #25323e;
  margin-bottom: 1rem;
  font-size: 24px;
  font-weight: 600;
  line-height: 29.26px;
  text-align: left;
}

.footer-section .wrapper {
  padding: 1rem 5.3rem !important
}
.footer-section {
  padding: 1rem !important;
}

.newsletter-section .wrapper {
  padding: 1rem 6rem !important;
}
/* .faq-section .wrapper {
  padding: 1rem 6rem ;
} */

.recommendation-form p {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  color: #324353;
}

.thank-you-step {
  text-align: center !important;
}
.form-step {
  min-height: 26.625rem !important;
}

.thank-you-step h2 {
  margin-top: 4rem;
}

.btn:focus {
  border: none !important;
}

.btn:click {
  border: none !important;
}

textarea {
  resize: none;
}

/* Button Styling */
.btn-primary {
  background-color: var(--primary-color);
  border: none;
}

.btn-primary:hover {
  background-color: #cc6b1d;
}
.btn-primary:focus {
  background-color: #cc6b1d !important;
}

/* Bootstrap 5 Toggle Button Styles */
.btn-outline-primary {
  color: #25323e;
  border-color: var(--primary-color);
}

.btn-check:checked + .btn-outline-primary {
  color: var(--white-color) !important;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.btn-outline-primary:hover {
  color: var(--primary-color) !important;
}

.btn-check {
  width: 9.47rem !important;
  /* height: 2rem !important; */
  padding: 0.625rem 1.25rem !important;
  gap: 1.25rem !important;
  border-radius: 1.5rem !important;
  color: #fff;
}

.form-group {
  margin-bottom: 1.5rem;
}
.next-step .form-group {
  margin-bottom: 0.5rem;
}

#back-button {
  padding: 0;
  left: 0;
  top: 0;
}

label {
  font-size: 0.9rem;
  color: var(--text-label-color);
  font-weight: 500;
}

label:hover {
  /* font-size: 0.9rem; */
  /* color: var(--text-label-color); */
  /* font-weight: 500; */
  /* color: #cc6b1d !important; */
}

.form-group {
  width: 100%;
  padding: 0.75rem 0.75rem;
  font-size: 14px !important;
  border: 1px solid;
  border-color: var(--border-color) !important;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-radius: 0.25rem;
}

.form-group label {
  position: absolute;
  top: -10px;
  background-color: #fff;
  padding: 0 4px;
}

.form-control {
  width: 100%;
  /* padding: 0.75rem 1rem; */
  font-size: 1rem;
  border: 0px solid #ccc;
  border-radius: 0.5rem;
  background-color: transparent !important;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
  color: var(--place-holder-color);
}

.form-control:focus {
  border-color: var(--text-label-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 118, 184, 0.25);
  outline: none;
}

.next-button {
  border-radius: 6.25rem;
  max-height: 40px;
  padding: 8px 16px 8px 16px !important;
  gap: 8px;
  border-radius: 100px;
  opacity: 0px;
}

.circles {
  display: flex;
  justify-content: center;
  gap: 0.5rem; /* Space between the circles */
}

.circle {
  width: 0.5rem; /* Diameter of the circle */
  height: 0.5rem;
  border-radius: 50%; /* Makes it circular */
}

.dark-circle {
  background-color: #25323e;
}

.light-circle {
  background-color: #d9d9d9;
}

.arrow-container {
  display: flex;
  justify-content: right;
  margin-bottom: 2rem;
  margin-right: 3rem;
}

/* Left Section */
.left-section h1 {
  font-size: 3rem; /* Responsive font size */
  color: #25323e;
  margin-bottom: 1.5rem;
  line-height: 3.657rem;
  font-weight: 600;
}

.left-section p {
  padding: 0 4rem;
  color: #324353;
  font-weight: 400;
  line-height: 1.829rem;
  font-size: 1.5;
}

.price {
  line-height: 1.8rem;
  translate: 0px -1px !important;
}

.left-section p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #25323e;
  margin-bottom: 6rem;
}

.social-icons-container h6 {
  font-size: 12px !important;
  font-weight: 400;
  line-height: 14.63px;
  letter-spacing: 0.10000000149011612px;
  text-align: center;
  color: #25323e;
}

/* Testimonials Section */
.testimonials {
  width: 100%;
  max-width: 100%; /* Ensure it does not exceed the screen width */
  margin-top: 1rem;
  text-align: center;
  padding: 2rem 0;
  background-color: #f5f5f7;
  overflow-x: hidden;
  position: relative;
}

.testimonials-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.testimonial-slider {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overflow-x: auto; /* Allow horizontal scrolling */
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: left;
  flex-shrink: 0; /* Prevent shrinking */
  min-width: 250px;
  max-height: 8.75rem;
}

.testimonial-author {
  font-weight: 500;
  color: #21323f;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-right: 0.95rem;
}

.purple-bg {
  background-color: #c3a6ff;
}
.blue-bg {
  background-color: #85c2ff;
}
.pink-bg {
  background-color: #ff99e1;
}
.yellow-bg {
  background-color: #ffe01a;
}

.testimonial-store {
  font-size: 0.75rem;
  color: #324353;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #324353;
  line-height: 1.219rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines before ellipsis */
  -webkit-box-orient: vertical;
}

/* Ratings Section */
.testimonial-ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.rating-stars {
  font-size: 1.25rem;
  color: #f39c12;
}

.rating-score {
  font-size: 1.25rem;
  font-weight: bold;
}

.app-links {
  display: flex;
  gap: 1rem;
}

.app-icon {
  width: 24px;
  height: 24px;
}

/* Slider Styling for Mobile */
@media (max-width: 768px) {
  .testimonial-slider {
    flex-wrap: nowrap;
    overflow-x: scroll;
    display: flex;
    justify-content: start;
    gap: 1rem;
    overflow-x: hidden; /* Hide overflow on larger screens */
    padding-left: 15px; /* Remove any left padding that might hide the first card */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-card {
    scroll-snap-align: center;
    margin: 0 auto;
  }

  .testimonials-heading {
    font-size: 1.5rem;
    /* padding: 200vw 0px ; */
  }
  .footer-section .wrapper {
    padding: 0rem !important;
  }
  .newsletter-section .wrapper {
    padding: 0rem !important;
  }
}

.faq-section .wrapper {
  padding: 0rem 6rem !important;
}

.foreign-project-section {
  background: linear-gradient(180deg, #b1d9ec 0%, #f3f6f7 100%);
  padding: 5rem 1.5rem;
  margin-top: 1rem;
}

.foreign-project-section h2 {
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 600;
  line-height: 29.26px;
  letter-spacing: 0.10000000149011612px;
  text-align: center;
  color: #25323e;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter-section form {
  background-color: #f5f5f7;
padding: 0rem 5rem !important;
}
/* Newsletter Section */
.newsletter-section {
  background-color: #f5f5f7;
  padding: 4rem 6rem !important;
}

.section-description {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  letter-spacing: 0.10000000149011612px;
  text-align: center;
}

.highlight {
  background-color: #00628c;
  color: #fff;
  transform: rotate(-2deg);
  display: inline-block !important;
  padding: 0px 8px !important;
  translate: 0px -3px;
}

.highlight-orange {
  background-color: #cc6b1d;
  color: #fff;
  transform: rotate(-2deg);
  display: inline-block !important;
  padding: 0px 8px !important;
  translate: 0px -3px;
}

.globe-img {
  max-width: 100%;
  height: auto;
}

.recommendation-btn {
  background-color: #e87722;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-section .wrapper {
    padding: 0rem !important;
  }
  .newsletter-section form {
    padding: 0rem !important;
  }
  .landing-page {
    padding: 1rem 0.875rem !important;
  }
  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.188;
  }

  .recommendation-btn {
    width: 100%;
    text-align: center;
  }
  .globe-img {
    /* margin-top: 2rem !important; */
    height: 11.25rem;
  }

  .globe-header {
    text-align: center;
  }
  .section-container {
    width: 100% !important;
    text-align: center;
  }

  .network-and-stores-section {
    padding-top: 1.5rem !important;
  }
}

.sponsor-friends-section {
  background-color: #f5f5f7;
  margin-top: 1rem;
  min-height: 24rem;
}
.international-project-section h2,
.sponsor-friends-section h2 {
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 600;
  line-height: 29.26px;
  letter-spacing: 0.10000000149011612px;
  text-align: center;
  color: #25323e;
}

.international-project-section p,
.sponsor-friends-section p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  text-align: left;
  letter-spacing: 0.1rem;
}

.btn-filled {
  height: 2.5rem;
  padding: 10px 24px;
  background-color: transparent;
  color: var(--white-color);
  border: 0.1rem solid var(--primary-color);
  border-radius: 6.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  font-weight: 600;
  background-color: var(--primary-color);
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.10000000149011612px;
  text-align: center;
}

.btn-filled:hover {
  background-color: #cc6b1d;
}

.globe-header {
  text-align: center;
}
.globe-img {
  width: 16.185rem;
}
/* Join Network Section */
.join-network-section {
  text-align: center;
  padding: 2rem 0;
}

.join-network-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.join-network-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.join-network-section .image-container {
  margin-top: 1.5rem;
}

.join-network-section img {
  max-width: 100%;
  height: auto;
}

/* Available on Stores Section */
.available-stores-section {
  text-align: center;
  padding: 2rem 0;
}

.available-stores-section .store-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.store-logo img {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.store-logo span {
  font-weight: 600 !important;
}

.rating {
  display: flex;
  align-items: center;
}

.rating img {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.phone-image img {
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
}

.newsletter-section p {
  font-size: 0.875rem;
  color: #25323e;
  font-weight: 400 !important;
  font-family: Montserrat;
  font-size: 12px !important;
  line-height: 14.63px !important;
  letter-spacing: 0.10000000149011612px;
  text-align: left;
  padding: 1rem 4.2rem !important;
}

.newsletter-section a {
  font-size: 12px !important;
  color: #25323e !important;
  font-weight: 400 !important;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px !important;
  letter-spacing: 0.10000000149011612px;
  text-align: left;
}

.globe-section {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  letter-spacing: 0.10000000149011612px;
  color: #25323e;
  text-align: center;
}

.form-section {
  font-family: Arial, sans-serif;
  /* max-width: 600px; */
  margin: 0 auto;
}

.form-check {
  display: flex;
  align-items: center;
}

.form-check-input {
  margin-right: 10px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  gap: 0px;
  border: 1px 0px 0px 0px;
  vertical-align: center;
  opacity: 0px;
  border-color: #cc6b1d;
}

.form-check-input:checked {
  background-color: #cc6b1d;
  border: none !important;
}

.form-check-input:focus {
  border: none !important;
  outline: none 0 !important;
}

.form-check-label {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #25323e;
  margin-top: 0.3rem;
}

#text-muted {
  font-family: Montserrat;
  font-size: 10px;
  font-style: italic;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0.10000000149011612px;
  text-align: left;
}

@media (max-width: 768px) {
  .w-sm-100 {
    width: 100% !important;
  }

  .left-section h1 span {
    margin: 0px !important;
  }

  .newsletter-section .form-group {
    margin-bottom: 1rem;
  }
  .newsletter-section p {
    font-size: 12px !important;
  }
  .btn-outlined {
    width: 100%;
  }
  .newsletter-section {
    background-color: #f5f5f7;
    padding: 0.5rem 0rem !important;
  }

  .newsletter-section p {
    font-size: 0.875rem;
    color: #25323e;
    font-weight: 400;
    padding: 1rem 1rem !important;
    text-align: start !important;
  }

  .newsletter-header {
    margin-bottom: 0.5rem !important;
  }
}
/* Responsive Media Queries */
@media (max-width: 768px) {
  .join-network-section h2,
  .available-stores-section h2 {
    font-size: 1.5rem;
  }

  .join-network-section p,
  .available-stores-section p {
    font-size: 0.875rem;
  }

  .phone-image img {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-section input[type="email"] {
    max-width: 100%;
  }
  .network-and-stores-section {
    padding-top: 1.5rem !important;
  }
}

/* Combined Network & Stores Section */
.network-and-stores-section {
  background: linear-gradient(180deg, #b1d9ec 0%, #f3f6f7 100%);
}

.join-network h2,
.available-stores h2 {
  font-size: 30px; /* Bootstrap's fs-3 is equivalent to 1.5rem */
  font-weight: 600;
}

.join-network h3,
.available-stores h3 {
  font-size: 2rem; /* Bootstrap's fs-2 is equivalent to 2rem */
  font-weight: 600;
  background-color: #00628c;
  color: white;
  padding: 0.3rem 0.6rem;
  display: inline-block;
  transform: rotate(-2deg);
}

.join-network p,
.available-stores p {
  font-size: 16px !important;
  font-weight: 400;
  line-height: 19.5px;
  letter-spacing: 0.10000000149011612px;
  text-align: center;
  color: #25323e !important;
  margin-bottom: 2.5rem;
}

.store-logo img {
  width: 1.5rem;
  height: 1.5rem;
}

.store-logo span {
  font-size: 1.25rem; /* Bootstrap's fs-5 */
  color: #666;
}

.rating img {
  width: 1.5rem;
  height: 1.5rem;
}

.rating span {
  font-size: 1.25rem; /* Bootstrap's fs-5 */
  font-weight: 600;
}

.visible {
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .next-step .form-group {
    margin-bottom: 1rem;
  }
  .join-network h2,
  .available-stores h2 {
    font-size: 1.25rem; /* Smaller on mobile screens */
  }

  .join-network h3,
  .available-stores h3 {
    font-size: 1.5rem;
  }

  .join-network p,
  .available-stores p {
    font-size: 1rem;
  }

  .store-logo img,
  .rating img {
    width: 1.25rem;
    height: 1.25rem;
  }

  .store-logo span,
  .rating span {
    font-size: 1rem;
  }
}
.network-and-stores-section {
  margin-top: 1rem;
  margin-bottom: 1rem;
  /* padding: 3rem 0rem 0rem 1rem !important; */
}

.footer-section {
  background-color: #f5f5f7;
  padding:  1rem !important;
  padding-bottom: 4rem;
  margin-top: 1rem;
  font-family: "Montserrat", sans-serif;
}

.footer-section p {
  font-size: 12px;
  color: #25323e;
  line-height: 1.5;
}

.footer-section .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 1rem;
  gap: 1rem;
  transform: translateY(-10px);
}
.footer-section .social-icons a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem !important;
}

.footer-links li {
  display: inline;
  text-decoration: underline;
  flex-shrink: 0; /* Prevent shrinking */
}

.footer-links a {
  text-decoration: none;
  color: #25323e;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  letter-spacing: 0.10000000149011612px;
  text-align: left;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.newsletter-section p {
  text-align: start;
}

.hide-on-desktop {
  display: none !important;
}

.newsletter-header {
  margin-bottom: 2.5rem;
  font-weight: 400;
  font-size: 20px;
  line-height: 19.5px;
}

.store-logo a {
  height: 2rem;
  text-decoration: none !important;
}
.store-logo span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #25323e;
}

.network-and-stores-mobile-section {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  background: linear-gradient(180deg, #b1d9ec 0%, #f3f6f7 100%);
}

/* section {
  padding: 5rem 1.5rem !important;
} */

.modal-button {
  margin: 50px;
  padding: 10px 20px;
  font-size: 16px;
}

/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal content */
.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: left;
}

/* Close button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
}

/* Language list */
.language-list {
  list-style-type: none;
  padding: 0;
}

.language-list li {
  /* padding: 10px; */
  cursor: pointer;
  display: flex;
  align-items: center;
}

.language-list li svg {
  margin-right: 1rem !important;
}
.language-list li a {
  text-decoration: none;
  font-family: Montserrat;
  font-size: 16px;
  color: #25323e;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  display: block;
  padding: 1.2rem;
  width: 100%;
  transition: background-color 0.3s;
}

language-list li :hover span {
  background-color: #f1f1f1;
}

.language-list img {
  margin-right: 10px;
}

.language-list li:hover {
  background-color: #f1f1f1;
}

.selected {
  background-color: #fde29a;
  position: relative;
}

.checkmark {
  margin-left: auto;
  color: #d47500;
  font-size: 18px;
  font-weight: bold;
}

.next-step .form-group {
  height: 56px !important;
}

@media (max-width: 853px) {
  .section-container {
    width: 100% important;
  }
  .openModalBtn {
    /* margin: 0 auto; */
    margin-top: 1rem;
  }
  .footer-section .social-icons {
    margin-top: 1rem;
    justify-content: start;
  }

  .social-icons-container h6 {
    margin-top: 1rem;
    text-align: start !important;
  }
  .available-stores h2 {
    margin-top: 2rem;
  }
  .globe-img {
    /* margin-top: 2rem; */
  }
  .newsletter-section {
    padding: 2rem !important;
  }
}

@media (max-width: 1025px) {
  .newsletter-section form {
    padding: 0rem !important;
  }
  .faq-section .wrapper {
    padding: 0rem rem !important;
  }
  .footer-section .wrapper {
    padding: 0rem 1rem !important;
  }
  .openModalBtn{
    margin-top: 1rem !important;
    align-self: center !important;
  }
}

@media (max-width: 768px) {
  #scrollToTopButton {
    bottom: 6rem !important; /* Distance from the bottom of the page */
  }
  .openModalBtn {
    /* margin: 0 auto; */
    margin-top: 1rem;
  }
  .footer-section .social-icons {
    margin-top: 1rem;
    justify-content: center;
  }

  .social-icons-container h6 {
    margin-top: 1rem;
    text-align: center !important;
  }
  .available-stores h2 {
    margin-top: 2rem;
  }
  .foreign-project-section {
    /* margin-top: 2rem; */
    padding: 1.5rem 1.5rem;
  }
  .newsletter-section {
    padding: 1rem !important;
  }
  .footer-section .btn-outlined {
    margin: 1rem 0 0 0;
    width: 100%;
    text-align: center;
  }
  .footer-section .social-icons {
    margin-bottom: 1rem;
    text-decoration: none;
  }
  .available-stores-container {
    display: none;
  }
  .network-and-stores-mobile-section {
    display: block;
    padding: 1rem 0rem 0rem 1rem !important;
  }

  .faq-section .wrapper {
    padding: 0rem 0rem !important;
  } 
  .footer-section .wrapper {
    padding: 0rem 0rem !important;
  } 

  .phone-image img {
    max-width: 100%;
    margin-top: 0rem;
  }
  .newsletter-section p {
    padding: 1rem;
    text-align: start;
  }
  .newsletter-section form {
    width: 100% !important;
  }
  .newsletter-button {
    text-align: center;
  }
  .network-and-stores-mobile-section {
    display: block !important;
  }
  .footer-links li {
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
  }
  .footer-links {
    margin-bottom: 1rem;
  }
  .social-icons-container h2 {
    font-family: Montserrat;
    font-size: 12px !important;
    font-weight: 400;
    line-height: 14.63px;
    letter-spacing: 0.10000000149011612px;
    text-align: center;
    color: #25323e;
  }

  .social-icons {
    width: 100%;
  }
  .btn-language-mobile {
    display: block !important;
  }
  .btn-language {
    display: none !important;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .newsletter-section {
    padding: 1rem;
  }

  /* section {
    padding: 1rem 1rem !important;
  } */

  .sponsor-friends-section {
    padding: 0.5rem !important;
  }

  .network-and-stores-mobile-section {
    margin-top: 1rem !important;
    padding: 0rem !important;
    padding-top: 1rem !important;
  }

  .network-and-stores-mobile-section h2 {
    margin-top: 1rem !important;
  }
  .testimonial-ratings {
    display: none !important;
  }

  .hide-on-desktop {
    display: block !important;
  }

  .recommendation-btn {
    display: none !important;
  }

  .left-section h1 {
    font-size: 1.5rem; /* 24px / 16 = 1.5rem */
    font-weight: 600;
    line-height: 1.82875rem;
    letter-spacing: 0.00625rem;
    text-align: left;
    text-align: center;
  }

  .divider-header {
    display: none;
  }
  .left-section {
    margin-bottom: 0 !important;
  }
  .right-section {
    width: 96vw;
    margin: 0 auto;
    padding: 1rem;
  }

  .recommendation-form h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
  }

  .recommendation-form h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
  }

  .form-control::placeholder {
    color: var(--place-holder-color);
    font-weight: 400;
    font-size: 0.9rem;
  }

  .form-control {
    padding: 0.1rem 0.3rem;
    font-size: 0.9rem;
  }
  .divider-header {
    display: none;
  }

  .openModalBtn {
    margin: 0 auto !important; /* Center the button */
  }
  .recommandation-button-mobile {
    display: flex !important;
  }

  .modal {
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
  }

  .modal-content {
    top: 10%;
    width: 100%; /* Full width on mobile */
    height: 100%; /* Full height on mobile */
    margin: 0;
    border-radius: 0; /* Remove border radius for full-screen effect */
    padding: 1rem; /* Adjust padding for mobile */
    z-index: 1000000;
  }
  .newsletter-section form {
    padding: 0rem !important;
  }
  /* .faq-section .wrapper {
    padding: 0rem 1rem !important;
  } */
}

@media (max-width: 576px) {
  .faq-section .wrapper {
    padding: 0rem 0rem !important;
  } 
  .footer-section .wrapper {
    padding: 0rem 0rem !important;
  } 

  .logo-propertips img {
    width: 9.25rem !important;
    height: 2.8rem !important;
  }
  .arrow-container {
    display: none;
  }

  .left-section {
    margin-top: 2rem !important;
  }

  .left-section p {
    margin-bottom: 1rem !important;
  }

  .highlight {
    background-color: var(--highlight-color);
    color: #fff;
    padding: 0rem 0.25rem;
    transform: rotate(-2deg); /* Rotates the arrow by 2 degrees */
    display: inline-block;
    line-height: 2rem;
    margin-bottom: 1rem !important;
  }
  .price {
    line-height: 1.5rem;
    translate: 0px !important;
  }

  .left-section h1 {
    font-size: 1.5rem; /* 24px / 16 = 1.5rem */
    font-weight: 600;
    line-height: 1.82875rem;
    letter-spacing: 0.00625rem;
    text-align: left;
    text-align: center;
    margin-bottom: 16px !important;
  }

  .left-section p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.00625rem;
    text-align: center;
  }

  .divider-header {
    display: none !important;
  }

  .testimonial-ratings-mobile {
    display: block !important;
  }

  .form-control {
    font-size: 1.2rem;
    padding: 1rem;
  }

  .recommandation-button-mobile {
    margin-top: 1rem;
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: sticky !important;
    z-index: 10000;
    /* bottom: 0px !important; */
  }
}

.testimonial-slider {
  overflow-x: scroll;
  padding: 1rem;
  padding-left: 3rem;
  display: flex;
  position: relative;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* animation: scroll 150s linear infinite; */
}

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 90%; /* Adjust the width to fit the cards properly */
  margin-right: 28px;
}

@keyframes scroll {
  0% {
    transform: translateX(0); /* Cards start fully visible */
  }
  100% {
    transform: translateX(-100%); /* Cards move out of view to the left */
  }
}

/* Hide scrollbar in Firefox */
.testimonial-slider {
  scrollbar-width: none; /* Hides the scrollbar in Firefox */
}

/* Hide scrollbar in WebKit-based browsers (Chrome, Safari, Edge) */
.testimonial-slider::-webkit-scrollbar {
  display: none; /* Hides the scrollbar in WebKit-based browsers */
}

.testimonial-card:first-child {
  margin-left: 80px !important; /* Add some space to ensure it's fully visible */
}

.btn-outlined:hover .icon-path {
  fill: #fff !important;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn,
.disabled {
  background-color: #c88955 !important;
}

#scrollToTopButton {
  position: fixed;
  bottom: 74px; /* Distance from the bottom of the page */
  right: 24px; /* Distance from the right of the page */
  cursor: pointer; /* Make the button clickable */
  z-index: 1000; /* Ensure it floats above other elements */
  transition: opacity 0.3s ease;
}

.special-padding {
  padding: 4px 8px !important;
}

.swal2-styled {
  border-radius: 100px;
  padding: 10px 16px !important;
}

/* ---------- FAQ Styles ---------- */
.faq-section {
  background: linear-gradient(180deg, #b1d9ec 0%, #f3f6f7 100%);
  /* padding: 0rem 2rem !important; */
  margin-bottom: 0 !important;
}

.faq-section .container {
  /* max-width: 100%; */
  padding: 0;
}

.faq-title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0.1px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0.5rem;
}

.accordion {
  background-color: transparent;
  margin-top: 2rem !important;
}

.accordion-item {
  
  background-color: transparent;
  border: none;
  border-bottom: 3px solid #00658E;
  margin-bottom: 0;
}

.accordion-item:last-child {
  border-bottom: 3px solid #00658E;
  border-radius: 0px !important;
}

.accordion-button {
  background-color: transparent !important;
  color: #25323E !important;
  padding: 20px 0 !important;
  width: 100%;
  text-align: left;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-family: Montserrat;
  font-weight: 600 !important;
  font-size: 20px !important;
  line-height: 1.4;
  letter-spacing: 0.1px;
  vertical-align: middle;
  padding-right: 3rem !important;
  display: flex;
  align-items: center;
  position: relative;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  color: #25323E !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='38px' height='40px' viewBox='0 0 40 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 15.8302L27.65 13.5977L20 20.8493L12.35 13.5977L10 15.8302L20 25.3302L30 15.8302Z' fill='%2300658E'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out;
  position: absolute;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='38px' height='40px' viewBox='0 0 40 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 15.8302L27.65 13.5977L20 20.8493L12.35 13.5977L10 15.8302L20 25.3302L30 15.8302Z' fill='%2300658E'/%3E%3C/svg%3E");
  transform: translateY(-50%) rotate(180deg);
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.1px;
  vertical-align: middle;
}

.accordion-collapse {
  transition: none !important;
}

.accordion-body {
  padding: 0 0 20px 0;
}
.accordion-body b {
  font-weight: 600 !important;
}

.accordion-body p {
  width: 65%;
  color: #25323E;
  font-family: Montserrat;
  font-weight: 400 !important;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.1px;
  margin: 20px 0;
  margin-top: 10px !important;
}

/* Remove data-bs-parent from accordion to allow multiple items open */
.accordion-collapse.show {
  display: block !important;
}

.accordion-collapse.collapsing {
  height: auto !important;
  overflow: visible !important;
  transition: none !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1.5rem !important;
  }

  .faq-title {
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 2rem;
  }

  .accordion {
    margin-top: 1.5rem !important;
  }

  .accordion-button {
    font-size: 18px !important;
    line-height: 1.4;
    padding: 1.25rem 2.5rem 1.25rem 0 !important;
  }

  .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    right: 0;
  }

  .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
    margin: 1rem 0;
  }

  .accordion-item {
    border-bottom: 2px solid #00658E;
  }

  .mac-canvas{
    transform: translateY(0rem) !important;
  }
}


/* Small Mobile Devices */
@media (max-width: 480px) {
  /* .faq-section {
    padding: 2rem 1rem !important;
  } */

  .faq-title {
    font-size: 24px;
    line-height: 120%;
  }

  .accordion-button {
    font-size: 16px !important;
    padding: 1rem 2rem 1rem 0 !important;
  }

  .accordion-button::after {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem;
  }

  .accordion-body p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0.875rem 0;
  }
  .accordion-item:last-child {
    border-bottom: 2px solid #00658E;
    border-radius: 0px !important;
  }
}



