* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.body {
  background-color: #fdf0d5;
}
html {
  scroll-behavior: smooth;
}
.progress-container {
  width: 100%;
  height: 4px;
  background: #eae0d5;
  position: fixed;
  top: 0;
  left: 0;

  z-index: 1000;
}

/* Circle styles */
.circle {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999999;
  transition: transform 0.1s ease-out;
}


  z-index: 1000; 
}

    /* Circle styles */
    .circle {
      height: 24px;
      width: 24px;
      border-radius: 50%;
      background-color: black;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 99999999;
      transition: transform 0.1s ease-out;
    }
     @media (max-width: 600px) {
  .circle {
    display: none !important;
  }
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #8b0000;
}
.faq-page .header {
  min-height: 20vh;
}
.header {
  min-height: 0vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 20px 0;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 5%;
  margin-right: 6px;
  background: linear-gradient(
    135deg,
    rgb(99, 0, 0),
    rgba(218, 67, 67, 0.665),
    rgb(71, 22, 22),
    rgba(17, 16, 16, 0.3)
  );
  background-size: 400% 400%; /* make the gradient larger to animate */
  animation: gradientMove 5s linear infinite;

  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(179, 177, 177, 0.2);
  position: fixed;
  top: 0;
  height: 9%;
  width: 100%;
  z-index: 999;
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.nav-links ul li a {
  color: #fdf0d5;
  text-decoration: none;
  font-family: serif;
  font-size: 13px;
  padding: 12px 16px;
  display: block;
}

.nav-links ul li a:hover {
  text-decoration: none; /* REMOVE underline */
}

.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #fdf0d5;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

nav .fa {
  display: none;
}
@media (max-width: 700px) {
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: fixed;
    background: linear-gradient(135deg, #d24848, #7a0000, #cea8bc);
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    box-shadow: -8px 0 20px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease-in-out;
  }
  nav .fa-times {
    display: block;
    color: #663346;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  nav .fa-bars {
    display: block;
    color: #663346;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
}
.nav-links ul {
  padding: 30px;
}

main {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.heading-faq {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  background-color: #780000;
  color: #fdf0d5;
  text-align: center;
  font-size: 1.5rem;
  padding-bottom: 48px;
  /* width: 100vw; */
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  font-size: 18px;
  margin-right: 10px;
  color: #f5f5dc;
  display: inline-block;
  transition: transform 0.2s ease, color 0.3s ease;
}
.social-icons a:hover {
  color: #ffd9b3;
  transform: translateY(-3px) scale(1.15);
}

.faq {
  color: #780000;
  border-left: 4px solid #780000;
  background: #fff;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  margin-right: 5vw;
  margin-left: 60px;
  padding: 0.5rem;
  box-shadow: #780000 0 0 7px;
}
a {
  text-decoration: none;
  color: #780000;
}
.ask {
  display: flex;
  color: #fdf0d5;
  flex-direction: column;
  height: 10rem;
  background-color: #780000;
  width: 25rem;
  margin: auto;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
}

.mail {
  background-color: #fdf0d5;
  width: 80%;
  border-radius: 1.5rem;
  text-align: center;
  padding: 0.5rem;
}
.ask h3 {
  font-size: 1.5rem;
}
.seperator {
  height: 2rem;
}
.ask p {
  justify-self: end;
}
.mail img {
  object-fit: cover;
}

/*  CSS for Phone */
@media screen and (max-width: 768px) {
  .heading {
    font-size: 0.75rem;
  }
  .ask {
    border-radius: 0;
  }
}
