/* Import Custom Font */
@font-face {
  font-family: "Agrandir Narrow";
  src: url("../fonts/agrandir-narrow.otf") format("opentype");
}
@font-face {
  font-family: "sans-serif";
  src: url("../fonts/PublicSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "sans-serif-bold";
  src: url("../fonts/PublicSans-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Gochi Hand";
  src: url("../fonts/GochiHand-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
/* Global Styles */
body {
  background-color: #f8f9fa;
  font-family: sans-serif; /* Remove 'Agrandir Narrow' */
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom);

}
body,
html {
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Agrandir Narrow", sans-serif;
}

.color_red {
  color: #ea3d32 !important;
}
.text_MH{
    font-family: "Agrandir Narrow", sans-serif;
    font-size: 64px !important;
    font-weight: normal !important;

}
.text_SH{
    font-family: "Agrandir Narrow", sans-serif;
    font-size: 48px !important;
    font-weight: normal !important;

}
.text_P{
    font-family: "sans-serif", sans-serif;
    font-size: 22px !important;
    font-weight: normal !important;

}
.text_BP{
    font-family: "sans-serif-bold", sans-serif;
    font-size: 22px !important;
    font-weight: normal !important;
}
.text_BT{
    font-family: "sans-serif", sans-serif;
    font-size: 18px !important;
    font-weight: normal !important;

}
.another_color_red {
  color: #b93d22 !important;
}
/* Header */
.logo {
  color: #b84623;
  font-family: "Gochi Hand", cursive;
  font-size: 40px;
  font-weight: 400;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 30px 20px;
}
#typing-text::after {
  content: "|";
  font-weight: bold;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
/* Ensures all text starts at the same point */
.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.hero h1 {
  font-size: 64px;
  font-weight: normal;
  color: #1c2143;
}

.highlight {
  color: #b93d22;
}

.hero p {
  font-size: 22px;
  font-weight: normal;
  color: #1c2143;
  line-height: 28.13px;
}
.hero-content_BP{
    font-family: "sans-serif-bold", cursive;
    font-size: 22px !important;
    font-weight: normal !important;

}
/* Buttons */
.btn-access {
  background-color: #b93d22;
  color: white;
  padding: 10px 30px;
  border-radius: 0px;
  font-size: 18px;
  /*font-weight: 700;*/
  font-family: "Public Sans", sans-serif;
  text-decoration: none;
  border: none;
  box-shadow: none;
}

.btn-access:hover {
  background-color: #8e3419;
  color: white;
}

.arrow-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #b93d22;
  text-decoration: none;
  font-size: 18px;
}
.row.align-items-center.justify-content-between.py-3 {
    margin-top: 3rem;
}
.arrow-icon {
  width: 28px;
  height: 28px;
  stroke: #1e1e1e;
  stroke-width: 2.5;
  transform: translateY(-3px); /* Moves the arrow higher */
}

.arrow-link:hover {
  color: #8e3419;
}

.split-section {
  /* display: flex;
        align-items: center;
        justify-content: center; */
  background: black;
    margin-bottom: 10rem;

}

.left-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.white-box {
  width: 100%;
  height: auto;
  max-width: 600px; /* Optional: Set a max width if needed */
  aspect-ratio: 16 / 9; /* Ensures correct video ratio */
  border-radius: 8px;
}

.white-box iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.right-side {
  background: #527c70;
  color: #F5F5F4;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.right-side h2 {
  font-size: 48px;
  font-weight: 700;
    line-height: 141%;
}

.right-side p {
  font-size: 20px;
    font-weight: 400;
  line-height: 1.6;
  max-width: 500px;
  margin-top: 15px;
 font-family: 'Roboto', sans-serif;

}
.image_placeholder_div {
  padding: 20px;
  margin-top: -20px;
}
.image_placeholder_div h1{
    font-weight: 700;
    font-size: 48px;
    line-height: 141%;
    margin-bottom: 3rem;
}
.feature-list {
  list-style-type: none;
  padding-left: 0;
}
.feature-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px; /* Add more space for the larger circle */
}

.feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px; /* Adjust position to vertically align */
  width: 10px; /* Set the size of the circle */
  height: 10px; /* Set the size of the circle */
  background-color: #1c2143; /* Circle color */
  border-radius: 50%; /* Make the circle round */
}
.feature-list li strong {
  display: block;
}
.image-placeholder {
    height: 300px; /* Adjust as needed */
    background-color: #fdfbfb;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Center horizontally */
    overflow: hidden; /* Prevents image stretching */
}

