/* HERO */

.career-hero {
    height: 420px;
    width: 100%;

    background:
      linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
      url("../assets/career-hero.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

.career-hero-overlay {
    text-align: center;
    color: #fff;
}

.career-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.career-hero p {
    margin-top: 10px;
    font-size: 18px;
}


/* APPLY */

.apply-section {
    text-align: center;
    padding: 70px 20px;
}

.apply-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.apply-banner {
    max-width: 820px;
    height: 420px;
    margin: auto;

    background: #e63946;
    border-radius: 18px;

    position: relative;
    overflow: hidden;
}


/* Register */

.register-now {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);

    color: white;
    font-weight: 600;
}


/* Content */

.apply-content {
    display: flex;
    justify-content: space-between;
    padding: 90px 80px 90px 120px;
}


/* Blue Boxes */

.apply-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blue-box {
    background: #1d3557;
    color: white;

    padding: 16px 28px;
    font-size: 24px;
    font-weight: 700;

    width: fit-content;
}


/* Text */

.apply-text {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    text-align: right;
}


/* Footer */

.apply-footer {
    background: #1d3557;
    color: white;

    position: absolute;
    bottom: 0;

    width: 100%;
    padding: 12px;

    font-size: 14px;
}


/* SOCIAL */

.career-social {
    display: flex;
    justify-content: center;
    gap: 30px;

    margin: 40px 0;
    flex-wrap: wrap;
}

.social-btn {
    padding: 16px 34px;
    border-radius: 12px;

    color: white;
    font-weight: 600;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition: 0.3s;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.fb { background: #1877f2; }
.wp { background: #16a34a; }


/* CONTENT */

.career-container {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
}

.career-container h2,
.career-container h3 {
    font-weight: 700;
    margin: 20px 0;
}

.career-container ul {
    margin-left: 20px;
    list-style: disc;
}


/* CARDS */

.career-actions {
    display: flex;
    justify-content: center;
    gap: 30px;

    padding: 60px 20px;
    flex-wrap: wrap;
}

.career-card {
    width: 320px;
    padding: 30px;

    background: linear-gradient(135deg,#ec4899,#f97316);
    color: white;

    border-radius: 18px;
    text-align: center;
}

.career-btn {
    display: inline-block;
    margin-top: 15px;

    background: white;
    color: black;

    padding: 10px 26px;
    border-radius: 20px;

    text-decoration: none;
    font-weight: 600;
}
/* HERO SECTION */

.hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

/* IMAGE WRAPPER */
.hero-image {
    position: absolute;
    inset: 0;
}

/* IMAGE */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 MOST IMPORTANT */
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* TEXT CONTENT */
.hero-content {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* CLICKABLE APPLY LINK */

.internship-link {
    display: inline-block;

    color: #8b1d3f;
    font-size: 18px;
    font-weight: 600;

    text-decoration: none;
    border-bottom: 2px solid transparent;

    margin-bottom: 18px;

    transition: all 0.3s ease;
}

/* Hover Effect */
.internship-link:hover {
    color: #e63946;
    border-bottom: 2px solid #e63946;
}
.career-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Internship block spacing */
.internship-info {
    margin-top: 40px;
}
.apply-banner {
    width: 50%;
    max-width: 1100px;
    margin: auto;

    background-color: #e63946;

    /* 🔥 DOT PATTERN */
    background-image: radial-gradient(
        rgba(255,255,255,0.4) 1px,
        transparent 1px
    );

    background-size: 18px 18px;

    border-radius: 20px;
    overflow: hidden;

    position: relative;
}
