body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background: linear-gradient(to right, #2c003e, #4b0082);
  color: #fcd116;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 20px;
  font-size: 14px;
  background-color: #1a0030;
}

.contact-info span {
  margin-right: 15px;
}

.social-icons a {
  color: #fcd116;
  margin-left: 10px;
  text-decoration: none;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #2c003e;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.hamburger {
  display: none;
  font-size: 26px;
  color: #fcd116;
  background: none;
  border: none;
  cursor: pointer;
}

nav {
  flex-grow: 1;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #fcd116;
  font-weight: bold;
}

nav ul li:hover {
  background-color: #3d0066;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a0030;
  top: 100%;
  left: 0;
  min-width: 150px;
  z-index: 1000;
}

.dropdown-content li a {
  padding: 10px 20px;
  color: #fcd116;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li:hover {
  background-color: #3d0066;
}
.contact-info a {
  color: #fcd116;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: #fcd116;
  margin-left: 10px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffffff;
}
footer {
  background-color: #2c003e;
  color: #fcd116;
  padding: 40px 20px 10px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffffff;
}

.footer-column p,
.footer-column ul,
.footer-column form {
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a,
.footer-column a {
  color: #fcd116;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column form {
  display: flex;
  flex-direction: column;
}

.footer-column input[type="email"] {
  padding: 8px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}

.footer-column button {
  padding: 8px;
  border: none;
  background-color: #fcd116;
  color: #2c003e;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.footer-column button:hover {
  background-color: #e6bd00;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #fcd116;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  border-top: 1px solid #4b0082;
  color: #aaa;
}
.banner-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 500px;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 193, 7, 0.7);
  border: none;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
  color: #fff;
  border-radius: 50%;
}

.nav.prev {
  left: 10px;
}

.nav.next {
  right: 10px;
}

.tile-gallery {
  padding: 20px;
  background: #1a0033;
  overflow: hidden;
}

.tile-row {
  display: flex;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
  animation-timing-function: linear;
}