.image-placeholder img {
    max-width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills space without distortion */
    border-radius: 2%;
}

h1 {
  font-weight: 700; /* Set font weight to 700 */
  font-size: 32px; /* Set font size to 48px */
  color: #527c70; /* Set text color to #527C70 */
}
p {
  font-weight: 400; /* Set font weight to 700 */
  font-size: 20px; /* Set font size to 48px */
  color: #1c2143; /* Set text color to #527C70 */
}
.feature-list li strong {
  display: inline; /* Makes sure the text stays on the same line */
}
.right-side p {
  color: white;
}

.left-section {
  flex: 1;
  text-align: left;
  padding-right: 20px;
}
.right-section {
  flex: 2;
  text-align: left;
}
.left-section h1 {
  font-size: 2.5em; /* Adjust font size */
  color: #333;
  margin-bottom: 20px;
}
.question {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}
.question::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5em;
  color: #333;
}
.question::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
.answer {
  padding-left: 25px;
  margin-bottom: 15px;
  display: none; /* Initially hide answers */
}
.open::before {
  content: "-"; /* Change to minus when open */
}
.open .answer {
  display: block; /* Show answer when open */
}

.footer_content {
  background-color: #1c2143; /* Dark background */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding-top: 50px;
}

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

.joude-logo {
  color: #f5f5f4;
  font-family: "Gochi Hand", cursive;
  font-size: 40px;
  margin-bottom: 20px;
}

.divider {
  height: 2px;
  width: 100%;
  background-color: #616770; /* Light gray divider */
  margin: 20px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icons i {
  font-size: 30px; /* Adjust icon size */
  margin: 0 10px;
  color: white; /* Icon color */
  padding: 5px;
  border-radius: 5px;
}

.copyright {
  font-size: 0.9em;
  margin-bottom: 5px;
}

.privacy-terms {
  font-size: 0.9em;
}
.half-page-content {
  background-color: #1c2143; /* Dark blue background */
  color: white !important;
  border: none;
  height: 100%;
  border-radius: 10px;
  padding: 20px;
}
.half-page-content p {
  color: white !important;
}

.form-control::placeholder {
  color: white;
  opacity: 1;
}
.form-control:focus {
  box-shadow: none;
  border-color: white;
}
.modal-title {
  color: white;
}
.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  color: white !important;
  border-radius: 0;
}
.form-control:focus {
  background-color: transparent;
  box-shadow: none;
  border-color: white;
  color: white !important;
}
.modal-footer {
  border-top: none;
  justify-content: flex-end;
}
.btn-primary {
  background-color: transparent;
  border: none;
  color: white;
  padding: 0;
}
.btn-primary:hover {
  background-color: transparent;
  color: lightgray;
}
.modal-body {
  padding-bottom: 40px;
}

/* Button Styling */

/* Button to Show Half Page */
.show-half-page-btn {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  font-size: 16px;
  background-color: #1a1d37;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.show-half-page-btn:hover {
  background-color: #282c54;
}

.form-container {
  width: 50%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -50vw; /* Initially hidden */
  background: #1c1e30;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  box-shadow: -3px 0 5px rgba(0, 0, 0, 0.3);
  transition: right 1s ease-in-out;
  overflow: hidden;
  color: white;
}

/* Show the form on mobile with 100% width */
@media (max-width: 768px) {
    .form-container {
        width: 100%;
        right: -100vw; /* Initially hidden */
    }
    .left-section h1 {
        margin-bottom: 5rem; /* Set a smaller margin for mobile */
    }
}
.form-container p {
  color: white !important;
}
.form-container input::placeholder {
  color: white !important;
}
.form-container.active {
  right: 0; /* Slide into view */
}

.form-step {
  display: none;
  position: absolute;
  width: 100%;
  transition: transform 1s ease-out; /* Slow vertical transition */
  overflow-y: auto;
}

