/* .video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.video-main {
  width: 100%;
  height: auto;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 40%;
  z-index: 2;
  border: 4px solid #fff;
}

Mobile Responsive
@media (max-width: 768px) {
  .video-overlay {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 15px;
  }
} */

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Helps stack videos vertically on mobile */
  align-items: center;
}

.video-main {
  width: 100%;
  height: auto;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 40%;
  height: auto;
  z-index: 2;
  border: 4px solid #fff;
}

/* Wrapper with glassmorphism + floating effect */
.video-wrapper-2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
  max-width: 95%;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: floaty 6s ease-in-out infinite;
  overflow: hidden;
}

/* Video Style */
.cool-video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  object-fit: cover;
  background-color: #000;
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: popIn 1s ease forwards;
}

/* Hover Glow */
.cool-video:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0, 204, 255, 0.7), 0 0 60px rgba(0, 204, 255, 0.4);
}

/* === Animations === */
@keyframes floaty {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* new video style 3 */
/* TikTok/Reels style vertical wrapper */
.video-wrapper-3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  max-width: 420px; /* Mobile width */
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  animation: floaty 6s ease-in-out infinite;
}

/* Vertical Video */
.video-wrapper-3 .cool-video {
  width: 100%;
  aspect-ratio: 9 / 16; /* Vertical video */
  border-radius: 30px;
  object-fit: cover;
  background-color: #000;
  box-shadow: 0 0 20px rgba(255, 0, 150, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: popIn 1s ease forwards;
}

/* Neon Border Effect */
.video-wrapper-3::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 3px;
  background: linear-gradient(135deg, #ff00ff, #00f0ff, #ff9500);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: neonGlow 5s linear infinite;
  pointer-events: none;
}

/* Hover Glow */
.cool-video:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0, 255, 200, 0.6);
}

.reactions {
  position: absolute;
  right: 15px;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 5;
}

.reactions .icon {
  font-size: 28px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reactions .icon:hover {
  transform: scale(1.3) rotate(8deg);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* === Animations === */
@keyframes floaty {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes neonGlow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .video-wrapper-3 {
    max-width: 100%;
    padding: 8px;
    border-radius: 25px;
  }

  .video-wrapper-3 .cool-video {
    border-radius: 20px;
  }

  .reactions .icon {
    font-size: 22px;
    padding: 8px;
  }
}

/* new video style 3 */

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-wrapper {
    flex-direction: column;
  }

  .video-overlay {
    position: relative;
    bottom: auto;
    right: -68px;
    width: 64%;
    height: auto;
    margin-top: -500px;
  }
}

.cta-thumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-thumb img {
  width: 100%;
  max-width: 180px;
  border-radius: 10px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cta-thumb img {
    max-width: 100%;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}

.gallery-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
}

.gallery-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

/* preloader */
/* Preloader base */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* your background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Animate logo like Earth */
.preloader img {
  width: 100px; /* adjust size */
  height: auto;
  animation: earthRotate 8s linear infinite;
  transform-style: preserve-3d;
  border-radius: 10px;
}

/* Earth-like horizontal spin */
@keyframes earthRotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
