
/* ================= GLOBAL ================= */
body{
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
    color: white;
    scroll-behavior: smooth;
    -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  }
  
  /* ================= HERO ================= */
  .hero{
    background: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa");
    background-size: cover;
    background-position: center;
  }
  
  /* ================= GLASS EFFECT ================= */
  .glass{
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  /* ================= MENU ================= */
  .menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
    color: white;
  }
  
  .menu-item i {
    font-size: 18px;
  }
  
  .menu-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px);
  }
  
  .menu-item:active {
    transform: scale(0.96);
  }
  
  .active {
    color: #60a5fa;
    font-weight: 600;
  }
  
  /* ================= NAV LINK ================= */
  .nav-link {
    position: relative;
    padding-bottom: 4px;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  /* ================= HAMBURGER ================= */
  .line {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
  }
  
  .open .line:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
  }
  
  .open .line:nth-child(2) {
    opacity: 0;
  }
  
  .open .line:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
  }
  
  /* ================= FLOAT ANIMATION ================= */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  .float {
    animation: float 4s ease-in-out infinite;
  }
  
  #serviceTag, #serviceTag2 {
    animation: float 4s ease-in-out infinite;
  }
  
  /* ================= TYPING ================= */
  @keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: #a855f7; }
  }
  
  #typingText {
    animation: blink 1s infinite;
  }
  
  /* ================= SERVICE SLIDER ================= */
  #serviceSlider:hover {
    animation-play-state: paused;
  }
  
  /* ================= SCROLLBAR HIDE ================= */
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  
  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  /* ================= MOUSE GLOW ================= */
  .card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 60%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s;
    opacity: 0;
  }
  
  /* ================= PREMIUM CARD ================= */
  .premium-card {
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
  }
  
  /* ================= WHATSAPP CHAT ================= */
  #waChatBox {
    animation: fadeUp 0.25s ease;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }