body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background: #fff;
      color: #333;
    }

    .top-header {
      background-color: #3c1650;
      color: white;
      padding: 20px 20px 40px;
      position: relative;
    }

    .top-header .logo {
      font-size: 90px;
      font-weight: bold;
    }

    .top-header .faq-tab {
      position: absolute;
      top: 25px;
      right: 20px;
      font-size: 14px;
    }

    .top-header .faq-tab a {
      color: #CA8A1C;
      text-decoration: none;
      font-weight: 400;
    }

    .floating-header {
      background-color: #ffffff;
      padding: 10px 25px;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      gap: 40px;
      justify-content: flex-end;
      align-items: center;
      position: absolute;
      top: 60px;
      right: 20px;
    }

    .floating-header a {
      color: black;
      text-decoration: none;
      font-weight: 500;
      font-size: 22px;
      position: relative;
      transition: all 0.3s ease;
    }

    .floating-header a:hover {
      color: #CA8A1C;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      padding: 10px 0;
      border-radius: 8px;
      z-index: 1000;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-menu a {
      display: block;
      padding: 8px 20px;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
    }

    .dropdown-menu a:hover {
      background-color: #f5f5f5;
    }

    /* Hamburger Menu */
    .hamburger-menu {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      background-color: #f0f0f0;
      border-radius: 50%;
      cursor: pointer;
      position: absolute;
      top: 66px;
      left: 90%;
      transform: translateX(-50%);
      z-index: 1002;
      transition: background 0.3s;
    }

    .hamburger-menu:hover {
      background-color: #a97016;
    }

    .hamburger-menu div {
      width: 25px;
      height: 3px;
      background-color: #3c1650;
      margin: 4px 0;
      transition: 0.4s;
    }

    .hamburger-menu.active .bar1 {
      transform: rotate(-45deg) translate(-6px, 6px);
    }

    .hamburger-menu.active .bar2 {
      opacity: 0;
    }

    .hamburger-menu.active .bar3 {
      transform: rotate(45deg) translate(-6px, -6px);
    }

    @media (max-width: 960px) {
      .floating-header {
        flex-direction: column;
        align-items: center;
        top: 140px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        width: 90%;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: none;
      }

      .floating-header.show {
        display: flex;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }

      .hamburger-menu {
        display: flex;
      }
    }

    .testimonial-heading {
    text-align: center;
    padding: 40px 10px 10px;
    background-color: #ffffff;
    }

    .testimonial-heading h1 {
    font-size: 2.5rem;
    color: #3c1650;
    margin-bottom: 10px;
    margin-top: 2px;
    }

    .testimonial-heading p {
    font-size: 1.2rem;
    color: #3c1650;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.testimonial-gallery {
  padding: 60px 10px;
  background: url('images/Blurred-background.jpeg') center/cover no-repeat;
  overflow-x: auto;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  min-width: 100%;
}

.testimonial-card {
  width: 100%;
  max-width: 370px;
  height: 400px;
  perspective: 1000px;
  position: relative;
  cursor: pointer;
}

.testimonial-front,
.testimonial-back {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  backface-visibility: hidden;
  position: absolute;
  transition: transform 0.8s;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.testimonial-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-back {
  background: #3c1650;
  color: #fff;
  padding: 15px;
  font-size: 14px;
  transform: rotateY(180deg);
  overflow-y: auto;
}

.testimonial-card:hover .testimonial-front {
  transform: rotateY(180deg);
}

.testimonial-card:hover .testimonial-back {
  transform: rotateY(360deg);
}

/* Ensure 4 visible at a time */
.testimonial-container {
  grid-template-columns: repeat(8, minmax(250px, 1fr));
}

.testimonial-gallery {
  overflow-x: auto;
  scrollbar-width: thin;
}

.testimonial-gallery::-webkit-scrollbar {
  height: 10px;
}

.testimonial-gallery::-webkit-scrollbar-thumb {
  background: #CA8A1C;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonial-container {
    grid-template-columns: repeat(8, minmax(50%, 1fr)); /* 2 visible */
  }
}

@media (max-width: 600px) {
  .testimonial-container {
    grid-template-columns: repeat(8, minmax(100%, 1fr)); /* 1 visible */
  }
}

.photo-wall {
  background: #3c1650;
  overflow: hidden;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  
}

.photo-row {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.photo-track {
  display: flex;
  animation: scroll 40s linear infinite;
}

.photo-row:nth-child(2) .photo-track {
  animation-duration: 50s; /* slight variation for effect */
}

.photo-row:nth-child(3) .photo-track {
  animation-duration: 60s;
}

.photo-track img {
  width: 20vw; /* 4 per row */
  height: 300px;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

/* Infinite scroll keyframes */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .photo-track img {
    width: 33.33vw; /* 3 per row */
    height: 160px;
  }
}

@media (max-width: 768px) {
  .photo-track img {
    width: 20vw; /* 2 per row */
    height: 140px;
  }
}

@media (max-width: 480px) {
  .photo-track img {
    width: 100vw; /* 1 per row */
    height: 120px;
  }
}



    .info-section {
      background-color: #3c1650;
      color: white;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }
    .info-section .footer-logo img {
      height: 70px;
      margin-bottom: 20px;
    }
    .info-section .footer-text {
      max-width: 300px;
      font-size: 14px;
      line-height: 1.6;
    }
    .info-section .footer-links ul {
      list-style: none;
      padding: 0;
    }
    .info-section .footer-links li {
      margin-bottom: 10px;
    }
    .info-section .footer-links a {
      color: white;
      text-decoration: none;
      font-size: 14px;
    }
    .info-section .footer-social {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .info-section .footer-social a {
      color: white;
      font-size: 22px;
      text-decoration: none;
      transition: transform 0.2s;
    }
    .info-section .footer-social a:hover {
      transform: scale(1.2);
      color: #CA8A1C;
    }
    .info-section .newsletter {
      display: flex;
      gap: 10px;
    }
    .info-section .newsletter input {
      padding: 10px;
      border-radius: 4px;
      border: none;
    }
    .info-section .newsletter button {
      background-color: #CA8A1C;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
    }

    .copyright {
      background-color: white;
      color: #3c1650;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }

  @media (max-width: 768px) {
  

  .info-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .info-section .footer-text {
    max-width: 100%;
    font-size: 13px;
  }

  .info-section .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .info-section .footer-links li {
    margin: 0;
  }

  .info-section .newsletter {
    flex-direction: column;
    width: 100%;
  }

  .info-section .newsletter input {
    width: 100%;
  }

  .info-section .newsletter button {
    width: 111%;
  }

  .footer-social {
    justify-content: center;
  }
}