.tile {
  flex: 0 0 auto;
  width: 220px;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.tile:hover img {
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 70%;
  max-height: 70%;
}

.caption {
  text-align: center;
  color: #fff;
  margin-top: 15px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}
.tile-gallery {
  padding: 40px 20px;
  background: #1a0033;
  overflow: hidden;
}

.tile-row {
  display: flex;
  gap: 20px; /* space between tiles */
  overflow: hidden;
  white-space: nowrap;
  animation-timing-function: linear;
  margin-bottom: 40px; /* space between two rows */
}

.tile {
  flex: 0 0 auto;
  width: 220px;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid gold; /* golden border */
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.tile:hover img {
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 70%;
  max-height: 70%;
  border: 5px solid gold;
  border-radius: 10px;
}

.caption {
  text-align: center;
  color: gold;
  margin-top: 20px;
}

.caption h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.caption p {
  font-size: 16px;
  max-width: 80%;
  margin: auto;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: gold;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

.tile-heading {
  text-align: center;
  font-size: 32px;
  color: gold;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-gallery {
  padding: 40px 20px;
  background: #1a0033;
  overflow: hidden;
}

.video-heading {
  text-align: center;
  font-size: 28px;
  color: gold;
  margin: 40px 0 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.video-row {
  display: flex;
  gap: 20px;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 50px;
}

.video-tile {
  flex: 0 0 auto;
  width: 260px;
  height: 160px;
  border: 3px solid gold;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 70vh;
  border: 5px solid gold;
  border-radius: 10px;
}

.caption {
  text-align: center;
  color: gold;
  margin-top: 20px;
}

.caption h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.caption p {
  font-size: 16px;
  max-width: 80%;
  margin: auto;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: gold;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}
.about-section {
  background-color: #1a0033;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-content h2 {
  color: gold;
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content p {
  color: white;
  font-size: 18px;
  line-height: 1.7;
}
.services-section {
  padding: 60px 20px;
  background-color: #1a0033;
  position: relative;
}

.services-heading {
  text-align: center;
  font-size: 32px;
  color: gold;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}
.services-slider::-webkit-scrollbar {
  display: none;
}

.service-card {
  min-width: 280px;
  max-width: 280px;
  background-color: #220040;
  border: 2px solid gold;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: gold;
  margin-bottom: 10px;
  font-size: 20px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* Scroll Buttons */
.scroll-btn {
  background-color: rgba(255, 215, 0, 0.7);
  border: none;
  font-size: 2rem;
  color: #1a0033;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background-color: gold;
}

.scroll-btn.left {
  position: absolute;
  left: 0;
}

.scroll-btn.right {
  position: absolute;
  right: 0;
}
.team-section {
  padding: 60px 20px;
  background-color: #1a0033;
  position: relative;
}

.team-heading {
  text-align: center;
  font-size: 32px;
  color: gold;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.team-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}
.team-slider::-webkit-scrollbar {
  display: none;
}

.team-card {
  min-width: 680px;
  max-width: 680px;
  background-color: #220040;
  border: 2px solid gold;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
}

.team-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-card h3 {
  color: gold;
  margin-bottom: 8px;
  font-size: 20px;
}

.team-card p {
  font-size: 15px;
  line-height: 1.4;
}

/* Reuse scroll buttons */
.scroll-btn {
  background-color: rgba(255, 215, 0, 0.7);
  border: none;
  font-size: 2rem;
  color: #1a0033;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background-color: gold;
}

.scroll-btn.left {
  position: absolute;
  left: 0;
}

.scroll-btn.right {
  position: absolute;
  right: 0;
}

.full-video-section {
  width: 100%;
  height: 650px;
  overflow: hidden;
  position: relative;
  background-color: black;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.client-section {
  padding: 40px 20px;
  background: #1a0033;
  color: white;
  text-align: center;
}

.section-heading {
  font-size: 28px;
  color: gold;
  margin-bottom: 20px;
}

.client-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.client-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.client-carousel::-webkit-scrollbar {
  display: none;
}

.client-tile {
  min-width: 250px;
  height: 300px;
  background: #1a0033;
  border: 2px solid gold;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-tile img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.carousel-btn {
  background-color: transparent;
  border: none;
  font-size: 30px;
  color: gold;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  transition: color 0.3s;
}

.carousel-btn:hover {
  color: white;
}

.carousel-btn.left {
  position: absolute;
  left: 0;
}

.carousel-btn.right {
  position: absolute;
  right: 0;
}
.testimony-section {
  background: #1a0033;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.section-heading {
  font-size: 32px;
  color: gold;
  margin-bottom: 30px;
}

.testimony-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.testimony-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.testimony-carousel::-webkit-scrollbar {
  display: none;
}

.testimony-card {
  background: #1a0033;
  border: 2px solid gold;
  border-radius: 10px;
  min-width: 280px;
  max-width: 280px;
  padding: 20px;
  text-align: center;
  color: white;
  flex-shrink: 0;
}

.testimony-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid gold;
}

.testimony-card h3 {
  margin: 5px 0;
  color: gold;
}

.testimony-card .title {
  font-size: 14px;
  color: #ccc;
}

.testimony-card .quote {
  font-style: italic;
  margin-top: 10px;
  color: #eee;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 30px;
  color: gold;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  padding: 10px;
}

.carousel-btn:hover {
  color: white;
}

.carousel-btn.left {
  left: 0;
}

.carousel-btn.right {
  right: 0;
}

.visitor-stats-section {
  background: #1a0033;
  padding: 50px 20px;
  text-align: center;
}

.visitor-stats-container {
  max-width: 400px;
  margin: 0 auto;
}

.visitor-card {
  background-color: #121212;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.visitor-card:hover {
  transform: scale(1.05);
}

.visitor-icon {
  font-size: 50px;
  color: gold;
  margin-right: 20px;
  animation: pulse 2s infinite;
}

.visitor-info h4 {
  color: #f5f5f5;
  margin: 0;
  font-size: 1.5rem;
}

.visitor-info p {
  color: #f5f5f5;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 5px;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive tweak */

/* Responsive */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  .nav-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hamburger {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul li a {
    padding: 10px 20px;
    width: 100%;
  }

  .dropdown-content {
    position: static;
  }

  .dropdown-content li a {
    padding-left: 40px;
  }

  .logo img {
    max-height: 60px;
  }
    .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
.nav {
    font-size: 1.5rem;
    padding: 0.3rem;
  }
  .scroll-btn {
    font-size: 1.5rem;
    padding: 8px;
  }

  .service-card {
    min-width: 240px;
    max-width: 240px;
  }

  .team-card {
    min-width: 240px;
    max-width: 240px;
  }

}
