/* career-counselling.css - Styles for Career Counselling page */

/* Banner styles */
.career-banner {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow: hidden;
}

.career-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Career Content Section */
.career-content-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.career-description {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.career-description .section-text {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Industry Support Section */
.industry-support-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.industry-description {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
}

.industry-description .section-text {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Support Boxes Container */
.support-boxes-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Support Box */
.support-box {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.support-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Support Box Title */
.support-box-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #862C91;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Support Box Divider */
.support-box-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0 1rem 1.5rem;
    width: calc(100% - 2rem);
}

/* Support Box Text */
.support-box-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    flex-grow: 1;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .support-boxes-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .career-content-section,
    .industry-support-section {
        padding: 3rem 0;
    }
    
    .career-description .section-text,
    .industry-description .section-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .support-boxes-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 0 1rem;
    }
    
    .support-box {
        padding: 1.5rem 1.25rem;
    }
    
    .support-box-title {
        font-size: 1.1rem;
    }
    
    .support-box-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .career-content-section,
    .industry-support-section {
        padding: 2.5rem 0;
    }
    
    .career-description .section-text,
    .industry-description .section-text {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .support-box {
        padding: 1.25rem 1rem;
    }
    
    .support-box-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .support-box-divider {
        margin: 0 0.5rem 1rem;
        width: calc(100% - 1rem);
    }
    
    .support-box-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}