/* Careers Page Specific Styles */

/* Variables inherited from style.css */
:root {
    --primary-blue: #B8E0FF;
    --theme-yellow: #F5D547;
    --light-blue-bg: #D6EFFF;
    --cream-bg: #F5F0E6;
    --text-dark: #1a1a2e;
}
 html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
            font-family: 'Plus Jakarta Sans', sans-serif !important;
}
/* Hero Section */
.careers-hero {
    background: var(--primary-blue);
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.careers-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--theme-yellow);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--theme-yellow);
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.careers-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.careers-hero-title .highlight {
    color: var(--theme-yellow);
    text-shadow: 2px 2px 0 #000;
}

.careers-hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    max-width: 90%;
}

.careers-hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--theme-yellow);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin: 0;
    line-height: 1;
}

.stat-box span {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.careers-hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.careers-hero-image {
    position: relative;
    padding: 20px;
}

.image-main {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
}

.image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-main:hover img {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    animation: floatCard 4s ease-in-out infinite;
}

.team-card {
    bottom: 60px;
    left: -30px;
    animation-delay: 0s;
}

.team-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.team-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    object-fit: cover;
}

.team-avatars img:first-child {
    margin-left: 0;
}

.add-btn {
    width: 45px;
    height: 45px;
    background: var(--theme-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-left: -12px;
    border: 3px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: #000;
    color: #fff;
}

.team-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.growth-card {
    top: 40px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation-delay: 2s;
}

.growth-card i {
    width: 50px;
    height: 50px;
    background: var(--theme-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.growth-card h4 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.growth-card span {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.7;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #000;
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #000;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Why Zen Section */
.why-zen-section {
    padding: 80px 0;
    background: #fff;
}

.section-desc {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.why-card {
    background: var(--cream-bg);
    padding: 30px 25px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-yellow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-icon-wrap {
    width: 55px;
    height: 55px;
    background: var(--theme-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: #000;
    color: var(--theme-yellow);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--theme-yellow);
    transition: width 0.4s ease;
}

.why-card:hover .hover-line {
    width: 100%;
}

/* Life at Zen Section - FIXED GAPS */
.life-section {
    background: var(--cream-bg);
    overflow: hidden;
    padding: 0;
}

.life-content {
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.life-content .section-title {
    margin-bottom: 15px;
}

.life-content .lead-text {
    margin-bottom: 30px;
}

.lead-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.life-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.life-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: var(--theme-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.life-feature:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: #000;
    color: var(--theme-yellow);
}

.feature-text h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.life-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 100%;
    min-height: 500px;
    padding: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-yellow);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.benefit-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.1);
}

.benefit-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background: var(--theme-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    border: 4px solid #fff;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: translateX(-50%) scale(1.1) rotate(10deg);
    background: #000;
    color: var(--theme-yellow);
}

.benefit-content {
    padding: 40px 20px 25px;
    text-align: center;
}

.benefit-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.benefit-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Openings Section */
.openings-section {
    padding: 80px 0;
    background: var(--cream-bg);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--theme-yellow);
    color: #000;
    border-color: var(--theme-yellow);
    transform: translateY(-2px);
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateX(10px);
    border-color: var(--theme-yellow);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--theme-yellow);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.job-card:hover::before {
    transform: scaleY(1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.job-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-meta span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--theme-yellow);
    font-size: 12px;
}

.job-badge {
    background: #ff4757;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.job-badge.new {
    background: #2ed573;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.job-body {
    margin-bottom: 15px;
}

.job-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tags span {
    background: var(--cream-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.job-card:hover .job-tags span {
    background: var(--theme-yellow);
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.posted-date {
    font-size: 12px;
    color: #999;
}

.btn-apply {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: var(--theme-yellow);
    border-color: var(--theme-yellow);
    transform: translateX(5px);
}

.no-match {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Internship Section */
.internship-section {
    padding: 60px 0;
    background: #fff;
}

.internship-box {
    background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.internship-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--theme-yellow);
    border-radius: 50%;
    opacity: 0.1;
}

.internship-content {
    position: relative;
    z-index: 1;
}

.badge-intern {
    display: inline-block;
    background: var(--theme-yellow);
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.internship-box h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.internship-box p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.internship-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.internship-benefits li {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.internship-benefits i {
    color: var(--theme-yellow);
    font-size: 14px;
}

.internship-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 180px;
    color: var(--theme-yellow);
    opacity: 0.1;
    transform: rotate(-15deg);
}

/* Apply Section */
.apply-section {
    padding: 80px 0;
    background: var(--primary-blue);
}

.apply-info .section-title {
    margin-bottom: 15px;
}

.contact-info-box {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #fff;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--theme-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    flex-shrink: 0;
}

.contact-item span {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.contact-item a,
.contact-item p {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin: 0;
}

.apply-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--theme-yellow);
    background: #fff;
}

.file-input-wrapper {
    position: relative;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed #ccc;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    border-color: var(--theme-yellow);
    background: var(--cream-bg);
}

.file-label i {
    font-size: 32px;
    color: var(--theme-yellow);
    margin-bottom: 8px;
}

.file-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.file-types {
    font-size: 12px;
    color: #999;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--theme-yellow);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 213, 71, 0.4);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: var(--primary-blue);
    border: none;
    padding: 20px 25px;
}

.modal-title {
    font-weight: 700;
    color: #000;
    font-size: 18px;
}

.modal-title span {
    color: var(--theme-yellow);
}

.modal-body {
    padding: 25px;
}

.modal .form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    font-size: 14px;
}

.modal .form-control:focus {
    border-color: var(--theme-yellow);
    box-shadow: none;
}

.modal label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .careers-hero-title {
        font-size: 52px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .careers-hero {
        padding: 120px 0 60px;
    }
    
    .careers-hero-title {
        font-size: 42px;
    }
    
    .careers-hero-stats {
        gap: 15px;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .stat-box h3 {
        font-size: 28px;
    }
    
    .floating-card {
        display: none;
    }
    
    .life-content {
        padding: 40px 25px;
    }
    
    .life-gallery {
        min-height: 400px;
    }
    
    .internship-box {
        padding: 35px;
    }
    
    .internship-benefits {
        grid-template-columns: 1fr;
    }
    
    .apply-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .careers-hero-title {
        font-size: 36px;
    }
    
    .careers-hero-stats {
        flex-wrap: wrap;
    }
    
    .careers-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .life-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
        height: 200px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-meta {
        gap: 15px;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .internship-box {
        padding: 30px 20px;
    }
    
    .internship-box h2 {
        font-size: 26px;
    }
    
    .internship-decoration {
        display: none;
    }
    
    .why-zen-section,
    .benefits-section,
    .openings-section,
    .apply-section {
        padding: 60px 0;
    }
}

/* Animation Classes */
.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--theme-yellow);
    z-index: -1;
    opacity: 0.5;
    transform: skewX(-10deg);
}

/* Smooth Scroll Offset */
#why-zen,
#life,
#openings,
#apply {
    scroll-margin-top: 90px;
}