.form-step.active {
  display: block;
  transform: translateY(0); /* No movement, show the step in its position */
}
/*  */
/* Next step transition (moving down) */
.form-step-next {
  transform: translateY(100%); /* Move next step down */
}

/* Previous step transition (moving up) */
.form-step-prev {
  transform: translateY(-100%); /* Move the previous step up */
}
input:not([type="checkbox"]) {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid white;
  background: transparent;
  color: white;
  font-size: 16px;
}

input:focus {
  outline: none;
  border-bottom-color: lightblue;
}

.btn-group {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 70px;
}

.form-btn {
  background: none;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.form-btn:hover {
  color: lightblue;
}

/* Exit Button */

/* Style for the next and previous buttons */
.form-btn {
  font-size: 20px;
  background: white; /* Set background to white */
  color: #1c1e30;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.form-btn:hover {
  background: #ddd; /* Change background to a light gray on hover */
  color: #000;
}

/* Style for the exit button (X) */
.exit-btn {
  position: absolute;
    top: 2px;    /* Adjust to position vertically */
    right: 2px;  /* Adjust to position horizontally */
  font-size: 20px;
  cursor: pointer;
  color: #1c1e30; /* Set color to match the form */
  background: white; /* Set background to white */
  border-radius: 50%;
  padding: 5px 10px;
  transition: background 0.3s ease;
  display: block; /* Ensure the button is displayed */
  z-index: 9999 !important;
}

.exit-btn:hover {
  background: #ddd; /* Change background to a light gray on hover */
}

/* Style for error messages */
label.error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

/* Highlight the input field when validation fails */
input.error {
  border: 2px solid red !important;
}
.flatpickr-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.options {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns in each row */
  gap: 15px; /* Adjust spacing as needed */
  margin-bottom: 30px;
  width: 70%;
}
#step-8 .options {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 4 columns in each row */
  gap: 15px; /* Adjust spacing as needed */
  margin-bottom: 30px;
  width: 70%;
}
.option {
  background-color: #f5f5f4;
  color: #1a237e;
  border: none;
  padding: 10px 20px; /* Reduced padding */
  font-size: 14px; /* Smaller font size */
  border-radius: 20px; /* Slightly smaller border radius */
  cursor: pointer;
  transition: background-color 0.3s ease;
}
/* Center the content in step 11 */

.option:hover {
  background-color: #c5cae9; /* Slightly darker gray on hover */
}

.option.selected {
  background-color: #9fa8da; /* Highlight the selected option */
}
.option:active {
  transform: scale(
    0.98
  ); /* Button scales down when clicked (animation effect) */
}
#other-industry-input {
  margin-top: 20px;
  display: none; /* Initially hidden */
}
#step-10 .consent {
  margin-top: 20px;
}

#step-10 .consent label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: white;
  margin-bottom: 5px;
  line-height: 1.5;
  flex: 1;
}

#step-10 .consent label input[type="checkbox"] {
  display: none; /* Hide the default checkbox */
}

#step-10 .consent label .custom-checkbox {
  width: 25px; /* Custom width */
  height: 25px; /* Custom height */
  border: 2px solid #fff; /* White border for the checkbox */
  border-radius: 4px; /* Rounded corners */
  background-color: transparent; /* Transparent background */
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}

#step-10 .consent label input[type="checkbox"]:checked + .custom-checkbox {
  background-color: #b93d22; /* Background color when checked */
}

#step-10 .consent label .custom-checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 2px; /* Small circle inside the checkbox */
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

#step-10
  .consent
  label
  input[type="checkbox"]:checked
  + .custom-checkbox::after {
  opacity: 1; /* Make the inner circle visible when checked */
}
/* Medium screens (Tablets) */
@media (max-width: 992px) {
  .options {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for medium screens */
  }
}

/* Small screens (Mobile) */
@media (max-width: 768px) {
  .options {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
  }
}

/* Extra Small screens (Phones) */
@media (max-width: 480px) {
  .options {
    grid-template-columns: repeat(1, 1fr); /* 1 column for very small screens */
  }

}

