@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused; /* Cursor lane par animation ruk jayegi */
}
/* Marquee Animation */

/* Mobile Drawer States */
#mobile-drawer.drawer-open {
  transform: translateX(0);
}

#drawer-overlay.overlay-visible {
  opacity: 1;
}

/* ---------------------nav-------------------- */
.logo-container {
    position: relative;
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    position: absolute;
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

.logo1 {
    opacity: 1;
}

.logo2 {
    opacity: 0;
}

/* --------------hero section------------------- */
.cursor-follower {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
}
@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.animate-bounce-slow {
  animation: bounce-slow 4s ease-in-out infinite;
}
/* ----------------------ticket-------------------- */
@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-infinite-scroll {
  display: flex;
  width: max-content;
  animation: infinite-scroll 40s linear infinite;
  will-change: transform; /* Performance optimization */
}

/* Track par hover karte hi animation pause ho jayegi aur cursor pointer dikhega */
.ticker-track:hover {
  animation-play-state: paused;
  cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .animate-infinite-scroll {
    animation-duration: 25s; /* Mobile par thoda fast taaki gaps na dikhen */
  }
}

@keyframes wave-move {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* Individual Layer Speeds */
.wave-layer-1 {
  animation: wave-move 7s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.wave-layer-2 {
  animation: wave-move 10s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-delay: -2s;
}

.wave-layer-3 {
  animation: wave-move 13s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-delay: -3s;
}

.wave-layer-4 {
  animation: wave-move 20s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-delay: -4s;
}

/* Responsive height adjustment */
@media (max-width: 768px) {
  .waves-animated-1 {
    height: 40px;
    min-height: 40px;
  }
}

/* -------------------------------video reals----------------------- */

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* ----------------------we can help-------------------  */

html {
  scroll-behavior: smooth;
}

/* Custom Animation for Grid Appearance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.group {
  animation: fadeInUp 0.6s ease forwards;
}

/* -----------------------<!-- Award Scroller Section -->---------------------- */

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

.animate-infinite-orb {
  display: flex;
  width: max-content;
  animation: infinite-orb 35s linear infinite;
}

/* Pause track when hovered */
.animate-infinite-orb:hover {
  animation-play-state: paused;
}

/* Single Card Hover Effect: Scale & Shadow */
.scroller-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.scroller-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 20; /* Taki zoom card baki cards ke upar dikhe */
}

/* Mobile responsive duration and gap */
@media (max-width: 768px) {
  .animate-infinite-orb {
    animation-duration: 20s;
    gap: 12px;
  }
}

/* --------------------------FAQ-------------------------  */
.rotate-icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .rotate-icon {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item.active {
  border-color: #6366f1; /* indigo-500 */
  background-color: #f8fafc;
}
.faq-content {
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.faq-item.active .faq-content {
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
}

/* ------------------footer-------------------- */
.footer-heading {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b; /* Slate-800 */
  margin-bottom: 1.5rem; /* mb-6 */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-link {
  font-size: 14px;
  color: #64748b; /* Slate-500 */
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #1a5fd4; /* Primary Blue */
  transform: translateX(5px);
}

.social-icon {
  color: #1e293b;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #1a5fd4;
  transform: translateY(-3px);
}

.footer-section {
  background: radial-gradient(
    circle,
    rgba(155, 42, 42, 0.21) 0%,
    rgba(87, 106, 199, 0.36) 100%
  );
}
