.career-section {
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.career-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.career-title-line {
    width: 5px;
    height: 50px;
    background: linear-gradient(90deg, #00e0ff, #00e0ff);
    margin-right: 15px;
    margin-bottom: 10px;
}

.career-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
}

@media only screen and (max-width:768px) {
    .career-title {
        font-size: 20px;
    }

}

.career-title span {
    color: #00e0ff;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.career-card {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 8px 20px #00e1ff2b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #00e1ff2c;

}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
}

.career-role {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.career-company {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.career-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.career-btn {
    padding: 8px 20px;
    background: linear-gradient(90deg, #00acc3, #007f90);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.career-btn:hover {
    background: transparent;
    border: 1px solid #00e0ff;
}

/* ===== POPUP OVERLAY ===== */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
    animation: fadeInBg 0.3s ease-in-out;
}

/* ===== POPUP BOX ===== */
.popup-content {
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    width: 90%;
    max-width: 450px;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    animation: slideUp 0.4s ease-out;
    transition: all 0.3s ease-in-out;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.close-btn:hover {
    color: #e74c3c;
    transform: rotate(90deg);
}

/* ===== FORM ELEMENTS ===== */
.popup-content h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #222;
}

.popup-content label {
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.popup-content input[type="text"],
.popup-content input[type="email"],
.popup-content input[type="tel"],
.popup-content input[type="file"] {
    width: 100%;
    margin: 10px 0 15px 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
    font-size: 15px;
}

.popup-content input:focus {
    border-color: #007BFF;
    box-shadow: 0 0 6px rgba(0,123,255,0.4);
    outline: none;
}

/* ===== BUTTON STYLE ===== */
.popup-content button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,123,255,0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 600px) {
    .popup-content {
        width: 90%;
        padding: 20px 15px;
    }

    .popup-content h2 {
        font-size: 18px;
    }

    .popup-content input,
    .popup-content button {
        font-size: 14px;
    }
}
