@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    cursor: none;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #076aad;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(7, 106, 173, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover effect on interactive elements */
a:hover ~ .cursor-outline,
button:hover ~ .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(7, 106, 173, 0.1);
}

/* Custom selection */
::selection {
    background-color: #076aad;
    color: white;
}

/* Animations */
.hero-gradient {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.text-gradient {
    background: linear-gradient(90deg, #076aad 0%, #0a8bed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
