:root {
    --gradient-primary: linear-gradient(135deg, #0056CC 0%, #003d99 100%);
    --gradient-secondary: linear-gradient(135deg, #3C84AB 0%, #0056CC 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #3C84AB 100%);
    --gradient-light: linear-gradient(135deg, #6096B4 0%, #3C84AB 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    --gradient-card-alt: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 100%);
    --color-dark: #002056;
    --color-primary-career: #0056CC;
    --shadow-card: 0 4px 6px rgba(0, 86, 204, 0.1), 0 2px 4px rgba(0, 86, 204, 0.06);
    --shadow-hover: 0 10px 15px rgba(0, 86, 204, 0.2), 0 4px 6px rgba(0, 86, 204, 0.1);
}

.career-hero-card {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 86, 204, 0.15);
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .career-hero-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
        transition: left 0.7s ease;
        pointer-events: none;
    }

    .career-hero-card:hover::before {
        left: 100%;
    }

    .career-hero-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-5px);
    }

.career-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
}

    .career-image-container img {
        transition: transform 0.5s ease;
        border-radius: 1rem;
    }

    .career-image-container:hover img {
        transform: scale(1.08);
    }

    .career-image-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 86, 204, 0.15) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 1rem;
    }

    .career-image-container:hover::after {
        opacity: 1;
    }

.career-icon-badge {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

    .career-icon-badge i {
        font-size: 2.5rem;
        color: white;
    }

    .career-hero-card:hover .career-icon-badge {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 6px 16px rgba(0, 212, 255, 0.4);
    }

.career-title {
    color: var(--color-dark);
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

    .career-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--gradient-accent);
        border-radius: 2px;
    }

.career-text {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #4a5568;
}

.btn-gradient-apply {
    background: var(--gradient-primary) !important;
    border: none;
    color: white !important;
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 86, 204, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-gradient-apply::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .btn-gradient-apply:hover::before {
        width: 400px;
        height: 400px;
    }

    .btn-gradient-apply:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 86, 204, 0.4);
        color: white !important;
    }

    .btn-gradient-apply:active {
        transform: translateY(-1px);
    }

.btn-gradient-apply i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-gradient-apply:hover i {
    transform: translateX(5px);
}

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 86, 204, 0.3);
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.5rem;
}

    .modal-header .modal-title {
        font-weight: 700;
        font-size: 1.5rem;
    }

    .modal-header .btn-close {
        filter: invert(1);
        opacity: 1;
    }

.modal-body {
    padding: 2rem;
    background: var(--gradient-card);
}

.form-group label {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    border: 2px solid rgba(0, 86, 204, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: white;
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--color-primary-career);
        box-shadow: 0 0 0 0.2rem rgba(0, 86, 204, 0.15);
        background: white;
    }

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.btn-gradient-submit {
    background: var(--gradient-primary) !important;
    border: none;
    color: white !important;
    padding: 0.875rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 86, 204, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-gradient-submit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .btn-gradient-submit:hover::before {
        width: 400px;
        height: 400px;
    }

    .btn-gradient-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 86, 204, 0.4);
        color: white !important;
    }

    .btn-gradient-submit:active {
        transform: translateY(0);
    }

.career-values-section {
    background: var(--gradient-card-alt);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(0, 86, 204, 0.1);
}

.career-value-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

    .career-value-item:hover {
        transform: translateX(8px);
    }

.career-value-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

    .career-value-icon i {
        color: white;
        font-size: 1.5rem;
    }

.career-value-content h5 {
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.career-value-content p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .career-title {
        font-size: 1.5rem;
    }

    .career-icon-badge {
        width: 70px;
        height: 70px;
    }

        .career-icon-badge i {
            font-size: 2rem;
        }

    .btn-gradient-apply {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .btn-gradient-submit {
        padding: 0.75rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .career-title::after {
        left: 0;
        transform: none;
    }

    .career-values-section {
        padding: 1.5rem;
    }

    .career-value-item {
        margin-bottom: 1.25rem;
    }
}

/* ═══ FANCY CAREER APPLY BUTTON ═══ */
.btn-career-fancy {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #0056CC 0%, #003d99 50%, #0056CC 100%);
    background-size: 200% 100%;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 86, 204, 0.4), 0 0 0 0 rgba(0, 86, 204, 0.5);
    animation: btn-pulse 2s ease-in-out infinite;
}

.btn-career-fancy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-career-fancy:hover::before {
    left: 100%;
}

.btn-career-fancy:hover {
    background-position: 100% 0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 86, 204, 0.6), 0 0 30px rgba(0, 212, 255, 0.5);
    animation: none;
}

.btn-career-fancy:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-career-fancy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.btn-career-fancy:hover .btn-career-fancy-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg) scale(1.1);
}

.btn-career-fancy-icon i {
    font-size: 1rem;
}

.btn-career-fancy-text {
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.btn-career-fancy-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 86, 204, 0.4), 0 0 0 0 rgba(0, 86, 204, 0.5);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 86, 204, 0.4), 0 0 0 15px rgba(0, 86, 204, 0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-career-fancy {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

/* ═══ CAREER FULL IMAGE DISPLAY ═══ */
.career-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 86, 204, 0.3);
    transition: all 0.5s ease;
}

.career-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 86, 204, 0.4);
}

.career-full-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.career-image-wrapper:hover .career-full-image {
    transform: scale(1.05);
}

/* Add decorative overlay */
.career-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

/* Add decorative corner badge */
/*.career-image-wrapper::after {
    content: 'Join Us';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0056CC, #003d99);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(0, 86, 204, 0.4);
    z-index: 2;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
*/
/* Responsive adjustments */
@media (max-width: 991px) {
    .career-image-wrapper {
        margin-bottom: 30px;
    }
}
