* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --gold-light: #f4e7c1;
  --gold-dark: #a67c00;
  --dark: #1a1a1a;
  --light: #f9f7f3;
  --gray: #777;
  --gray-light: #f0f0f0;
  --transition: all 0.3s ease;
}

/* Smooth scrolling for in-page anchor links */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 0.5rem;
  text-align: center;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}
.floating-heading h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.services-intro h2::after {
  left: 50%;
  transform: translateX(-50%);
}
.reviews-header  h2::after  {
    left: 50%;
  transform: translateX(-50%);
}
.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Motion Graphics Utility Classes ---------- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--gold), #fff8dc, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes btnGlow {
  0% { box-shadow: 0 0 5px rgba(212,175,55,0.2); }
  100% { box-shadow: 0 0 25px rgba(212,175,55,0.6); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
@keyframes backgroundPulse {
  0% { background-size: 100%; }
  50% { background-size: 105%; }
  100% { background-size: 100%; }
}
@keyframes heartBeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.15); }
  50% { transform: scale(1); }
  75% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
/* Shine effect on buttons */
.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255,255,255,0.3);
  transform: rotate(25deg);
  transition: 0.6s;
}
.btn:hover::after {
  left: 120%;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline::after {
  display: none;
}
.btn-outline:hover {
  background: var(--gold);
  color: white;
}

/* ---------- Header ---------- */
header {
  background-color: rgba(26, 26, 26, 0.95);
  color: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--gold);
  animation: float 3s ease-in-out infinite;
}
.logo .slogan {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-style: italic;
  margin-left: 10px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
nav a {
  color: white;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
nav a:hover {
  color: var(--gold);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--gold);
}
nav a:hover::after {
  width: 100%;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-slider img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:0;
    transition:opacity 2.0s ease;
}

.hero-slider img.active{
    opacity:1;
}
.hero-overlay {
     position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 3;
}
.hero .container {
    position: relative;
    z-index: 4;
    color: white;
    text-align: center;
}
/* Light sweep overlay */
.hero::before {
  z-index: 2;
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 100%;
    background: radial-gradient(
        circle at 25% 25%,
        rgba(255,255,255,0.35) 0%,
        rgba(255,255,255,0.15) 15%,
        transparent 40%);
  animation: heroLightSweep 8s linear infinite;
}
@keyframes heroLightSweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--gold);
  animation: slideDown 1s ease-out, shimmer 3s infinite 1s;
  /* shimmer on top */
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #f0f0f0;
  animation: slideDown 1s ease-out 0.2s both;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideDown 1s ease-out 0.4s both;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
}

