/* Hire Our Graduates Specific Styles */

/* Hero Section */
.hire-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0e1f3a 100%);
    color: var(--white);
    overflow: hidden;
    padding-top: 100px;
}

.hire-hero-section .gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 3s ease-in-out infinite;
}

/* Skills Section */
.skills-section {
    padding: 8rem 0;
    background: var(--white);
}

.skill-category {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.skill-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
}

.skill-category:hover .skill-icon {
    transform: scale(1.1);
}

.skill-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: var(--light-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Why Hire Section */
.why-hire-section {
    padding: 8rem 0;
    background: var(--light-color);
}

.advantage-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border-top: 4px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--primary-color);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.advantage-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-light);
    margin: 0;
}

/* Graduate Profiles Section */
.profiles-section {
    padding: 8rem 0;
    background: var(--white);
}

.graduate-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    border: 2px solid transparent;
}

.graduate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.graduate-avatar {
    position: relative;
    padding: 2rem;
    background: var(--light-color);
    text-align: center;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
}

.availability-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.graduate-info {
    padding: 2rem;
}

.graduate-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.graduate-specialization {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.graduate-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.graduate-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.graduate-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.graduate-actions .btn {
    flex: 1;
    min-width: 120px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: var(--light-color);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    padding: 2rem;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
}

.testimonial-content p:before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Hiring Process Section */
.process-section {
    padding: 8rem 0;
    background: var(--white);
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    margin: 2rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    margin: 0;
}

/* Add connecting lines between process steps on larger screens */
@media (min-width: 992px) {
    .process-step:not(:last-child):after {
        content: '';
        position: absolute;
        top: 60px;
        right: -25%;
        width: 50%;
        height: 2px;
        background: linear-gradient(to right, var(--primary-color), transparent);
        z-index: 1;
    }
}

/* CTA Form Section */
.cta-form-section {
    padding: 8rem 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-right: 1rem;
    width: 24px;
}

.hire-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    color: var(--text-dark);
}

.hire-form-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hire-form-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hire-form-buttons {
    margin-bottom: 2rem;
}

.hire-form-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.form-info {
    text-align: center;
}

.contact-alternative {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.contact-alternative p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Floating Cards for Hire Page */
.hire-hero-section .floating-card {
    position: absolute;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: cardFloat 4s ease-in-out infinite;
    font-size: 0.875rem;
}

.hire-hero-section .floating-card i {
    font-size: 1.25rem;
}

/* Specific technology colors for floating cards */
.hire-hero-section .floating-card.card-1 i {
    color: #61dafb; /* React Blue */
}

.hire-hero-section .floating-card.card-2 i {
    color: #ff6b35; /* Mobile Orange */
}

.hire-hero-section .floating-card.card-3 i {
    color: #ff4081; /* Design Pink */
}

/* Responsive Design for Hire Page */
@media (max-width: 992px) {
    .hire-hero-section .floating-card {
        display: none;
    }
    
    .graduate-actions {
        flex-direction: column;
    }
    
    .graduate-actions .btn {
        width: 100%;
    }
    
    .process-step:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hire-hero-section {
        text-align: center;
        padding-top: 120px;
    }
    
    .skill-category {
        padding: 2rem 1.5rem;
    }
    
    .skill-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .graduate-card {
        margin-bottom: 2rem;
    }
    
    .graduate-avatar {
        padding: 1.5rem;
    }
    
    .avatar-placeholder {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .graduate-info {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .hire-form-card {
        padding: 2rem;
    }
    
    .cta-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .hire-hero-section .hero-title {
        font-size: 2rem;
    }
    
    .skill-category {
        padding: 1.5rem 1rem;
    }
    
    .skills-list {
        gap: 0.25rem;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .graduate-skills {
        gap: 0.25rem;
    }
    
    .graduate-actions {
        gap: 0.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .feature-item i {
        margin-bottom: 0.5rem;
    }
    
    .hire-form-card {
        padding: 1.5rem;
    }
}

/* Special Visual Effects */
.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2310b981" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

/* Hover Effects for Better Interactivity */
.graduate-card .btn:hover {
    transform: translateY(-2px);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
}

.hire-form-card .btn:hover {
    transform: translateY(-2px);
}

/* Loading States */
.graduate-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

.graduate-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Animation for stats counters */
.hire-hero-section .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.hire-hero-section .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Professional color adjustments for corporate appeal */
.hire-hero-section {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #2a4a6b 100%);
}

.skill-category:nth-child(1) .skill-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.skill-category:nth-child(2) .skill-icon {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.skill-category:nth-child(3) .skill-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}