.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #f472b6, #60a5fa);
}

.section-badge {
    display: inline-block;
}

.developer-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #fdf2f8 100%);
    position: relative;
}

.developer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #f472b6, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.developer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(236, 72, 153, 0.1), 0 10px 10px -5px rgba(139, 92, 246, 0.1);
}

.developer-card:hover::before {
    opacity: 1;
}

.developer-card img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 240px;
    object-fit: cover;
    width: 100%;
}

.developer-card:hover img {
    transform: scale(1.08);
}

.developer-card .card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.developer-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, #f472b6, #60a5fa);
    color: white;
    border-radius: 14px;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.developer-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.developer-card .card-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.developer-card .btn-primary {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.developer-card .btn-primary i {
    transition: transform 0.3s ease;
}

.developer-card .btn-primary:hover i {
    transform: translateX(4px);
}

/* Feature Cards Enhancement */
.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #fdf2f8 100%);
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #f472b6, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(236, 72, 153, 0.1), 0 10px 10px -5px rgba(139, 92, 246, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon-wrapper {
    margin-bottom: 1.5rem;
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Tech Item Enhancement */
.tech-item {
    background: linear-gradient(145deg, #ffffff 0%, #fdf2f8 100%);
    border-radius: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #f472b6, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(236, 72, 153, 0.1), 0 10px 10px -5px rgba(139, 92, 246, 0.1);
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #f472b6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.1);
}

.tech-item h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Empty State Enhancement */
.empty-state {
    padding: 4rem 2rem;
    background: linear-gradient(145deg, #fdf2f8 0%, #ffffff 100%);
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.empty-state i {
    font-size: 4rem;
    background: linear-gradient(45deg, #f472b6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.empty-state p {
    font-size: 1.25rem;
    color: #4b5563;
    margin: 0;
}

/* Additional Gradient Utilities */
.text-gradient {
    background: linear-gradient(45deg, #f472b6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-light {
    background: linear-gradient(145deg, #ffffff 0%, #fdf2f8 100%);
}

.bg-gradient-dark {
    background: linear-gradient(45deg, #f472b6, #60a5fa);
}

/* Hover Effects */
.hover-gradient:hover {
    background: linear-gradient(45deg, #f472b6, #60a5fa);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} 