:root {
  --primary-color: #05648e;
  --secondary-color: #2fb6e6;
  --text-color: #05648e;
  --white-color: #fff;
}

@font-face {
  font-family: "Lato-bold";
  src: url("../fonts/Lato-Bold.ttf") format("ttf"),
    url("../fonts/Lato-Bold.woff") format("woff"),
    url("../fonts/Lato-Bold.woff2") format("woff2");

  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato-Regular";
  src: url("../fonts/Lato-Regular.ttf") format("ttf"),
    url("../fonts/Lato-Regular.woff") format("woff"),
    url("../fonts/Lato-Regular.woff2") format("woff2");

  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato-Light";
  src: url("../fonts/Lato-Light.ttf") format("ttf"),
    url("../fonts/Lato-Light.woff") format("woff"),
    url("../fonts/Lato-Light.woff2") format("woff2");

  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

/* header style */
.header {
  padding: 20px 0px;
  background-color: var(--white-color);
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
}

.header img {
  width: 90px;
}

.header button {
  font-family: "Lato-bold", sans-serif;
  background-color: var(--primary-color);
  padding: 4px 6px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: var(--white-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
}

.header button a {
  color: var(--white-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

/* banner style */
.banner {
  background-image: url(../img/1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 100px 150px;
}

.banner .sub-heading {
  font-family: "Lato-Regular", sans-serif;
  color: var(--white-color);
  font-weight: 400;
  font-size: 24px;
}

.banner .heading {
  font-family: "Lato-bold", sans-serif;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 44px;
}

.banner .text-paragraph {
  font-family: "Lato-Light", sans-serif;
  color: var(--white-color);
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
}

.banner .facts-wrapper {
  margin-top: 40px;
}

.banner .features-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-bottom: 5px;
}

.banner .features-number {
  font-family: "Lato-bold", sans-serif;
  color: var(--white-color);
  font-weight: 700;
  font-size: 22px;
  margin: 0;
}

.banner .features-description {
  font-family: "Lato-Regular", sans-serif;
  color: var(--white-color);
  font-weight: 400;
  font-size: 14px;
  margin-top: -4px;
}

.form-container {
  border: 1px solid var(--white-color);
  padding: 30px 25px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  width: 90%;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #05648e inset;
  /* match your input background */
  box-shadow: 0 0 0 1000px #05648e inset;
  -webkit-text-fill-color: #fff;
  /* or your desired text color */
  transition: background-color 5000s ease-in-out 0s;
}

/* Normal input style */
/* .form-container input[type="tel"] {
  padding-left: 45px;
  background-image: url(../img/5.webp);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: 10px center;
} */

/* Autofill override */
/* .form-container input[type="tel"]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 0px  inset; 
  box-shadow: 0 0 0 0px #fff inset;
  -webkit-text-fill-color: #fff;              
  
 
  background-image: url(../img/5.webp);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: 10px center;
} */



.form-container form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.form-container input {
  border: 1px solid var(--white-color);
  padding: 10px 20px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  background-color: transparent;
  font-family: "Lato-Light", sans-serif;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 300;
  width: 50%;
  margin-bottom: 20px;
}

.form-container input[type="email"] {
  width: 100%;
}

/* For most modern browsers */
.form-container input::placeholder {
  color: #fff;
  font-size: 14px;
  opacity: 1;
  font-family: "Lato-Light", sans-serif;
  color: var(--white-color);
  font-weight: 300;
}

/* WebKit browsers (Chrome, Safari, Edge) */
.form-container input::-webkit-input-placeholder {
  color: #fff;
  font-size: 14px;
  opacity: 1;
  font-family: "Lato-Light", sans-serif;
  color: var(--white-color);
  font-weight: 300;
}

/* Firefox 18- */
.form-container input::-moz-placeholder {
  color: #fff;
  font-size: 14px;
  opacity: 1;
  font-family: "Lato-Light", sans-serif;
  color: var(--white-color);
  font-weight: 300;
}

/* Firefox 19+ */
.form-container input:-moz-placeholder {
  color: #fff;
  font-size: 14px;
  opacity: 1;
  font-family: "Lato-Light", sans-serif;
  color: var(--white-color);
  font-weight: 300;
}

/* Internet Explorer 10-11 */
.form-container input:-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
  opacity: 1;
  font-family: "Lato-Light", sans-serif;
  color: var(--white-color);
  font-weight: 300;
}

/* .form-container input[type="tel"]{
     padding-left: 45px;
    background-image: url(../img/5.webp);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 10px 7px;
} */
input:focus {
  outline: none;
}

.form-container button.submit-form {
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

/* second section style */
.second-section {
  padding: 80px 100px;
}

.second-section h2 {
  font-family: "Lato-bold", sans-serif;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 32px;
  margin: 0;
}

.quote-wrapper {
  margin: 40px 0px;
}

.quote-wrapper img.quote-avatar {
  width: 100px;
  height: 100px;
}

.quote-wrapper img.quote-icon {
  width: 24px;
}

.quote-wrapper hr,
.custom-hr {
  border: none;
  height: 1px;
  background: var(--secondary-color);
  margin: 4px 0px;

  width: 100%;
  opacity: 1;
}

.custom-hr {
  display: block;
  height: 0.5px !important;
}

.quote-wrapper p.quote-text {
  font-family: "Lato-Regular", sans-serif;
  color: var(--text-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

p.quote-position {
  font-family: "Lato-Regular", sans-serif;
  color: var(--secondary-color);
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
}

.partners-logo {
  margin-bottom: 8px;
}

.partners-logo img {
  width: 100px;
}

/* guest-journey style */
.guest-journey {
  background-color: #05648e;
  padding: 50px;
  border-radius: 100px 0px 100px 0px;
  -webkit-border-radius: 100px 0px 100px 0px;
  -moz-border-radius: 100px 0px 100px 0px;
  -ms-border-radius: 100px 0px 100px 0px;
  -o-border-radius: 100px 0px 100px 0px;
}

.guest-journey-title-container {
  width: 650px;
  display: block;
  margin: auto;
}

.guest-journey-title-container h2 {
  font-family: "Lato-bold", sans-serif;
  color: var(--white-color);
  font-weight: 700;
  font-size: 50px;
  margin: 0;
  text-align: center;

}

.guest-journey-title-container p {
  font-family: "Lato-Light", sans-serif;
  color: var(--white-color);
  font-weight: 300;
  font-size: 25px;
  text-align: center;
  margin: 20px;
}

.guest-journey {
  padding: 50px;
  border-radius: 250px 0 250px 0;
  transition: background-color 0.4s ease;
  -webkit-border-radius: 250px 0 250px 0;
  -moz-border-radius: 250px 0 250px 0;
  -ms-border-radius: 250px 0 250px 0;
  -o-border-radius: 250px 0 250px 0;
}

.guest-journey-button-toggle {
  margin: 40px 0px;
}

.guest-journey-button-toggle button {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
  border: none;
  padding: 20px 30px;
  margin: 0 30px;
  cursor: pointer;
  border-radius: 60px;
  width: 350px;
  transition: all 0.3s ease;
  background-color: #05648e;
  color: #fff;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
}

/* active button: white bg + white box shadow; text color set by JS */
.guest-journey-button-toggle button.active {

  background-color: #fff;
  box-shadow: 0 0 40px #fff;
}

.toggle-content {
  display: none;
  margin-top: 20px;
  color: #fff;
  transition: opacity 0.3s ease;
}

.toggle-content.show {
  display: block;
}

img.team-stream {
  width: 180px;

  padding: 0px 0px 20px;
}

.team-stream-section {
  margin-bottom: 40px;
}

.Platform-section {
  margin-bottom: 60px;
}

.team-stream-section h3 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--white-color);
  margin: 0;
  padding-left: 30px;
  margin-left: 15px;
  border-left: 1px solid #fff;


}

.operation {
  padding: 50px 0px 0px;
  margin: 50px 0px;
  border-top: 1px solid var(--secondary-color);
}

.operation h3 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 44px;
}

.operation .lists {
  margin: 20px 0px;
}

.operation .list-item {
  align-items: flex-start;
}

.operation .list-icon {
  width: 19px;
  padding-top: 5px;
}

.operation .list-content h4 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.operation .list-content p {
  font-family: "Lato-Regular", sans-serif;
  color: var(--white-color);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 5px;
}

.operation .right-column {
  padding-left: 40px !important;
}

.operation .right-column h3 {
  padding-right: 20px !important;
}

img.Team-img {
  width: 70%;
  display: block;
  margin: auto;
}

.Platform-section h3 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--white-color);
  margin: 0;
}


.stay {
  padding: 50px 0px 0px;
  margin: 50px 0px;
  border-top: 1px solid var(--primary-color);
}

.stay h3 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 44px;
}

