
body {
  /* font-family: "Arial", sans-serif; */
  /* margin: 0; */
  /* padding: 0; */
  /* background-color: white; Set the whole background color to white */
  background-color: #ffffff;
}
.container{
    max-width: 1280px!important;
    margin-inline: auto;
    overflow: hidden; 
    /* padding-top: 40px; */
  }

  .container1{
    max-width: 1280px!important;
    margin-inline: auto;
    overflow: hidden; 
    /* padding-top: 40px; */
  }

/* General Navbar Styles */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
  background-color: white;
  position: relative;
}

.logo img {
  height: 130px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  background-color: #f2f7f5;
  border-radius: 25px;
  padding: 15px 15px;
  
}

nav ul li {
  /* margin: 0 20px; */
  text-align: center;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  padding: 15px 20px;
  border-radius: 20px;
  /* transition: background-color 0.3s; */
}

nav ul li a:hover {
  /* background-color: #ffffff; */
  color: #27ae60;
  font-weight: 500;
}

.dropdown a:hover{
  color: #27ae60;
  font-weight: 700;
}

.language-login {
  display: flex;
  align-items: center;
}

.language-select {
  margin-right: 20px;
}

.language-select img {
  height: 25px;
}

.login {
  padding: 10px 20px;
  border: 2px solid #007bff;
  background-color: white;
  color: #007bff;
  border-radius: 25px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.login:hover {
  background-color: #007bff;
  color: white;
}

/* Dropdown for Know Your Rights */
.dropdown {
  position: relative;
  z-index: 1000;
}

.dropdown-content {
  display: none;
  position: fixed;
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 999;
  border-radius: 8px;
  margin-top: 20px;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  /* border-bottom: 1px solid #f2f2f2; */
}



.dropbtn::after {
  content: "▼";

  margin-left: 10px;
}

.dropbtn.active::after {
  content: "▲";
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover a {
  /* background-color: #fff; */
}

/* Mobile Styles */
.nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    background-color: white;
    top: 95px;
    left: 0;
    width: 100%;

    z-index: 999;
    border: none;
    border-radius: 0%;
    align-items: center;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  nav ul li {
    text-align: left;
  }

  .dropdown-content {
    position: static;
    border: none;
  }

  .dropdown-content a {
    padding: 10px 15px;
  }

  .language-login {
    display: none;
    position: fixed;
    background-color: white;
    top: 295px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding-bottom: 20px;
    flex-direction: column;
  }

  .language-login.open{
    display: flex;
  }
}

/* Reduce font size for smaller screens */
@media screen and (max-width: 1096px) {
  nav ul li a {
    font-size: 12px;
  }
}


.flight-animation {
  background-image: url("../static/assets/EUROPE\ \(108\ x\ 29.7\ cm\)\ \(108\ x\ 40\ cm\).gif");
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: 800px;
  width: 100%;
  height: 200px;
  pointer-events: none;
}
.main-section{
  padding: 0 130px  ;
}

.form-group input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  padding: 18px 20px 18px 20px;
  background-repeat: no-repeat;
}

input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  background-size: 30px;
  background-position: 20px 15px;
  background-size: 19px;
  background-repeat: no-repeat;
  padding: 18px 20px 18px 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: large;
}

.form-group label img {
  margin-right: 20px;
  height: 20px;
  width: 20px;
}

.input-container {
  position: relative;
  margin-bottom: 50px; /* Adjust spacing as needed */
  border-radius: 50px;
}

.input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  margin-right: 4px;
  transform: translateY(-50%);
  width: 20px; /* Adjust the size as needed */
  height: 20px; /* Adjust the size as needed */
  pointer-events: none; /* Prevent the icon from blocking input clicks */
}

.input-container input {
  width: 100%; /* Adjust width as needed */
  padding-left: 50px; /* Adjust based on the icon's width and margin */
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 15px;
  margin-top: 10px;
}

.check-compensation-btn {
  display: block;
  background-color: #007bff;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  border: none;
  padding: 13px;
  box-sizing: border-box;
}

.check-compensation-btn:hover {
  background-color: #0056b3;
}

