.sales-intern {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
#hr-intern {
    margin-bottom: 200px;
}
#hr-intern-card {
    background: linear-gradient(135deg, #325daf, #2d0a50) ;
    
}
#hr-apply-btn{
    background: #00f6ff;
}
.sales-card {
    width: 90vw;
    max-width: 1000px;
    background: linear-gradient(135deg, #1B263B, #2F5061);
    border-radius: 16px;
    color: white;
    padding: 40px 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sales-card ul li {
    text-align: justify;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Title */
.sales-card h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    flex: 1 1 auto;
    letter-spacing: 0.5px;
}

/* Badges */
.badges {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    white-space: nowrap;
    font-weight: bold;
    letter-spacing: 0.2px;
}

/* Bullet points */
.sales-card ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    word-spacing: 0.5px;
}

/* Apply Button */
.sales-apply-btn {
    align-self: center;
    padding: 10px 24px;
    background: #00C896;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.4px;
}

.sales-apply-btn:hover {
    background: #00e6aa;
    box-shadow: 0 0 20px #00e6aa88;
    transform: scale(1.05);
}

/* Media Queries */
@media (min-width: 740px) {
    .sales-card h1 {
        font-size: 24px;
        letter-spacing: 0.8px;
    }
    .badge {
        font-size: 13px;
        letter-spacing: 0.4px;
    }
    .sales-card ul {
        font-size: 15px;
        letter-spacing: 0.4px;
        word-spacing: 0.8px;
    }
    .sales-apply-btn {
        font-size: 15px;
        padding: 10px 24px;
        letter-spacing: 0.5px;
    }
}

@media (min-width: 1024px) {
    .sales-card h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }
    .badge {
        font-size: 16px;
        letter-spacing: 0.6px;
    }
    .sales-card ul {
        font-size: 18px;
        letter-spacing: 0.6px;
        word-spacing: 1px;
    }
    .sales-apply-btn {
        font-size: 18px;
        padding: 14px 30px;
        letter-spacing: 0.6px;
    }
}
