* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.head {
  background-color: #f7f9fa;;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: cyan;
}

/* Hamburger Icon */
.hamburger {
  width: 30px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  background: black;
  height: 3px;
  border-radius: 2px;
  transition: 0.4s;
}

/* Hamburger Animation - Turn into X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    padding-left: 20px;
    width: 100%;
    display: none;
    padding: 20px 10px;
    animation: slideDown 0.4s ease forwards;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* faq section */
.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-section h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}

.faq-question {
  background: #e9ecef;
  width: 100%;
  padding: 15px;
  font-weight: bold;
  border: none;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #dee2e6;
}

.arrow {
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #333;
  padding: 0 15px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  padding: 15px;
  max-height: 300px;
}

.faq-footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

.faq-footer a {
  color: #007BFF;
  text-decoration: none;
}

/* footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 20px 30px;

     @media screen and (max-width: 780px){
       padding: 50px 15px;
}
    }

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;

}

.footer-logo img {
    width: 150px;
}

.footer-links {
    display: flex;
    gap: 60px;

    @media screen and (max-width: 780px){
    gap: 20px;
}
}

.footer-column {
    min-width: 150px;
} 

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;

}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}


.footer-column ul li a {
color: #cccccc;
text-decoration: none;
font-size: 14px;
margin-left: 30px;

@media screen and (max-width: 450px) {
    padding-right: 30px;
}
}

.footer-column ul li a:hover {
    color: #00c2cb;
}

.footer-buttom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    text-align: center;
}

.footer-buttom p {
    font-size: 14px;
    color: #aaaaaa;
}

.footer-socials a img {
    width: 24px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  /* background: linear-gradient(to right, #f2f6fa, #e4f0ff); */
  color: #333;
  animation: fadeInBody 1.2s ease-in;
}

@keyframes fadeInBody {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}


@keyframes slideInDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
