:root {
            /* Primary Colors */
            --primary-black: black;
            --primary-dark: rgb(236, 236, 236);
            --primary-orange: #f5760c;
}
body {
            font-family: "Mona Sans", "Segoe UI", sans-serif;
        }



 .gradient-bg {
            background: linear-gradient( #fff ,#05002F);
        }
        
 .btn {
            display: inline-block;
            padding: 0.60rem 1.5rem;
            border: none;
            border-radius: 100px;
            font-weight: 400;
            cursor: pointer;
            text-decoration: none;
            color: #fff;
            transition: all 0.2s ease;
            margin: 0.25rem;
            background-color: #f5760c;
        }


 /* Scrollbar width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffe6d1;       
    border-radius: 10px;
}

/* Scroll thumb */
::-webkit-scrollbar-thumb {
    background: #f5760c;      
    border-radius: 10px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
    background: hsla(27, 93%, 44%, 0.842);    
}
.glass-nav {
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.pulse {
  animation: pulse 1.2s infinite ease-in-out;
  font-size: 12px; 
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.dot {
    position: absolute;
    animation: moveAround 5s linear infinite;
}

@keyframes moveAround {
    0%   { top: -4px; left: 0%; }
    25%  { top: 100%; left: 0%; transform: translateY(-50%); }
    50%  { top: 100%; left: 100%; transform: translate(-50%, -50%); }
    75%  { top: -4px; left: 100%; transform: translateX(-50%); }
    100% { top: -4px; left: 0%; }
}


    img {
        pointer-events: none;
    }

input, textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    pointer-events: auto !important;
}

