/*FAQ section styling  */

.faq-section {
  /* max-width: 1000px; */
  margin: 100px 100px;
  background: #141414f2;
  padding: 20px;
  border-radius: 10px;
}

.first-head {
  font-size: 45px;
  margin: 14rem 2rem 0rem 0rem
}

.faq-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #201a1a;
  margin-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin: 1rem auto;
  font-size: 25px;
  font-weight: bold;
  background: black;
  cursor: pointer;
  border-radius: 20px;
  transition: background 0.3s ease;
  color: white;
  /* border-bottom: 1px solid aqua; */
  /* border-left: 1px solid aqua; */
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.faq-question:hover {
  background: black;
  color: white;
}

.faq-question .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  box-sizing: border-box;
  padding: 15px 15px;
  font-size: 22px;
  /* color: black; */
  display: none;
  /* background: linear-gradient(90deg, #744242, #078181); */
  background: #383838;
  color:white ;
  border-radius: 15px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.faq-answer.visible {
  display: block;
}

.faq-question.active .arrow {
  transform: rotate(360deg);
}


/* Sub-heading Button Stylng */
.sub-headings .sub {
  font-size: 23px;
  margin: 50px;
  padding: 15px 15px;
  border-radius: 15px;
  color: aqua;
  background: black;
  transition: all 0.3s ease;
  /* Smooth transitions */
}

.sub:hover {
  color: white;
  /* Change text color on hover */
  background: black;
  /* Change background color on hover */
  border: 1px solid aqua;
  /* Optional border */
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  /* Initial subtle glow */
  transform: scale(1.05);
  /* Slightly increase size without affecting layout */

}

.sub-headings {
  display: flex;
  flex-direction: row;
  justify-content: center;
}





/* Styling the mission section */
.mission-text {
  background-color: #000;
  padding: 20px;
  margin: 200px auto;
  border-radius: 8px;
  text-align: center;
}

.mission-heading {
  color: aqua;
  font-size: 45px;
  margin-bottom: 15px;
}


.mini-text {
  font-size: 19px;
  color: white;
}

.mission-ulist {
  list-style-type: disc;
  margin: 0 auto;
  padding: 0 20px;
  display: inline-block;
  /* text-align: left; */
}

.mission-list {
  color: white;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
  list-style: none;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.Heading {
  display: flex;
  justify-content: center;
}




/* ================================ */

@media (max-width: 1024px) {
  .sub-headings{
    margin: 0px 60px;
  }

}


/* Medium screens (Tablets) */
@media (max-width: 992px) {
  .faq-item {
    width: 100%;
    /* Stack items vertically */
  }

  .faq-section {
    padding: 15px;
  }
  
}



/* Small screens (Mobiles) */
@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
    gap: 15px;
  }
  .sub-headings .sub {
    margin: 1rem;
    font-size: 16px;
  }

  .faq-item {
    padding: 10px;
    font-size: 14px;
  }

  .faq-question {
    font-size: 16px;
  }
  .footer-container {
    display: flex;
    flex-direction: column;
    
}
}

/* Extra small screens (very small mobiles) */
@media (max-width: 480px) {
  .first-head {
    font-size: 45px;
    margin: 5rem auto 0rem auto;
}
  .faq-section {
    padding: 10px;
    /* width: 93%; */
    margin: 2rem 2rem;
    

  }

  .sub-headings {
    display: flex;
    flex-direction: row;  
  }
  .sub{
    border-radius: 30px ;
  }
 
  .faq-item {
    font-size: 12px;
    padding: 8px;
    width: 95%;
    margin: auto;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 18px;
    display: none;
   
  }
  

  .image-slider {
    margin-right: 0px;
  }

  .Heading {
   margin: 6rem auto;
  }
}