@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Sora:wght@100..800&display=swap');
 *{
 scroll-behavior: smooth;
}
   :root {
  --accent: #fdb913;
}

/* Add prefix (e.g., "custom-" or "my-") */
.my-accent {
  color: var(--accent);
}

.my-bg-accent {
  background-color: var(--accent);
}

.my-border-accent {
  border-color: var(--accent);
}

.my-signature {
  font-family: 'Great Vibes', cursive;
}

    /* 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;
  }

  .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%;
}

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

  /* ceo */
    .ceo-frame {
      position: relative;
      max-width: 85%;
      margin: 0 auto;
      padding: 0;
    }

    .ceo-frame::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border: 5px solid #d4af37;
      pointer-events: none;
      z-index: 0;
    }

    .ceo-img-wrapper {
      position: relative;
      z-index: 10;
      margin-left: -2rem;
      display: flex;
      flex-direction: column;
    }
    @media (min-width: 768px) {
      .ceo-img-wrapper { margin-left: -5rem; }
    }
    ::selection{
  color: #fbbf24;
  background-color: whitesmoke;
}
    @media (min-width: 1280px) {
      .ceo-img-wrapper { margin-left: -5rem; }
    }



    @media (min-width: 320px) {
      .ceo-img-wrapper { margin-left: -4rem; }
    }

    .ceo-img {
      width: 100%;
      height: auto;
    }
    @media (min-width: 768px) {
      .ceo-img {
        height: 100%;
        object-fit: cover;
      }
    }
    @media (min-width: 2560px) {
    }

    /* Label Styling */
    .ceo-label {
      position: absolute;
      bottom: 10%;
      left: 0;
      width: 100%;
      background: #d4af37;
      color: black;
      text-align: center;
      padding: 0.5rem 0;
      font-size: clamp(0.65rem, 1.2vw, 1.2rem);
    }


    .ceo-message p {
      font-size: clamp(0.75rem, 1vw + 0.2rem, 1.05rem);
      line-height: 1.6;
    }

    .ceo-message h2 {
      font-size: clamp(1.75rem, 3vw, 4rem);
    }




/* Footer*/
footer {
  background-color: #000;
  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;
}

.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;
      }
    }

/* Gradient text hero*/
    .gradient-text {
      background: linear-gradient(90deg, #facc15, #f59e0b);
    background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

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