/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
}

/* Careers Section */
.careers {
    padding: 80px 10%;
    text-align: center;
}

/* Header */
.careers-header {
    margin-bottom: 50px;
}

.careers-header h2 {
    font-size: 36px;
    color: #007bff;
}

.careers-header p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* Career Cards Container */
.careers-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Career Card */
.career-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icons */
.icon-container {
    font-size: 50px;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.career-card:nth-child(1) .icon-container {
    color: #ff5733; /* Orange */
}

.career-card:nth-child(2) .icon-container {
    color: #0088cc; /* Blue */
}

/* Hover Effects for Icons */
.career-card:hover .icon-container {
    transform: scale(1.2);
}

.career-card:nth-child(1):hover .icon-container {
    color: #ffcc00;
}

.career-card:nth-child(2):hover .icon-container {
    color: #27ae60;
}

/* Email Link */
.career-card a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

.career-card a:hover {
    text-decoration: underline;
}

/* Call-to-Action Section */
.careers-cta {
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: #fff;
    padding: 50px 10%;
    text-align: center;
    border-radius: 12px;
    margin-top: 40px;
}

.careers-cta h2 {
    font-size: 30px;
}

.careers-cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Apply Button */
.apply-button {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    color: #007bff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.apply-button:hover {
    background: #ffcc00;
    color: #222;
}
