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

.heading-font {
    font-family: 'Playfair Display', serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #4F46E5, #9F7AEA);
}

.gradient-text {
    background: linear-gradient(135deg, #4F46E5, #9F7AEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(159, 122, 234, 0.15));
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

.custom-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(135deg, #4F46E5, #9F7AEA);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Form styling */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.form-input {
    transition: all 0.2s ease;
}

.form-input:focus {
    transform: translateY(-2px);
}

/* Stats counter animation */
.counter {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.counter.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom checkbox */
.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #4F46E5;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: all 0.2s ease;
}

.checkbox-input:checked + .custom-checkbox {
    background-color: #4F46E5;
}

.checkbox-input:checked + .custom-checkbox:after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 1px;
}

.error-message {
    display: none;
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.success-message {
    display: none;
}
