/* Job Domain Specific CSS */

/* ============================================
   RESPONSIBILITY SECTION STYLES
   ============================================ */

.responsibility-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.responsibility-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.responsibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transition: height 0.3s ease;
}

.responsibility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.responsibility-card:hover::before {
    height: 8px;
}

.responsibility-card .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0399ae;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.responsibility-card .icon-box i {
    font-size: 28px;
    color: #ffffff;
}

.responsibility-card:hover .icon-box {
    transform: scale(1.1);
    background: #02869c;
}

.responsibility-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.responsibility-card:hover h4 {
    color: #007bff;
}

.responsibility-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   SKILLS SECTION STYLES
   ============================================ */

.skills-section {
    background: #ffffff;
    padding: 80px 0;
}

.skills-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
}


.skills-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0px;
}

.skill-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f8f9fa;
    position: relative;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #28a745;
}

.skill-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #0399ae;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.skill-icon i {
    font-size: 26px;
    color: #ffffff;
}

.skill-card:hover .skill-icon {
    transform: scale(1.1) rotate(5deg);
    background: #02869c;
}

.skill-card h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.skill-card:hover h4 {
    color: #28a745;
}

.skill-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   CAREER OPPORTUNITIES SECTION STYLES
   ============================================ */

.career-opportunities-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
}

.career-opportunities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.career-opportunities-section .section-title {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.career-opportunities-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.career-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: height 0.3s ease;
}

.career-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.career-card:hover::before {
    height: 10px;
}

.career-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0399ae;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.career-icon i {
    font-size: 32px;
    color: #ffffff;
}

.career-card:hover .career-icon {
    transform: scale(1.15) rotate(10deg);
    background: #02869c;
}

.career-card h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.career-card:hover h4 {
    color: #667eea;
}

.salary-range {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.career-card:hover .salary-range {
    transform: scale(1.05);
    background: linear-gradient(135deg, #20c997, #17a2b8);
}

.career-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   ELIGIBILITY CRITERIA SECTION STYLES
   ============================================ */

.eligibility-section {
    background: #ffffff;
    padding: 80px 0;
}

.eligibility-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.eligibility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #ffc107;
}

.eligibility-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.eligibility-card h4 i {
    color: #ffc107;
    font-size: 1.5rem;
}

.eligibility-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-card ul li {
    color: #495057;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.eligibility-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #28a745;
    font-size: 0.9rem;
}

/* ============================================
   TOP RECRUITERS SECTION STYLES
   ============================================ */

.recruiters-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.recruiters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.recruiter-logo {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 2px solid transparent;
}

.recruiter-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #007bff;
}

.recruiter-logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.recruiter-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991.98px) {
    .responsibility-section,
    .skills-section,
    .career-opportunities-section,
    .eligibility-section,
    .recruiters-section {
        padding: 60px 0;
    }
    
    .skills-title,
    .section-title {
        font-size: 2rem;
    }
    
    .career-card {
        padding: 25px;
    }
    
    .career-icon {
        width: 70px;
        height: 70px;
    }
    
    .career-icon i {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .responsibility-section,
    .skills-section,
    .career-opportunities-section,
    .eligibility-section,
    .recruiters-section {
        padding: 40px 0;
    }
    
    .skills-title,
    .section-title {
        font-size: 1.8rem;
    }
    
    .responsibility-card,
    .skill-card,
    .career-card,
    .eligibility-card {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .recruiters-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .recruiter-logo {
        padding: 20px;
        min-height: 100px;
    }
    
    .recruiter-logo img {
        max-width: 120px;
        max-height: 50px;
    }
}

@media (max-width: 575.98px) {
    .skills-title,
    .section-title {
        font-size: 1.5rem;
    }
    
    .career-card h4 {
        font-size: 1.2rem;
    }
    
    .salary-range {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .recruiters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.responsibility-card,
.skill-card,
.career-card,
.eligibility-card,
.recruiter-logo {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   SECTION TITLE STYLES
   ============================================ */

.section-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
}


.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0px;
}

/* ============================================
   CURRICULUM SECTION STYLES (if needed)
   ============================================ */

.curriculum-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.curriculum-semester {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.curriculum-semester:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.semester-title {
    color: #007bff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-list li {
    color: #495057;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.curriculum-list li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #007bff;
    font-size: 0.8rem;
}
