/* body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background: url("/Components/Home/newbg.jpg") center/cover no-repeat fixed;
  background-attachment: fixed;
  color: #fff;
} */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", sans-serif;
  background: url("/Components/newbg.jpg") center/cover no-repeat fixed;
  color: #fff;
  display: flex;
  flex-direction: column;
  background-color: black;
}

.navbar {
  background-color: #111;
  opacity: 0.95;
  padding: 0 1rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  box-sizing: border-box;
  /* overflow-x: hidden;   */
  z-index: 10000;
  position: fixed;
  transition: top 0.3s ease-in-out;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  font-weight: 1000;
  font-size: 2.2rem;
  font-weight: bold;
  background: #ff6a00;
  /* background: linear-gradient(to left, #ff0000, #ff8c00, #ffd700, #ffffff); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logoImg {
  width: 150px;       
  height: auto;        
  margin-right: 10px;
  margin-left: 5px;
  object-fit: contain; 
  
  /* Styling effects */
  filter: drop-shadow(0 0 8px rgba(255, 162, 99, 0.6)); /* glowing shadow */
  transition: transform 0.3s ease, filter 0.3s ease;     /* smooth hover */
}

.logoImg:hover {
  transform: scale(1.01);  /* zoom effect */
  filter: drop-shadow(0 0 12px rgba(255, 162, 99, 0.8));
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-link-join {
  color: white;
  border-radius: 6px;
  background: #ff6a00;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
}

.nav-link-join:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
  background: #ffd700;
  color: #111827;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem;
}

.nav-link.active,
.nav-link:hover {
  color: cyan;
}

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

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

.hamburger {
  display: none;
  cursor: pointer;
}

.menu-icon {
  height: 24px;
  width: 24px;
  stroke: white;
}

.nav-links.mobile {
  display: none;
  flex-direction: column;
  background-color: #111;
  padding: 1rem;
  gap: 1rem;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  z-index: 999;
}

@media (max-width: 800px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    gap: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
    color: cyan;
  }

  .desktop {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .close-icon {
    display: none;
  }

  .logo {
    font-size: 1.8rem;
  }
}

.join-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  padding-top: 8rem;
}

.container {
  background: rgba(20, 20, 20, 0.8);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.animated-text {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInUp 3s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.spark {
  color: #ff6a00;
}

.description {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.allbtns {
  margin-right: 1.5rem;
}

.link-btn {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s;
}

.link-btn:hover {
  transform: scale(1.01);
}

.whatsapp {
  background: #25d366;
}

.telegram {
  background: linear-gradient(270deg, #ff0000, #ff6a00, #ffd700);
}

.linkedin {
  background: #0077b5;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-message {
  margin-top: 1.5rem;
  font-style: italic;
  color: #eee;
}

/* footer */

footer {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

footer p {
  margin: 0.6rem 0;
}

.footer-link {
  color: cyan;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-link:hover {
  text-decoration: underline;
}

footer .connections {
  display: flex;
  gap: 20px;
  justify-content: center;
}

footer .connections a {
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
}

footer .connections a:hover {
  color: yellow;
}

.footer-people {
  margin-top: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-people .developers {
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 5px 5px;
  margin-bottom: 0.5rem;
  justify-content: center;
  margin-top: 5px;
  font-size: 0.95rem;
}

.developedby {
  font-size: 1rem;
}

.footer-people a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}

.developers :hover {
  color: rgb(255, 255, 0, 1);
}

.rights {
  font-size: smaller;
  margin-bottom: 0.75rem;
}

.footer-people .developers a::after {
  content: "·";
  margin: 0 8px;
  opacity: 0.6;
  display: inline-block;
  vertical-align: middle;
  /* ensures alignment */
  font-size: 1.1em;
  /* adjust size if needed */
  line-height: 1;
}

.footer-people .developers a:last-child::after {
  content: "";
  /* No separator after last name */
}

@media (max-width: 600px) {
  .footer-people .developers a::after {
    content: " ·";
    margin: 0 6px;
    opacity: 0.6;
  }

  .footer-people .developers a:nth-child(2)::after {
    content: "";
    /* removes separator after 2nd child */
  }

  .footer-people .developers a:last-child::after {
    content: "";
    /* No separator after last name */
  }

  .footer-people .developers {
    display: grid;
    grid-template-columns: repeat(2, auto);
    /* stack vertically */
    gap: 6px;
  }
}

.shiny-text {
  color: #b5b5b5a4;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 243, 175, 0.8) 50%,
      rgba(255, 255, 255, 0) 60%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  animation: shine 2.5s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: -100%;
  }
}

.shiny-text.disabled {
  animation: none;
}

/* scrollbar styling  */

/* ===== Chrome, Edge, Safari ===== */
::-webkit-scrollbar {
  width: 14px;
  /* Wider for more realistic look */
}

/* Track */
::-webkit-scrollbar-track {
  background: #0d1117;
  /* Dark background */
  border-left: 1px solid #1a1f27;
  /* Slight inner border */
}

/* Thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6a00, #cc5500);
  /* Gradient orange */
  border-radius: 6px;
  border: 2px solid #0d1117;
  /* Creates gap between track & thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff7f26, #e65c00);
  /* Brighter on hover */
}

/* ===== Scrollbar Buttons (Arrows) ===== */

/* Common button base */
::-webkit-scrollbar-button {
  background-color: #0d1117;
  /* Matches track */
  border: none;
  height: 16px;
  /* Controls button height */
}

/* Up arrow */
::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ff6a00;
  /* Arrow color */
}

/* Down arrow */
::-webkit-scrollbar-button:single-button:vertical:increment {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ff6a00;
  /* Arrow color */
}

/* Hover effect on arrows */
::-webkit-scrollbar-button:single-button:vertical:decrement:hover,
::-webkit-scrollbar-button:single-button:vertical:increment:hover {
  border-bottom-color: #ff7f26;
  /* Up arrow hover */
  border-top-color: #ff7f26;
  /* Down arrow hover */
}

/* ===== Firefox ===== */
html {
  scrollbar-width: thin;
  scrollbar-color: #ff6a00 #0d1117;
  /* thumb track */
}