.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Career section styles */
.career-section {
    padding: 18vh 0 80px 0;
    background-color: #fff;
}

.heading-container {
    text-align: center;
    margin-bottom: 60px;
}

.main-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #00A0FA;
    font-style: italic;
    display: block;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00A0FA;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: #0077cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Image gallery styles */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.image-card {
    flex: 0 0 calc(20% - 20px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* Staggered layout - even cards positioned lower */
.image-card:nth-child(even) {
    transform: translateY(60px);
    margin-top: 40px;
}

.image-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-card:nth-child(even).visible {
    transform: translateY(40px);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .image-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .career-section {
        padding: 10vh 0 60px 0;
    }
    
    .main-heading {
        font-size: 36px;
    }
    
    .image-gallery {
        gap: 15px;
    }
    
    .image-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .career-section {
        padding: 10vh 0 40px 0;
    }
    
    .main-heading {
        font-size: 28px;
    }
    
    .highlight {
        font-size: 32px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .image-gallery {
        flex-direction: column;
    }
    
    .image-card {
        flex: 0 0 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}