@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

img {
    background-color: transparent;
}

.object-contain {
    object-fit: contain;
}

.logo-container {
    height: 60px !important;
    width: 52px !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

.logo-container:hover {
    border-color: rgba(14, 165, 233, 0.6) !important;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2) !important;
}

.logo-container img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center !important;
}

.logo-container-footer {
    height: 50px !important;
    width: 44px !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.logo-container-footer img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center !important;
}

.nav-link {
    position: relative;
    color: #9ca3af;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0ea5e9;
    transition: width 0.3s ease;
}

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

.mobile-nav-link {
    color: #9ca3af;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.mobile-nav-link:hover {
    color: #ffffff;
    background-color: #1e293b;
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

::selection {
    background-color: #0ea5e9;
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: #0f172a;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e293b;
}