@media (max-width: 768px) {
  #step-10 .consent label {
    font-size: 12px; /* Reduce font size slightly for smaller screens */
  }

  #step-10 .consent label .custom-checkbox {
    width: 70px;
    height: 30px;
  }

  #step-10 .consent label .custom-checkbox::after {
    width: 10px;
    height: 10px;
  }
}

#step-11 h2 {
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
}

.line1,
.line2,
.line3 {
  display: block;
}

.social-icons {
  margin-top: 20px;
  text-align: center; /* Center-align social icons */
}

.social-icon {
  margin: 0 10px;
  width: 40px; /* Adjust icon size */
  height: auto;
}
.joude-xx {
  font-family: "Gochi Hand", cursive;
  font-weight: 400;
  margin-top: 20px; /* Adds space between the previous text and this one */
}
.go-home_btn-group {
  display: flex;
  justify-content: center; /* Center the button horizontally */
  margin-top: 20px; /* Optional: adds space between the button and the text above */
}

.go-home-btn {
  background-color: white; /* White background */
  color: black; /* Black text color */
  padding: 10px 30px;
  border-radius: 0px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Public Sans", sans-serif;
  text-decoration: none;
  border: none;
  box-shadow: none;
}

.go-home-btn:hover {
  background-color: black; /* Change background to black on hover */
  color: white; /* Change text color to white on hover */
  border: 2px solid white; /* Change border color to white on hover */
}
.left-section-video {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

.right-section-text {
    background-color: #527c70;
    color: #F5F5F4;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*height: 50vh;*/
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
    padding: 50px;

}
.right-section-text p {
    color: #F5F5F4;
    max-width: 500px;
    margin-top: 15px;
}
iframe {
    width: 80%;
    height: 80%;
}

.text-center {
    text-align: center;
}
#player iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

@media (max-width: 1024px) {
    .left-section-video,
    .right-section-text {
        height: auto !important;
    }
    #player{
        height: 693.59px !important;

    }
}
/* Prevent color change on hover for buttons inside .privacy-terms */
.privacy-terms .btn-link {
    color: inherit; /* Keep the current text color */
    text-decoration: none; /* Optional: remove underline */
}
.privacy-terms a{
    color: white;
}
.privacy-terms .btn-link:hover,
.privacy-terms .btn-link:focus {
    color: inherit; /* Prevent color change on hover or focus */
    text-decoration: none; /* Optional: remove underline */

}


@media (min-width: 768px) {
    .text_MH {
        display: block;
        min-height: 2.5em; /* Enough space for two lines */
        line-height: 1.2;
    }
}
@media (max-width: 768px) {
    .right-section-text {
        padding: 30px;
    }
    .text_MH {
        height: 352px;
    }
    .left-section-video,
    .right-section-text {
        height: auto !important; /* Allow full content to be shown */
    }

    /*.right-section-text h2 {*/
    /*    font-size: 32px;*/
    /*}*/

    /*.right-section-text p {*/
    /*    font-size: 18px;*/
    /*}*/
}
/*.whatsapp-input input {*/
/*    padding: 8px;*/
/*    margin: 2px 0;*/
/*    !*border: 1px solid #ccc;*!*/
/*    !*border-radius: 5px;*!*/
/*    !*font-size: 16px;*!*/
/*}*/
.other-city {
    margin-bottom: 10px;
    width: 100%;
    padding: 8px;
    font-size: 16px;
}

.is-invalid .select2-selection {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

input.select2-search__field{
    color: black;
}
@media (max-width: 576px) {


    .btn-access {
        padding: 4px 10px; /* Smaller button size for mobile */
        font-size: 14px;
    }
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.question.open .answer {
    max-height: 300px; /* Adjust this value based on your content */
}



/* Basic styling for the modal */
.modal {
    display: none;  /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
    overflow: auto; /* Enable scroll if needed */
}

/* Modal Content to mimic Bootstrap large modal */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* Center the modal */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Can be customized */
    max-width: 900px; /* Mimicking Bootstrap large modal's width */
    max-height: 80%; /* Limit the height of the modal */
    overflow-y: auto; /* Add vertical scrolling if content overflows */
}

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

/* The Close Button on hover */
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Optional Button to close modal */
button {
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
}


