/* Careers Page Custom Styles */

/* Enhanced Hero Section */
.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(6, 143, 255, 0.1), rgba(255, 107, 53, 0.1));
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(6, 143, 255, 0.2);
    font-weight: 600;
    color: var(--theme-color);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(6, 143, 255, 0.2);
    }
    to {
        box-shadow: 0 0 20px rgba(6, 143, 255, 0.4);
    }
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.hero-btn-wrapper {
    margin-top: 30px;
}

.hero-btn-wrapper .th-btn {
    min-width: 200px;
    text-align: center;
}

.hero-stats-showcase {
    position: relative;
    padding: 30px;
}

.main-stat-card {
    background: linear-gradient(135deg, var(--theme-color), #FF6B35);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.main-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 10s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.stat-icon-wrapper i {
    font-size: 24px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.mini-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.mini-stat-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--theme-color);
}

.mini-stat-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mini-stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--theme-color), #FF6B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.mini-stat-text {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Enhanced Stats Section */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(6, 143, 255, 0.1), rgba(255, 107, 53, 0.1));
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(6, 143, 255, 0.2);
    font-weight: 600;
    color: var(--theme-color);
}

.stats-container {
    margin-top: 50px;
}

.stat-card-v2 {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.stat-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stat-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--theme-color), #FF6B35);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card-v2:hover::before {
    transform: scaleX(1);
}

.stat-icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--theme-color), #FF6B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 143, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(6, 143, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(6, 143, 255, 0);
    }
}

.stat-icon-bg i {
    font-size: 32px;
    color: white;
}

.stat-content .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--theme-color);
    margin-bottom: 10px;
    line-height: 1;
}

.plus-sign {
    color: #FF6B35;
    font-size: 36px;
    margin-left: 2px;
}

.stat-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-subtitle {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.stat-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(6, 143, 255, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 50% 0 20px 0;
}

/* Benefits Showcase */
.benefits-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding: 20px;
}

.benefit-card-large {
    grid-column: 1 / 3;
    background: linear-gradient(135deg, var(--theme-color), #FF6B35);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-icon-large {
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

.benefit-card-small {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-card-small:hover {
    transform: translateY(-5px);
}

.benefit-card-small span {
    font-weight: 600;
    color: #333;
}

.benefit-highlight {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
}

.highlight-year {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.highlight-text {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

/* Job Icon Wrapper */
.job-icon-wrapper {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--theme-color), #FF6B35);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 15px 0 0;
    position: relative;
    overflow: hidden;
}

.job-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.job-icon-wrapper i {
    position: relative;
    z-index: 1;
}

/* Team Card Enhancements */
.team-card.style2 {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
}

.team-card.style2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-card-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.salary-badge {
    background: var(--theme-color);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.job-details span {
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-type {
    background: #e3f2fd !important;
    color: #1976d2 !important;
}

.job-exp {
    background: #f3e5f5 !important;
    color: #7b1fa2 !important;
}

.job-location {
    background: #e8f5e8 !important;
    color: #388e3c !important;
}

/* Enhanced Contact Cards */
.contact-info-card-v2 {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.contact-info-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-card-header {
    position: relative;
    background: linear-gradient(135deg, var(--theme-color) 0%, #FF6B35 100%);
    padding: 30px;
    text-align: center;
}

.contact-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.contact-icon-bg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-icon-bg i {
    font-size: 28px;
    color: #ffffff;
}

.contact-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.contact-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 6px 12px;
}

.badge-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-content {
    padding: 30px 25px;
}

.contact-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.contact-card-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    font-size: 15px;
}

.contact-action {
    margin-bottom: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--theme-color) 0%, #FF6B35 100%);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(6, 143, 255, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 143, 255, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-text {
    flex: 1;
    text-align: center;
}

.btn-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg);
}

.address-info {
    text-align: center;
}

.address-text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.address-text strong {
    color: #2c3e50;
    font-weight: 600;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    color: var(--theme-color);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.map-btn:hover {
    background: var(--theme-color);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.contact-meta {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.contact-meta span {
    color: #6c757d;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-meta i {
    color: var(--theme-color);
}

/* Process Card Styling */
.process-wrap {
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
}

.process-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f5f5f5;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.process-card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--theme-color), #FF6B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #28a745;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.process-card-icon i {
    font-size: 24px;
    z-index: 1;
}

.process-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-card-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Area v4 Enhancements */
.cta-wrap2 {
    padding: 60px 40px;
    position: relative;
}

.cta-icon {
    margin-bottom: 30px;
}

.cta-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.th-btn.style-border2 {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.th-btn.style-border2:hover {
    background: #ffffff;
    color: var(--theme-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-wrap {
        padding: 40px 20px;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .job-details {
        justify-content: center;
    }
    
    .team-card.style2:hover {
        transform: translateY(-5px);
    }
    
    .hero-content {
        padding: 30px 0;
        text-align: center;
    }
    
    .hero-btn-wrapper .th-btn {
        min-width: auto;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .main-stat-card {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .mini-stat-item {
        padding: 15px;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .mini-stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-card-v2 {
        padding: 25px 20px;
    }
    
    .stat-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon-bg i {
        font-size: 24px;
    }
    
    .stat-content .stat-number {
        font-size: 36px;
    }
    
    .plus-sign {
        font-size: 28px;
    }
    
    .benefits-showcase {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
    
    .benefit-card-large {
        grid-column: 1;
        padding: 30px 20px;
    }
    
    .benefit-title {
        font-size: 24px;
    }
    
    .job-icon-wrapper {
        height: 150px;
    }
    
    .job-icon-wrapper i {
        font-size: 2rem !important;
    }
    
    /* Enhanced Contact Cards Mobile */
    .contact-info-card-v2:hover {
        transform: translateY(-5px);
    }
    
    .contact-card-header {
        padding: 25px 20px;
    }
    
    .contact-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon-bg i {
        font-size: 24px;
    }
    
    .contact-icon-pulse {
        width: 60px;
        height: 60px;
    }
    
    .contact-card-content {
        padding: 25px 20px;
    }
    
    .contact-card-title {
        font-size: 20px;
    }
    
    .contact-card-description {
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .salary-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .process-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-card-icon i {
        font-size: 20px;
    }
    
    .process-number {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
    
    .contact-card-header {
        padding: 20px 15px;
    }
    
    .contact-card-content {
        padding: 20px 15px;
    }
    
    .contact-btn {
        flex-direction: column;
        gap: 8px;
        padding: 15px 20px;
    }
    
    .btn-icon {
        width: 25px;
        height: 25px;
    }
    
    .address-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .salary-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .process-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-card-icon i {
        font-size: 20px;
    }
    
    .process-number {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
}

/* ===== Departments Section ===== */
.departments-section .dept-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.departments-section .dept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    border-color: var(--theme-color);
}

.departments-section .dept-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--theme-color), #FF6B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.departments-section .dept-icon i {
    font-size: 32px;
    color: #fff;
}

.departments-section .dept-card:hover .dept-icon {
    transform: scale(1.1) rotate(5deg);
}

.departments-section .dept-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.departments-section .dept-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Careers Hero Override */
.careers-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 50%, #f0f4ff 100%);
    position: relative;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(6, 143, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .departments-section .dept-card {
        padding: 30px 20px;
    }
    
    .departments-section .dept-icon {
        width: 65px;
        height: 65px;
    }
    
    .departments-section .dept-icon i {
        font-size: 26px;
    }
}