.faq-container {
  width: 100%;
  background-color: #dee3ef00;
}

.faq-item {
  padding: 20px;
background-color: #567175;
  /* --angle: 45deg;
  background: linear-gradient(var(--angle), #8c845f, #60593b, #322d19); */
  box-shadow: 10px 10px 19px #1c1e223c, -10px -10px 19px #262a2e30;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0px 0px 0px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 17px;
  padding-bottom: 3px;
  padding-top: 3px;
  color: #ffffff;
}

.faq-answer {
  font-size: 16px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  max-height: 0;
  overflow: hidden;
  background-color: #122124;
  color: #F1E7BA;
  box-shadow: inset 0px -5px 0px 0px #27484e, inset 0px 5px 0px 0px #192e32;
  transition: max-height 0.3s ease-in-out;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
}

.faq-answer.active {
  border-bottom: 1px solid #222222;
}

.icon-container i {
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.icon-container i.active {
  transform: rotate(90deg);
}

.faqimg {
  width: 400px !important;
  height: auto !important;
}



  .linka {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    margin: 0 10px;
    transition: background-color 0.3s ease;
    font-size: 30px;
}

.linka:hover {
    background-color: transparent;
    border: 1px dashed rgb(231, 227, 49);
}

.linka i {
    transition: color 0.3s ease;
}





.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #B87333 !important;
    border-top: 5px solid #dd9654 ;
    border-bottom: 5px solid #dd9654  ;
}

.slider {
    display: flex;
    animation: slide 50s linear infinite;
}

.slider img {
    width: 200px;
    height: 70px;
    margin-right: 20px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.head11{
    font-size: 100px;
}

.head12{
    font-size: 100px;
}



/*  */
.footer-section {
background-color: #1E232D;
  color: #ffffff; /* Text color */
  padding: 20px 15px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.left-section {
  flex: 2;
  text-align: left;
}

.right-section {
  margin-top: 30px;
  flex: 0.5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.disclaimer-heading {
  margin-top: 30px ;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: left;
}

.disclaimer-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e7e7e7;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: px;
}

.social-icon-box {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon:hover {
transform: scale(1.1); /* Slightly enlarge on hover */

}

.social-icon{
display: flex;
  justify-content: center;
  align-items: center;
  width: 50px; /* Fixed size for the icon box */
  height: 50px;
  transition: transform 0.3s ease, border-color 0.3s ease; /* Hover effect */
}

.social-icon img {
  width: 50px;
  height: 50px;
}

.copyright-section {
  text-align: left;
  margin-top: 30px;
  margin-left: 35px;
}



@media (max-width: 768px) {
  .footer-layout {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0 !important;
  }

  .left-section,
  .right-section {
      max-width: 100%;
  }

}
