* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0f172a;
  color: #ffffff;
}

section {
  width: 100%;
  margin: 0;
}

/* .header-logo-img:hover {
    transition: all 0.5s ease;
  transform: scale(1.25);
} */

.swiper {
  width: 100%;
  padding: 40px 0;
  max-width: 900px;
  margin: 0 auto;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 40px 20px;
  height: 400px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  z-index: 1;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(51, 65, 85, 0.5) 100%); */
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.swiper-slide-active {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.1);
  /* box-shadow: 10px 30px 40px rgba(59, 130, 246, 0.3); */
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.7;
  transform: perspective(1200px) rotateY(25deg) scale(0.9);
}

.swiper-slide-prev {
  transform: perspective(1200px) rotateY(-25deg) scale(0.9);
}

.swiper-slide-next {
  transform: perspective(1200px) rotateY(25deg) scale(0.9);
}

.card-content {
  text-align: center;
  z-index: 10;
  position: relative;
}

.card-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.card-description {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.grid-image {
  width: 100%;
  height: 20vh;
  object-fit: cover;
  border-radius: 12px;
}

.grid-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.swiper-pagination-bullet {
  background-color: #64748b;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background-color: #3b82f6;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(59, 130, 246, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 15, 0.6),
    rgba(8, 10, 15, 0.8)
  );
}

.marquee {
  display: flex;
  gap: 32px;
  align-items: center;
  will-change: transform;
  animation: marqueeAnim 20s linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  width: 180px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: #0b1220;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* padding: 8px; */
  background: transparent;
}

@keyframes marqueeAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.img-btn {
  margin: 5px;
  padding: 10px 15px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.img-btn:hover {
  background: #0056b3;
}

/* Site links (buttons generated from gallery image filenames) */
.site-links-wrap {
  width: 100%;
  background: linear-gradient(180deg, #071024, #0b1220);
  padding: 36px 0;
}

.site-links {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap; /* keep buttons in one row */
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto; /* allow horizontal scrolling if needed */
  -webkit-overflow-scrolling: touch;
  padding: 8px 12px;
  white-space: nowrap;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #e6eef8;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.12s ease;
  /* background .12s ease, box-shadow .12s ease; */
  flex: 0 0 auto; /* prevent shrinking */
}

.site-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.6);
}

.site-button .small-name {
  opacity: 0.85;
  font-size: 12px;
  margin-left: 8px;
  color: #9fb0d6;
  font-weight: 500;
}

/* Pause marquee on hover for accessibility */
.marquee-wrap:hover .marquee {
  animation-play-state: paused;
}
/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: 60px 20px 30px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-section ul li a:hover {
  color: #3b82f6;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 140px;
  height: 40px;
  
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  transition: all 0.5s ease;
}
.footer-logo-img:hover {
  transform: scale(1.25);
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.footer-social-link:hover {
  background: #3b82f6;
  color: white;
}

.footer-divider {
  height: 1px;
  background: rgba(59, 130, 246, 0.2);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: #64748b;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #3b82f6;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}