.stay .lists {
  margin: 20px 0px;
}

.stay .list-item {
  align-items: flex-start;
}

.stay .list-icon {
  width: 19px;
  padding-top: 5px;
}

.stay .list-content h4 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.stay .list-content p {
  font-family: "Lato-Regular", sans-serif;
  color: var(--white-color);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 5px;
}

.stay .right-column {
  padding-left: 40px !important;
}

.stay .right-column h3 {
  padding-right: 20px !important;
}

img.Team-img {
  width: 70%;
  display: block;
  margin: auto;
}

/* qr-section style */
.qr-section {
  padding: 100px 0px;
}

.qr-section h2 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: var(--primary-color);
}

.qr-section p,
.optima-section p,
.get-brochure p {
  font-family: "Lato-Light", sans-serif;
  color: var(--primary-color);
  font-weight: 300;
  font-size: 28px;
  text-align: left;
}

.qr-section button {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
  border: none;
  padding: 20px 40px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 60px;
  transition: all 0.3s ease;
  background-color: var(--secondary-color);
  color: #fff;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.qr-section img {
  width: 65%;
  display: block;
  margin: auto;
}

.qr-section .row {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 80px;
}

/*  Integrated section style */
.integrated-section{
  padding-top: 60px;
}
.integrated-section .row {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 80px;
}