.or-divider {
  text-align: center;
  margin: 20px 0;
  font-size: 1.2em;
  color: #999;
}

.upload-group {
  text-align: center;
  background-color: white;
  border-radius: 15px;
}

.upload-group label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  cursor: pointer;
}

.upload-group label img {
  margin-right: 10px;
  size: 0;
}

input[type="file"] {
  display: none;
}

.bold-text {
  font-weight: bold;
  font-style: italic;
}

.benefits-section {
  padding-top: 0 130px;
}

.benefits-content {
  /* display: flex;
  justify-content: space-between;
  width: 100%; */
}

.benefits-image {
  /* position: relative;
  width: 50%;
  margin-top: 40px; */
}

.benefits-image img {
  width: 100%;
  border-radius: 10px;
}

.benefits-labels {
  position: absolute;
  top: 20px;
  left: 20px;
}

.label {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.label img {
  margin-right: 10px;
}

.flight-problem{
  padding: 0 130px;
}
/* Right side problems grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 50%;
}

.problem-card {
  padding: 20px;
  background-color: #f7fafc;
  /* color: #ffffff; */
  border-radius: 10px;
  text-align: center;
  border: 1px solid #e1e4ed;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.icon {
  font-size: 36px;
  margin-bottom: 15px;
}




.flight-gif img {
  width: 200px;
  transform: translateY(-100px);
}



.get-claim-btn {
  padding: 15px 30px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
}

.get-claim-btn:hover {
  background-color: #0056b3;
}

.no-win-no-fee-section {
  /* display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-color: white;
  border-radius: 50; */
}

.no-win-no-fee-content {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 5; */
}

.no-win-no-fee-content .text-content {
  /* max-width: 50%; */
  display: flex;
  flex-direction: column;
}

/* .text-content {
  max-width: 50%;
} */

/* .text-content h2 {
        font-size: 25px;
        font-weight: bold;
        margin-bottom: 20px;
      } */

.text-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  /* font-stretch: ultra-expanded; */
}