.scroll-content {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.scroll-content img {
    width: 260px;
    height: 170px;

    object-fit: cover;
    object-position: center;

    border-radius: 16px;
    flex-shrink: 0;

    transition: transform 0.4s ease;
    cursor: pointer;
}
 

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

.scroll-container::before,
.scroll-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* ---------- Gold Rates ---------- */
.gold-rates {
  background-color: white;
  text-align: center;
  padding: 80px 0;
}
.rates-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  perspective: 1000px;
}
.rate-card {
  background: var(--gray-light);
  padding: 25px;
  border-radius: 8px;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.4s, box-shadow 0.4s;
  animation: float 3s ease-in-out infinite;
  transform-style: preserve-3d;
}
.rate-card:nth-child(2) { animation-delay: 0.3s; }
.rate-card:nth-child(3) { animation-delay: 0.6s; }
.rate-card:hover {
  transform: translateY(-12px) rotateY(3deg) rotateX(3deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.rate-card h3 {
  font-size: 1.5rem;
  color: var(--gold-dark);
}
.rate-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 10px 0;
}
.rate-card.gold { border-top: 4px solid var(--gold); }
.rate-card.silver { border-top: 4px solid #c0c0c0; }

/* ---------- Services ---------- */
.services {
  background-color: var(--light);
  padding: 80px 0;
}
.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
}
.service-card:hover {
  transform: translateY(-10px) rotateY(2deg) rotateX(2deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.service-icon {
  height: 200px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 4rem;
  background-size: cover;
  background-position: center;
  position: relative;
  animation: backgroundPulse 8s infinite alternate;
}
.service-icon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.2);
  z-index: 1;
}
.service-icon i {
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}
.service-icon img{
  object-fit:cover;
   height:200px ;
   width:366px;
}
.service-content { padding: 25px; }

/* ---------- Collection ---------- */
.collection-section {
  padding: 80px 0;
  background: var(--light);
}
.floating-heading {
  text-align: center;
  margin-bottom: 50px;
  animation: float 2.5s ease-in-out infinite;
}
.floating-heading h2 {
  display: inline-block;
  background: rgba(255,255,255,0.9);
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-size: 2.5rem;
  animation: shimmer 4s infinite;
}
.collection-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.collection-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}
.collection-item:hover {
  transform: scale(1.04) rotateY(2deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.collection-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.collection-item:hover img {
  transform: scale(1.1);
}
/* .collection-video-grid video{
 margin-left: 170px;
 } */

/* ---------- Happy Customers / Reviews ---------- */
.happy-customers-section {
  padding: 80px 0;
  background: #fff;
}
.stats-banner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  background: linear-gradient(135deg, #fff9e6 0%, #fdf0d1 100%);
  border-radius: 20px;
  padding: 45px 25px;
  margin-bottom: 70px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border: 1px solid rgba(212,175,55,0.2);
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(0,0,0,0.1);
}
.stat-item h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 8px;
  line-height: 1;
  animation: float 3s infinite;
}
.stat-item p { color: #5a5a5a; font-weight: 500; font-size: 1rem; }
.star-rating {
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: 4px;
}

.reviews-header { margin-bottom: 60px; }
.reviews-header h2 { font-size: 2.3rem; color: var(--dark); }
.reviews-header p { font-size: 1.1rem; color: #666; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  transform-style: preserve-3d;
}
.review-card:hover {
  transform: translateY(-8px) rotateY(2deg);
  box-shadow: 0 25px 45px rgba(0,0,0,0.1);
  border-color: var(--gold-light);
}
.review-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(212,175,55,0.3);
}
.review-card h4 { font-size: 1.2rem; font-weight: 600; color: #1a1a1a; }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.review-text {
  color: #4a4a4a;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 18px;
  border-left: 2px solid var(--gold-light);
  padding-left: 12px;
}
.review-date { font-size: 0.8rem; color: #999; display: inline-block; }
.review-likes {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #e74c3c;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(231,76,60,0.08);
  padding: 4px 10px;
  border-radius: 20px;
}
.review-likes i { animation: heartBeat 1.5s infinite; }

/* ---------- Features ---------- */
.features {
  background-color: var(--dark);
  color: white;
  padding: 80px 0;
}
.features h2 { color: white; }
.features h2:after { background: var(--gold); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.feature {
  text-align: center;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  transition: background 0.3s, transform 0.4s;
  transform-style: preserve-3d;
}
.feature:hover {
  transform: translateY(-8px) rotateY(4deg);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.feature i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ---------- Forms ---------- */
 
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--dark); }
.form-control { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.2); }
textarea.form-control { min-height: 120px; resize: vertical; }
.image-upload { border: 2px dashed #ddd; padding: 30px; text-align: center; border-radius: 4px; cursor: pointer; transition: var(--transition); }
.image-upload:hover { border-color: var(--gold); background-color: rgba(212,175,55,0.05); transform: scale(1.02); }
.image-upload i { font-size: 3rem; color: var(--gold); margin-bottom: 15px; }
.file-name { margin-top: 10px; font-size: 0.9rem; color: var(--gray); }
#status { margin-top: 20px; padding: 15px; border-radius: 4px; text-align: center; font-weight: 500; }
#status.success { background-color: rgba(46,204,113,0.2); color: #27ae60; }
#status.error { background-color: rgba(231,76,60,0.2); color: #c0392b; }
#status.processing { background-color: rgba(52,152,219,0.2); color: #2980b9; }
 

/* ---------- Footer ---------- */
footer {
  background-color: var(--dark);
  color: #aaa;
  padding: 60px 0 30px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-column h3 { color: white; margin-bottom: 20px; font-size: 1.3rem; }
.footer-column h3:after {
  content: ''; display: block; width: 40px; height: 2px;
  background: var(--gold); margin-top: 8px;
}
.contact-info { margin-top: 20px; }
.contact-item { display: flex; align-items: flex-start; margin-bottom: 15px; }
.contact-item i { color: var(--gold); margin-right: 10px; margin-top: 3px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold); transform: translateY(-5px) rotate(360deg);
}
.copyright {
  text-align: center; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* ---------- Floating Buttons ---------- */
.floating-buttons {
  position: fixed; bottom: 30px; right: 30px;
  display: flex; flex-direction: column; gap: 15px; z-index: 999;
  animation: float 2s ease-in-out infinite;
}
.floating-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background-color: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease; text-decoration: none;
  position: relative; overflow: hidden;
}
.floating-btn.call { background-color: #007bff; }
.floating-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%; width: 20%; height: 200%;
  background: rgba(255,255,255,0.4); transform: rotate(25deg);
  transition: 0.6s;
}
.floating-btn:hover::after { left: 120%; }
.floating-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

/* ---------- Price Popup ---------- */
.price-popup {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white; padding: 15px 25px; border-radius: 50px;
  text-align: center; font-weight: 600; margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}
.price-popup i { margin-right: 10px; font-size: 1.2rem; }
/* =========================================
   SELL GOLD - VIDEO + FORM
========================================= */

.form-section {
  background-color: white;
  padding: 120px 0 80px;
}

.form-section .main-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  margin-top: 30px;
}

.form-section .video-container {
  flex: 1 1 0;
  min-width: 0;
}

.form-section .sell-video,.form-section .buy-video ,.form-section .custom-video{
  display: block;
  width: 100%;
  height: 1000px;
  object-fit: cover;
  border-radius: 10px;
}

.form-section .form-container {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 40px;
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
 
/* ---------- Homepage Collection Video ---------- */

.collection-video-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  padding: 0;
  overflow: hidden;
}

.collection-video {
  display: block;
  width: 840px;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
 
/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  h2 { font-size: 2rem; }
  .hero { padding: 150px 0 80px; }
  .hero h1 { font-size: 3rem; }
}
@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    height: 100svh;
    min-height: 600px;
    padding: 0;
    margin: 0;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;

    position: relative;
    z-index: 4;

    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero p {
    width: 100%;
    max-width: 330px;
    margin: 0 auto 25px;

    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 250px;
  }
  /* .mobile-menu-btn { display: block; }
  nav ul {
    position: fixed; top: 70px; left: 0; width: 100%;
    background: var(--dark); flex-direction: column; align-items: center;
    padding: 20px 0; transform: translateY(-100%); opacity: 0;
    transition: var(--transition); z-index: 999;
  }
  nav ul.active { transform: translateY(0); opacity: 1; } */
  header {
    position: fixed;
    z-index: 9999;
  }

   .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    margin-left: auto;
    padding: 0;

    background: transparent;
    border: none;

    color: white;
    font-size: 1.6rem;

    cursor: pointer;

    position: relative;
    z-index: 99999;

    pointer-events: auto;
  }

  nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: var(--dark);
    padding: 20px 0;

    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
    z-index: 9998;
  }

  nav ul.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  nav ul li { margin: 10px 0; }
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: 2.5rem; }
   section { padding: 60px 0; }
  .stats-banner { gap: 30px; padding: 30px 15px; }
  .stat-item:not(:last-child)::after { display: none; }
  .form-section .main-container {
    flex-direction: column;
    gap: 25px;
  }

  .form-section .video-container,
  .form-section .form-container {
    width: 100%;
    flex: none;
  }

  .form-section .sell-video,.form-section .buy-video ,.form-section .custom-video{
    width: 100%;
    height: 600px;
  }

  .form-section .form-container {
    padding: 30px 20px;
  }
   .collection-video-grid {
    width: 100%;
    margin: 25px 0;
    padding: 0;
  }

  .collection-video {
    width: 100%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
  }
   
}
@media (max-width: 576px) {
  .hero h1 { font-size: 2rem; }
  .rates-container { flex-direction: column; align-items: center; }
  .rate-card { width: 100%; max-width: 300px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-section .sell-video, .form-section .buy-video ,.form-section .custom-video{
    height: 600px;
  }

  .form-section .form-container {
    padding: 25px 15px;
  }

   .collection-video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
  }
}

 