

body.overflow-hidden {
  height: 100vh;
  overflow: hidden;
}



@tailwind base;
@tailwind components;
@tailwind utilities;

@layer utilities {
  .animate-spin-slow {
    animation: spin 10s linear infinite;
  }
}
.swiper-pagination-bullet {
  background-color: #c084fc !important; /* purple-400 */
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #9333ea !important; /* purple-600 */
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  mix-blend-mode: multiply;
  animation: blob 20s infinite;
  z-index: 0;
}

.blob:nth-child(1) {
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: #c084fc;
  animation-delay: 0s;
}

.blob:nth-child(2) {
  top: 100px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: #facc15;
  animation-delay: 5s;
}
 .translate-x-0 {
    transform: translateX(0) !important;
  }
.blob:nth-child(3) {
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: #4ade80;
  animation-delay: 10s;
}
@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.animate-gradient-move {
  background-size: 200% 200%;
  animation: gradientMove 10s ease infinite;
}

@keyframes blob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}
@media (max-height: 500px) and (max-width: 768px) {
  #sidebar {
    display: none !important;
  }
}

 /* Contect menu design */
  .custom-context-menu {
    position: fixed;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0px 0px 10px #dcfce7;
    z-index: 9999;
    display: none;
    min-width: 240px;
    overflow: hidden;
    animation: fadeIn 0.25s ease;
  }

  .custom-context-menu.visible {
    display: block;
  }

  .custom-context-menu ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
  }

  .custom-context-menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
  }

  .custom-context-menu li i {
    color: #facc15;
    width: 20px;
    text-align: center;
    transition: color 0.25s ease;
  }

  .custom-context-menu li:hover {
    background: linear-gradient(to right, #fef9c3, #dcfce7);
    transform: translateX(4px);
  }

  .custom-context-menu li:hover i {
    color: #16a34a;
  }

  .custom-context-menu .social-title {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 4px;
    color: #6b7280;
    letter-spacing: 1px;
  }

  .social-media-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 8px 0 10px;
  }

  .social-media-links a {
    color: #6b7280;
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .social-media-links a:hover {
    color: #facc15;
    transform: scale(1.15);
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }
 /* Contect menu design */