.integrated-section h2,
.Action-section h2 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: var(--primary-color);
  text-align: center;
}

.integrated-section p {
  font-family: "Lato-Light", sans-serif;
  color: var(--primary-color);
  font-weight: 300;
  font-size: 30px;
  text-align: center;
  width: 74%;
  display: block;
  margin: 0px auto 30px;
}

.integrated-section img {
  width: 110px;
}

/* Action-section */
.Action-section {
  padding-top: 80px;
}

.Action-section .row {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 80px;
}

.Action-section p {
  font-family: "Lato-Light", sans-serif;
  color: var(--primary-color);
  font-weight: 300;
  font-size: 30px;
  text-align: center;
  width: 63%;
  display: block;
  margin: 0px auto 30px;
}

.Action-section button {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
  border: none;
  padding: 20px 40px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 60px;
  transition: all 0.3s ease;
  background-color: var(--secondary-color);
  color: #fff;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: block;
  margin: auto;
}

.testimonials-section .row {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 40px;
}

.testimonials-section {
  padding-top: 100px;


}

.testimonials-section h2 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: var(--secondary-color);
  text-align: center;
}

.mySwiper {
  /* or 100% as needed */
  margin: 0 auto;
  padding: 40px 0;
  /* top/bottom space */
}

.swiper-slide {

  padding: 0px 30px;
  box-sizing: border-box;
}

.mySwiper {
  position: relative;
}

