/* Prevent horizontal scroll on the whole page */
body {
  overflow-x: hidden;
}



.row h2 {
    color: #fad565;
    text-align: center;
    font-size: 30px;

}
.row p{
	text-align: center;
    padding-bottom: 25px;
    color:white;
    font-size: large;
    margin-top: 10px;

}
.row{
    margin-top: 40px;
}

.faq-container {
  display: flex;
  min-height: 100vh;
  background: #000;
}

.faq-image {
  position: relative;
  width: 40%;
  min-width: 320px;
  background: #222;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  flex-direction: column;
}
.faq-image img {
  width: 100%;
  height: 120vh;
  object-fit: cover;
  display: block;
}
.faq-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #fad565 !important;
  color: #fff !important;
  font-size: 38px;
  font-weight: bold;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 2;
  letter-spacing: 1px;
}
.faq-badge span {
  background: transparent !important;
  color: white !important; /* or your preferred gold color */
  padding: 0;
}
.faq-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff !important;
  z-index: 2;
  background: #000; /* Solid black background */
  border-radius: 0;  /* Remove rounded corners */
  box-shadow: none;  /* Remove shadow */
  padding: 36px 0 18px 0;
  border: none;      /* Remove border */
}
.faq-stat {
    text-align: center;
    padding: 0 36px;
    color: #fff;
}
.faq-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  display: block;
}
.faq-stat-plus,
.faq-stat-k {
    color: #fad565;
    font-size: 2.2rem;
    font-weight: 700;
    margin-left: 2px;
}
.faq-stat-label {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 8px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  text-align: left;
}

.faq-content {
  width: 60%;
  padding: 60px 40px 40px 40px;
  color: #fff !important;
  background: #000;
  min-height: 100vh;
}

.faq-header {
  opacity: 0;
  animation: faqHeaderFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.1s;
}

.faq-header .faq-subtitle {
  opacity: 0;
  animation: faqHeaderFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.2s;
  display: block;
  color: #fad565;
          font-family: "Times New Roman", Times, serif;

}

.faq-header h1 {
  opacity: 0;
  animation: faqHeaderFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.35s;
          font-family: "poppins";

}

.faq-list {
  margin-top: 10px;

}

.faq-item {
    border: 1px solid #333;
    margin-bottom: 18px;
    background: #000;
    transition: background 0.3s;
}

.faq-item.open,
.faq-item:hover {
    background: #fad565 !important;
}

.faq-question {
    cursor: pointer;
    padding: 24px 32px;
    font-weight: bold;
    font-size: 1.3em;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    animation: faqSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
            font-family: "Times New Roman", Times, serif;

}

.faq-item:nth-child(1) .faq-question { animation-delay: 0.1s; }
.faq-item:nth-child(2) .faq-question { animation-delay: 0.25s; }
.faq-item:nth-child(3) .faq-question { animation-delay: 0.4s; }
.faq-item:nth-child(4) .faq-question { animation-delay: 0.55s; }
/* Add more as needed */

.faq-item.open .faq-question {
    color: #fff;
}

.faq-answer {
    display: none;
    background: transparent;
    color: black;
    padding: 24px 32px;
    border-radius: 2px;
    margin-top: 0;
    font-size: 1.1em;
            font-family: "poppins";

}

.faq-item.open .faq-answer {
    display: block;
    background: #fad565 !important;
}

.faq-arrow {
    font-size: 1.5em;
    transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

/* Slide-in animation for FAQ questions */
@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes faqHeaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .faq-container {
    flex-direction: column !important;
    min-height: unset !important;
  }
  .faq-image,
  .faq-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .faq-image img {
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-height: 350px !important;
    object-fit: cover !important;
    display: block !important;
  }
  .faq-content {
    padding: 24px 8px !important;
  }
  .faq-stats {
    position: static !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    margin-top: 20px !important;
  }
}

@media (max-width: 600px) {
  html, body {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    background: #000 !important;
    box-sizing: border-box !important;
  }
  .faq-container {
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .faq-image {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #222 !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  .faq-image img {
    width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 100% !important;
    max-height: 220px !important;
    object-fit: cover !important;
    display: block !important;
  }
  .faq-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 16px 4px !important;
    box-sizing: border-box !important;
  }
  .faq-header,
  .faq-header .faq-subtitle,
  .faq-header h1 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 4px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .navbars {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    box-sizing: border-box !important;
  }
}

/* Ensure navbar doesn't overflow horizontally */
.navbars {
    width: 100%; /* Ensure the navbar spans the full width */
    overflow-x: hidden;
    overflow-y: visible;
    padding: 15px;
    color: white;
    margin-top: 50px;
    position: relative;
    background-color: black;
}

.navbars::before,
.navbars::after {
    content: '';
    display: block;
    height: 2px; /* Thickness of the line */
    background-color:#fad565; /* Color of the line */
    width: 100%;
    position: absolute;
    left: 0;
}

.navbars::before {
    top: 0; /* Line above the navbar */
}

.navbars::after {
    bottom: 0; /* Line below the navbar */
}

.horizontal-scroll {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
}

li {
    display: inline-block;
    margin-right: 10px;
    font-size: 22px;
}

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

.divider {
    color: white;
    font-size: 24px;
    margin-right: 10px;
}
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.breadcrumb-home {
    color: #fff !important;
    text-decoration: none !important;
}



