@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

:root {
    --primary: #4f46e5;
    --primary-soft: #eef2ff;
    --secondary: #64748b;
    --dark: #0f172a;
    --light: #f8fafc;
    --font-main: 'Inter', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: #ffffff;
    color: var(--dark);
    overflow-x: hidden;
}

.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }

.navbar-custom {
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

.nav-link {
    font-weight: 600;
    color: var(--secondary);
    margin: 0 10px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.btn-outline-custom {
    color: var(--dark);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--light);
    border-color: var(--dark);
}

.hero-section {
    background-image: radial-gradient(circle at 90% 10%, rgba(79, 70, 229, 0.05) 0%, transparent 40%);
}

.avatar-overlap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    background-size: cover;
    background-position: center;
    margin-right: -12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.floating-card {
    position: absolute;
    width: 180px;
    z-index: 10;
    border: 1px solid #f1f5f9;
}

.icon-box-sm {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.icon-box-md {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.animate-bounce-subtle {
    animation: bounce-subtle 3s infinite ease-in-out;
}

.animate-bounce-slow {
    animation: bounce-subtle 4s infinite ease-in-out 1s;
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.transition-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary) !important;
}

.bg-soft-primary { background-color: var(--primary-soft); }
.bg-soft-success { background-color: #dcfce7; }
.bg-soft-danger { background-color: #fee2e2; }

.company-logo-sm {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.company-logo-lg {
    border-radius: 50%;
    transition: all 0.3s;
}

.company-bubble:hover .company-logo-lg {
    transform: scale(1.1);
    background-color: var(--primary-soft) !important;
}

.btn-white-custom {
    background: white;
    color: var(--primary);
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
}

.btn-white-custom:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.decorative-circle {
    position: absolute;
    background: white;
    opacity: 0.05;
    border-radius: 50%;
}

.salary-card, .interview-card, .review-card, .role-card {
    border: 1px solid #f1f5f9;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

footer {
    background-color: var(--dark);
    color: #94a3b8;
    padding: 80px 0 40px;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.rounded-4 { border-radius: 1.5rem !important; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce-subtle {
    animation: bounce-subtle 3s infinite ease-in-out;
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animate-bounce-slow {
    animation: bounce-slow 5s infinite ease-in-out;
}

.floating-card {
    position: absolute;
    z-index: 2;
    min-width: 180px;
}