/* the fade overlay */
.mySwiper::before,
.mySwiper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  /* fade width – adjust as you like */
  height: 100%;
  z-index: 2;
  pointer-events: none;
  /* allow dragging under it */
}

.mySwiper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

.mySwiper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

.mySwiper .quote-wrapper img.quote-avatar {
  width: 140px !important;
  height: 140px !important;
}

/* optima-section */
.optima-section {
  padding-top: 60px;
}

.optima-section h2 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 80px;
}

.optima-section h3 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color);
  text-align: left;
}

.optima-section button {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
  border: none;
  padding: 20px 40px;
  margin-top: 40px;
  cursor: pointer;
  border-radius: 60px;
  transition: all 0.3s ease;
  background-color: var(--secondary-color);
  color: #fff;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.optima-section img {
  width: 75%;
  display: block;
  margin: auto;
}

.optima-section .row {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--primary-color);
}

/* smarter-way-section style */
.smarter-way-section,
.get-brochure {
  padding-top: 60px;
}

.smarter-way-section .row {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--primary-color);
}

.smarter-way-section h2,
.get-brochure h2 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 65px;
  color: var(--secondary-color);
  text-align: left;
}

.smarter-way-section img {
  width: 100%;
  margin: 20px 0px;
}

.smarter-way-section .lists {
  margin: 20px 0px;
}

.smarter-way-section .list-item {
  align-items: flex-start;
}

.smarter-way-section .list-icon {
  width: 19px;
  padding-top: 5px;
  margin: 0px !important;
}

.smarter-way-section .list-content h4 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--primary-color);
}

.smarter-way-section .list-content p {
  font-family: "Lato-Regular", sans-serif;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 12px;
}

.smarter-way-section .right-column,
.get-brochure .right-column {
  padding-left: 80px;
}

.get-brochure {
  padding-bottom: 60px;
}

.get-brochure form {
  width: 100%;
}

.get-brochure p {
  margin-bottom: 0px;
}

.get-brochure form input {
  border: 3px solid var(--primary-color);
  padding: 14px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: transparent;
  font-family: "Lato-Regular", sans-serif;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 20px;

}

/* For most modern browsers */
.get-brochure input::placeholder {
  color: var(--primary-color);
  font-size: 20px;
  opacity: 1;
  font-family: "Lato-Regular", sans-serif;

  font-weight: 400;
}

/* WebKit browsers (Chrome, Safari, Edge) */
.get-brochure input::-webkit-input-placeholder {
  color: var(--primary-color);
  font-size: 20px;
  opacity: 1;
  font-family: "Lato-Regular", sans-serif;

  font-weight: 400;
}

/* Firefox 18- */
.get-brochure input::-moz-placeholder {
  color: var(--primary-color);
  font-size: 20px;
  opacity: 1;
  font-family: "Lato-Regular", sans-serif;

  font-weight: 400;
}

/* Firefox 19+ */
.get-brochure input:-moz-placeholder {
  color: var(--primary-color);
  font-size: 20px;
  opacity: 1;
  font-family: "Lato-Regular", sans-serif;

  font-weight: 400;
}

/* Internet Explorer 10-11 */
.get-brochure input:-ms-input-placeholder {
  color: var(--primary-color);
  font-size: 20px;
  opacity: 1;
  font-family: "Lato-Regular", sans-serif;

  font-weight: 400;
}

.get-brochure button {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: var(--secondary-color);
  color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  width: 100%;
}

/* faq section */

.faq-section {
  background-color: #05648e;
  padding: 50px;
  border-radius: 100px 0px 100px 0px;
  -webkit-border-radius: 100px 0px 100px 0px;
  -moz-border-radius: 100px 0px 100px 0px;
  -ms-border-radius: 100px 0px 100px 0px;
  -o-border-radius: 100px 0px 100px 0px;
}

.faq-section h3 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: var(--white-color);
  text-align: center;
}

