
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Sora:wght@100..800&display=swap');
 *{
 scroll-behavior: smooth;
}
  /* Gradient text */
    .gradient-text {
      background: linear-gradient(90deg, #facc15, #f59e0b);
    background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Glow hover effect */
    .glow-hover:hover {
      box-shadow: 0 0 15px rgba(250, 204, 21, 0.7);
      transform: translateY(-2px);
    }
    .icon-glow:hover {
      text-shadow: 0 0 10px rgba(250, 204, 21, 0.9);
    }

   @keyframes moveBackground {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}
.animate-move-bg {
  animation: moveBackground 15s linear infinite;
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #facc15;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Whatapps Chat */

  .chat-body {
    background-color: #0b141a;
    background-image: url("Images/whatapps-chat.jpg");
    background-size: cover;
    background-repeat: repeat;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(10px); }
  }

  .animate-fadeIn {
    animation: fadeIn 0.25s ease-out forwards;
  }

  .animate-fadeOut {
    animation: fadeOut 0.25s ease-in forwards;
  }

  /* Scrollbar thin */
  #whatsapp-popup::-webkit-scrollbar { width: 3px; }
  #whatsapp-popup::-webkit-scrollbar-thumb { background: #444; border-radius: 10px; }

/* Footer refinements */
footer {
  background-color: #000; /* dark background */
  color: #fff;
  position: relative;
}

/* Contact block alignment */
.contact-block {
  max-width: 500px;
  margin: 0 auto;
}

/* Social Icons */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f1f1f;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: #fff;
}
::selection{
  color: #fbbf24;
  background-color: whitesmoke;
}
.social-icon:hover {
  background-color: #dca22a;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(220, 162, 42, 0.6);
}



html {
  scrollbar-width:thin;
  scrollbar-color:  #facc15 #111;
}


html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track {
  background: #111; 
}

html::-webkit-scrollbar-thumb {
  background: #d4af37; 
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
  background: #b58920; 
}

/* fonts */
.headingfont{
  font-family: "Orbitron", sans-serif;
}
.basicfont{
  font-family: 'Sora', sans-serif;
}


 @media (max-width:1440px){
  html{
    font-size: 15px;
  }
   html nav .nav-link {
        font-size: 1.01rem;
      }
} 



@media (max-width:769px){
  html{
    font-size: 13px;
  }
}
@media (max-width:430px){
  html{
    font-size: 12px;
  }
}
@media (max-width:375px){
  html{
    font-size: 10px;
  }
}

@media (max-width:320px){
  html{
    font-size: 10px;
  }
}

  @media (min-width: 800px) and (max-width: 1440px) {
      nav .nav-link {
        font-size: 0.9rem;
      }
      nav span {
        font-size: 20px;
      }
      nav .container {
        padding-left: 10px;
        padding-right: 10px;
      }
      nav .hidden.md\:flex {
        gap: 10px;
      }
      nav a.bg-yellow-500 {
        font-size: 14px;
      }
    }

 img{
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none; 
}