.cursor-icons {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 50px;
}

.cursor-icons .icon {
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  background: #8a8282;
  color: #fff;
  transition: 0.2s;
  user-select: none;
}

.cursor-icons .icon:hover {
  background: #444;
  transform: scale(1.1);
}

.cursor-icons .icon.active {
  background: #ff008c;
  transform: scale(1.15);
}

/* Snake containers */
#rainbow-snake,
#neon-snake {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* Rainbow dots */
.rainbow-dot {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

/* Neon dots */
.neon-dot {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #00eaff;
  box-shadow: 0 0 12px #00eaff, 0 0 22px #00eaff;
  opacity: 0.9;
}

/* =========================== */
#tap-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.tap-circle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: tapRipple 0.6s ease-out forwards;
}

@keyframes tapRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .cursor-icons {
    display: none !important;
  }
}
/* ======================= */

.hero-section {
  position: relative;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-icon {
  width: 50px;
  opacity: 1;
  position: absolute;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px #00eaff50);
}

.float-icon:nth-child(1) {
  top: 20%;
  left: 5%;
}
.float-icon:nth-child(2) {
  top: 75%;
  left: 8%;
  animation-delay: 1s;
}
.float-icon:nth-child(3) {
  top: 20%;
  left: 88%;
  animation-delay: 2s;
}
.float-icon:nth-child(4) {
  top: 80%;
  left: 90%;
  animation-delay: 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}

/* =============================
   NEON FLOATING WAVES BACKGROUND
============================== */

#neon-waves {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

/* =============================
   FLOATING ACTION BUTTON
============================== */
/* ================= FAB CONTAINER ================= */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 99999; /* 🔥 Always on top */
  isolation: isolate; /* 🔥 Prevent stacking issues */
}

/* ================= COMMON FAB STYLE ================= */
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #ff9800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
}

/* ================= MAIN BUTTON ================= */
.main-btn {
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  color: #fff;
}

/* ================= CHILD BUTTONS ================= */
.child {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
}

/* ================= ICON IMAGES ================= */
.child img {
  border-radius: 50%;
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: brightness(1.1);
  display: block;
}

/* ================= BRAND COLORS ================= */
.instagram {
  background: #e1306c;
}
.github {
  background: #b8a8a8;
}
.linkedin {
  background: #0a66c2;
}

/* ================= ACTIVE STATE ================= */
.fab-container.active .child {
  opacity: 1;
  pointer-events: auto;
}

/* ================= ANIMATION ORDER ================= */
.fab-container.active .child:nth-child(2) {
  transform: translateY(-70px);
}
.fab-container.active .child:nth-child(3) {
  transform: translateY(-140px);
}
.fab-container.active .child:nth-child(4) {
  transform: translateY(-210px);
}

/* ================= HOVER EFFECT ================= */
.fab:hover {
  transform: scale(1.08);
}

/* ================= MOBILE FIX ================= */
@media (max-height: 650px) {
  .fab-container {
    bottom: 20px;
    right: 20px;
  }

  .fab-container.active .child:nth-child(4) {
    transform: translateY(-180px);
  }
}

/* =========================================
            Interview Questions
=========================================== */
.questions {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.questions .interview {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
  color: #26ffe6;
  text-shadow: 0 0 10px rgba(38, 255, 230, 0.8);
}

.questions-subtitle {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 40px;
  text-align: center;
}

.questions-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.question-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px #555;
  animation: float 1.5s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}

.question-box h3 {
  font-size: 1.15rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.question-box a {
  background-color: transparent;
  border: 1.5px solid #26ffe6;
  border-radius: 25%;
  padding: 6px 12px;
  font-size: 1rem;
  font-weight: bold;
  color: #26ffe6;
  text-decoration: none;
  transition: 0.3s ease;
}

.question-box:hover {
  transform: translateY(-15px) scale(1.07);
  border-color: #00eaff;
  box-shadow: 0 18px 35px #00eaff60;
}

.question-box:hover a {
  color: #26ffe6;
  text-shadow: 0 0 10px rgba(38, 255, 230, 0.8);
}

#question-box1 {
  animation-delay: 0s;
}
#question-box2 {
  animation-delay: 0.3s;
}
#question-box3 {
  animation-delay: 0.6s;
}
#question-box4 {
  animation-delay: 0.9s;
}
#question-box5 {
  animation-delay: 1.2s;
}
#question-box6 {
  animation-delay: 1.5s;
}
#question-box7 {
  animation-delay: 1.8s;
}
#question-box8 {
  animation-delay: 2.1s;
}
#question-box9 {
  animation-delay: 2.4s;
}
#question-box10 {
  animation-delay: 2.7s;
}
#question-box11 {
  animation-delay: 3.0s;
}
#question-box12 {
  animation-delay: 3.3s;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ===== MOBILE: 2 CARDS PER ROW (same rule behavior) ===== */
@media (max-width: 768px) {
  .questions-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .question-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    padding: 18px;
  }

  .question-box h3 {
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
  }

  .question-box a {
    align-self: center;
    margin-top: 12px;
    padding: 8px 8px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .questions .interview {
    font-size: 2rem;
  }
}






