/* Custom styles for the website */
* {
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-feature-settings: 'cv03', 'cv04', 'cv11';
}

.text-gradient {
    background: linear-gradient(135deg, #F7941D, #EC008C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section {
    background: linear-gradient(135deg, #121722 0%, #1a1f2e 50%, #92278F 100%);
}

.cta-button {
    background: linear-gradient(135deg, #F7941D, #EC008C);
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
    transition: transform 0.2s ease;
}

/* Hover effects */
.hover\:scale-105:hover {
    transform: scale(1.05);
}

/* Backdrop blur support */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-6xl {
        font-size: 3rem;
    }
}

/* Smooth transitions for all interactive elements */
button, a {
    transition: all 0.2s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #F7941D, #EC008C);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e6841a, #d6007a);
}
.kynexz-logo-text {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; /* Choose closest match */
    font-weight: 700; /* Bold look */
    font-size: 48px; /* Adjust size as needed */
    letter-spacing: 0.5px; /* Matches spacing in logo */
    color: #00B2FF; /* Replace with exact hex from logo */
    text-transform: none; /* Keep case as in logo */
}
