/* Trusted Badge Marquee Styles */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  transition: transform 0.2s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Gallery Grid Styles */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.gallery-grid img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Hero Image Styles */
.hero-img {
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: rotate(2deg) scale(1.02);
}

/* Back Arrow Styles */
.back-arrow {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-arrow:hover {
  color: #10b981;
}

/* Highlight Badge Styles */
.highlight-badge {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 16px;
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

/* Highlights Row Animation */
.highlights-row {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.highlights-track {
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .badge {
    font-size: 12px;
    padding: 6px 12px;
    margin: 0 8px;
  }

  .gallery-grid img {
    width: 150px;
    height: 112px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus States for Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.back-arrow:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .marquee-container,
  .highlights-row {
    display: none;
  }
}
/* add to site's CSS */
.cloud-img-wrapper { display:inline-block; width: calc(33% - 12px); margin:6px; vertical-align:top }
.cloud-img { width:100%; height:160px; object-fit:cover; border-radius:8px; cursor:pointer }
@media(max-width:768px){ .cloud-img-wrapper{width:calc(50% - 12px)} }