.get-my-claims-btn {
  padding: 15px 30px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

.no-win-no-fee-content .get-my-claims-btn {
  /* width: 30%; */
  text-align: center;
  text-decoration: none;
}

.get-my-claims-btn:hover {
  background-color: #0056b3;
}

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

.testimonials-section {
  padding: 20px;
  background-color: #f9f9f9;
  text-align: left;
}

/* .testimonials-section h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
} */

.testimonials-content {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.testimonials-scroller {
  display: inline-block;
  animation: scroll 50s linear infinite;
}

.testimonial {
  display: inline-block;
  border-radius: 10px;
  padding: 10px;
  margin: 0 10px;
  vertical-align: top;
  width: 430px;
}

.testimonial-image {
  position: relative;
}

.testimonial-image img {
  border-radius: 10px;
  width: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.play-button:before {
  content: "▶";
  color: white;
  font-size: 24px;
}

.testimonial h3 {
  margin-top: 15px;
  margin-bottom: 10px;
}

.rating {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.rating span {
  font-size: 1.5em;
  color: gold;
}

.testimonial p {
  font-size: 0.9em;
  color: #555;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* For larger screens: Display in two columns */

.column ul li div {
  text-align: left;
}

.column ul li h4 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.column ul li p {
  font-size: 1em;
  color: #555;
}



/* For smaller screens: Horizontal scrolling without scrollbar */

.faq-section {
  padding: 50px;
  background-color: #fff;
  text-align: center;
}

.faq-section h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.faq-section h2 span {
  color: #27ae60;
}

.faq-section p {
  font-size: 1em;
  color: #777;
  margin-bottom: 30px;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background-color: #f9f9f9;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #e9e9e9;
}

.faq-answer {
  display: none;
  padding: 15px;
  border-top: 1px solid #e9e9e9;
}

.faq-answer p {
  margin: 0;
}

.icon {
  font-size: 1.5em;
}





.footer-section {
  background-color: white;
  padding: 20px 50px;
  padding-top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social-media-icons {
  display: flex;
  justify-content: space-between;
}

.footer-content1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding-top: 0%;
}

.footer-logo img {
  max-width: 300px; /* Adjust size as needed */
  padding: 0%;
  margin: 0%;
}

.footer-text {
  flex-grow: 1;
  margin: 0 20px;
  color: #555;
}

.footer-text p {
  margin: 0;
  font-size: 1.5em;
  width: 50%;

  z-index: 1000;
}

.footer-icons img {
  margin: 0 10px;
  width: 30px; /* Adjust size as needed */
  height: auto;
  cursor: pointer;
  margin-top: 35px;
}

/* General footer styles */
.multi-column-footer {
  padding: 50px;
  padding-right: 50px;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: white;
}

.footer-content2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #ccc;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  padding: 10px;
}

/* Accordion styles */
.accordion {

}

.accordion-button {
  display: none; /* Hide accordion buttons by default for larger screens */
  justify-content: space-between;
  background: none;
  border: none;
  /* padding: 15px 0; */
  width: 100%;
  cursor: pointer;
  font-size: 1.1em;
  font-family: Arial, sans-serif;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  margin-top: 13px;
}

.accordion-content {
  
}

.accordion-content ul {
  padding-left: 0;
  list-style: none;
}

.accordion-content a {
  display: block;
  margin: 30px 0;
  color: #000000;
  text-decoration: none;
}

.accordion-content a:hover {
  color: #0056b3;
}

/* Rotate icon when accordion is open */
.accordion-button[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

/* When accordion is opened on small screens */
.accordion-button[aria-expanded="true"] + .accordion-content {
  max-height: 300px; /* Set max height for expanded state */
}


/* media screens */

/* Responsive Styling */
@media screen and (max-width: 991px) {
  /* .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: white;
    top: 85px;
    left: 0;
    width: 100%;
    z-index: 99;
    border: none;
    border-radius: 0%;
  } */

  /* .main-nav {
    padding: 0px 40px !important;
    padding-left: 30px !important;
  } */

  /* nav ul {
    padding: 0px 0px !important;
  } */
/* 
  .language-login {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: white;
    top: 237px;
    left: 0;
    padding-bottom: 30px;

    gap: 10px;
    width: 100%;
    z-index: 999;
  } */
/* 
  .nav-links li {
    margin: 10px 0;
  }

  .nav-toggle {
    display: block;
  } */

  /* .language-login {
            display: none;
        } */

  /* .nav-links.open {
    display: flex;
  }
  .language-login.open {
    display: flex;
  } */
}

@media screen and (max-width: 1096px) {
  /* nav ul li a {
    font-size: 12px;
  } */
}

@media screen and (min-width: 769px) {
  /* .accordion {
    border: none;
  } */
}
@media (max-width: 768px) {

  .no-win-no-fee-content .text-content{
    text-align: center;
    align-items: center;
  }
  .footerH3 {
    display: none;
  }
  .footer-content2 {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
  }

  .accordion-button {
    display: flex; /* Display accordion buttons on smaller screens */
  }

  .accordion-content {
    max-height: 0; /* Collapsed by default */
  }
}
@media screen and (max-width: 991px) {
  .flight-issues-container {
    flex-direction: column;
    padding: 50px;
  }


  .problems-grid {
    -ms-overflow-style: none; /* for Internet Explorer and Edge */
    scrollbar-width: none; /* for Firefox */
  }
}


@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700&display=swap");
.accordion {
    display: flex;
    flex-direction: column;
    font-family: "Sora", sans-serif;
    max-width: 991px;
    min-width: 320px;
    margin: 50px auto;
    padding: 0 50px;
}
.accordion h1 {
    font-size: 32px;
    text-align: center;
}
.accordion-item {
    margin-top: 16px;
    border: 1px solid #fcfcfc;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 14px 20px;
    box-sizing: border-box;
    align-items: center;
    text-align: left;
}
.accordion-item .accordion-item-desc {
    display: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    color: #444;
    border-top: 1px dashed #ddd;
    padding: 10px 20px 20px;
    box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
    display: block;
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}

@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }
    .accordion h1 {
        font-size: 22px;
    }
}

