/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-hero {
    position: relative;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

/* Primary Button (Hire Me) */
.btn-hero-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.5);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

/* Secondary Button (View Projects) */
.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #cbd5e1 !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
    .btn-hero {
        width: 100%;
    }
}