body {
  background: #e8edff;
}

#Faq-img-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

#Faq-img-container .bottom-box {
  width: 100%;
}

#contact-us-button {
  display: inline-block;
  width: 9rem;
  height: 2.7rem;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  color: white;
  border-radius: 5rem;
  padding: auto;
  box-shadow: 0.1rem 0.1rem 0.3rem black;
  transition: background 0.3s ease;
  margin: 0.2rem 0 0 0.4rem;
}

#contact-us-button:hover {
  background: linear-gradient(to right, #ffa35d, #ff7452);
}

#contact-us-button a {
  display: inline-block;
  padding-top: 0.2rem;
  font-weight: bold;
}


.bottom-box img {
  height: 22rem;
  margin: auto;
  animation: moving 3s linear 0.5s infinite;
}

@keyframes moving {
  0% {
    transform: scale(0.7);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.7);
  }
}

#Faq-img-container .top-box {
  background-color: #e8edff;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
   animation: 2s anim-lineUp ease-out 1;
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

#Faq-img-container .top-box h1 {
  background: linear-gradient(to right, #334ec7, #924ed6);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 400% 400%;
  font-size: 5rem;
  margin: 0;
  line-height: 4rem;
  font-weight: bolder;
  font-style: normal;
  text-shadow: 0.3rem 0.3rem #44444422;
  animation: gradientmove 3s ease infinite;
}

@keyframes gradientmove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
   background-position: 0% 50%;
  }
}



#Faq-img-container .top-box h2 {
  /* background: linear-gradient(to left,#003366 , #0f52ba); */
  background: linear-gradient(to left, #4a65e1, #66408d);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 2rem;
  font-weight: bold;
  font-style: normal;
  text-shadow: 0.3rem 0.3rem #44444407;
  margin: 1rem 5rem;
}

#Faq-img-container .top-box h4 {
  color: #04388c;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2rem;
  font-style: normal;
  margin: 0rem 8rem 1rem 8rem;
  text-align: center;
}

#faq-container {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#faq-container h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  background-color: #f9f9f9;
  transition: box-shadow 0.3s ease;
  border: 1px solid #ddd;
}

.faq-item:hover {
  box-shadow: 0 4px 18px rgba(102, 126, 234, 0.2);
}

.faq-question {
  background-color: #e7eaff;
  color: #333;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #dbe1ff;
}

.icon {
  font-size: 1.5rem;
  color: #667eea;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(45deg);
  color: #ff6b6b;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #fff;
  color: #444;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 1rem 1.25rem;
}

h1 {
  color: #333;
}

/* footer-css */

.site-footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 20px 20px;
    font-family: 'Nunito Sans', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-container h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-container p,
.footer-container a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
}

.footer-container a:hover {
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 15px;
    margin-top: 30px;
    font-size: 13px;
    color: #aaa;
}