.tabs {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
  margin: 20px 0px;
}

.tab {
  font-family: "Lato-Regular", sans-serif;
  font-weight: 400;
  padding: 5px 20px;
  width: 220px;
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  background: transparent;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 22px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.tab.active {
  background: var(--secondary-color);
  color: #fff;
}

.faq-content {
  display: none;
}

.faq-content.active {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
  justify-content: center;
  /* align items to start */
}

.faq-item {
  border: 2px solid var(--secondary-color);
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
  display: inline-block;
  max-width: max-content;

  height: fit-content;
}

.faq-item h4 {
  font-family: "Lato-Regular", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 0px;
  width: max-content;
  /* wrap to content width */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  display: none;
  margin-top: 8px;
  color: var(--white-color);
  font-family: "Lato-Light", sans-serif;
  font-weight: 300;
  font-size: 18px;
  width: max-content;
  -webkit-transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  -moz-transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  -ms-transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.faq-item.open {
  background-color: var(--secondary-color);
}

.faq-item.open h4 {
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 5px;
}

.faq-item.open .faq-answer {
  display: block;
  width: max-content;
  max-height: 500px;
}

/* form-footer */
.form-footer {
  padding: 50px 0px;
  margin-top: 50px;
  border-top: 1px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 150px;
}

.form-footer .form-container button.submit-form {
  margin-top: 50px;
}

.form-footer .form-container {
  width: 80%;
}

.form-footer h3 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 70px;
  color: var(--white-color);
  text-align: center;
}

.form-footer h4 {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--white-color);
  text-align: center;
  margin-bottom: 40px;
}

/* footer */
footer {
  padding: 40px 0px;
}

.footer-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item img.footer-item-icon {
  width: 18px;
}

.footer-item img.partners-icons {
  width: 150px;
}

.footer-item a,
.footer-item p {
  font-family: "Lato-Light", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--primary-color);
  text-decoration: none;
  margin: 0;
}

.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.toast-div {
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  width: 300px;
}

.iti__flag-container,
.iti__selected-flag {
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  overflow: hidden;
}

.iti {
  width: 50%;
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  width: 100%;
}

.iti__selected-country {
  height: 40px;
  background-color: transparent !important;
}

.form-footer .form-container button.iti__selected-country {
  margin-top: 0px !important;
}

input[type=search] {
  color: var(--primary-color) !important;
}

.iti__search-icon {

  top: 13px;
}

.iti__arrow {
  border-bottom-color: var(--white-color) !important;
  border-top-color: var(--white-color) !important;
}

.iti__selected-dial-code {
  font-family: "Lato-Light", sans-serif;
  color: var(--white-color);
  font-size: 14px;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.spinner {
  display: none;
  /* hidden by default */
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  /* color of border */
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* When loading, show spinner & dim button */
.submit-btn.loading {
  opacity: 0.8;
  pointer-events: none;
}

.submit-btn.loading .spinner {
  display: inline-block;
}

.toast-div {
  position: fixed;
  bottom: 69px;
  right: 3%;
  /* transform: translateX(-50%); */
  background-color: #fff;
  color: #05648e;
  text-align: center;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 9999;
}

/* not found styles */
.not-found{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.not-found h1{
  text-align: center;
  font-family: "Lato-bold", sans-serif;
  font-weight: 700;
  font-size: 160px;
  color: var(--primary-color);

}
.not-found p{
  font-family: "Lato-Regular", sans-serif;
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  margin-top: 30px;
}
.not-found a{
    background-color: var(--secondary-color);
    padding: 10px 20px;
    margin-top: 20px;
    font-family: "Lato-bold", sans-serif;
    color: var(--white-color);
    border-radius:35px ;
    -webkit-border-radius:35px ;
    -moz-border-radius:35px ;
    -ms-border-radius:35px ;
    -o-border-radius:35px ;
}