  /* Custom scrollbar for better aesthetics */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #0ea5e9;
            border-radius: 5px;
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        /* Ensure sections are at least 100vh but allow scrolling on mobile if content overflows */
        .full-screen-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            /* Offset for fixed header */
            padding-bottom: 40px;
        }

        .nav-active {
            color: #0284c7;
            /* brand-600 */
            font-weight: 600;
            position: relative;
        }

        .nav-active::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #0284c7;
            border-radius: 2px;
        }

         .dot {
                width: 6px;
                height: 6px;
                background: #6366f1; /* brand */
                border-radius: 50%;
            }

            @keyframes typing {
                    from { width: 0; }
                    to { width: 100%; }
                    }

                    @keyframes blinkCaret {
                    0%, 100% { border-color: transparent; }
                    50% { border-color: currentColor; }
                    }

                    .typing-effect {
                    overflow: hidden;       /* Ensures the text is hidden while typing */
                    white-space: nowrap;    /* Prevents wrapping */
                    border-right: 3px solid currentColor; /* Cursor effect */
                    width: 0;
                    animation: 
                        typing 3s steps(25, end) forwards,
                        blinkCaret 0.75s step-end infinite;
                    }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-slide-in {
  animation: slideIn 0.4s ease-out;
}


