:root {
    --primary-orange: #FD933D;
}
.career-hero-section {
    position: relative;
    padding: 180px 0 100px;
    /* min-height: 80vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.career-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.career-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.career-hero-bg .mobile-bg {
    display: none;
}

.career-hero-section .hero-content-wrapper {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    width: 80% !important;
    padding: 0;
}

.career-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px 40px;
    align-items: center;
}

.career-hero-title {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.career-hero-title h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
}

.career-hero-title h1 span {
    /* background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--primary-orange);
}

.career-hero-badge {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.career-hero-badge img {
    width: 120px;
    height: 120px;
}

.career-hero-desc {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.career-hero-desc p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.career-hero-desc b {
    /* background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--primary-orange);
    font-weight: 600;
}

.btn-gradient-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
        /* background: linear-gradient(91.99deg, #FD933D -42.77%, #F79146 -8.96%, #E68A5D 28.8%, #D0827B 64.33%, #B076A7 105.67%); */
    background: var(--main-color);
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(240, 90, 40, 0.3);
}

.btn-gradient-solid:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(240, 90, 40, 0.4); */
}

.career-hero-image {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    text-align: center;
    position: relative;
}

.career-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(240, 90, 40, 0.1); 
}

.career-benefits-section {
    padding: 30px 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.benefits-wrapper {
    margin: 0 auto;
    width: 70% !important;
}

.benefits-header {
    text-align: center;
    margin-bottom: 35px;
}

.benefits-header h2 {
    /* background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 64%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--primary-orange);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.text-orange {
    color: var(--primary-orange)
}

.text-purple {
    color: #9b51e0;
}

.benefits-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgb(230 160 120 / 82%);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 90, 40, 0.5);
    background: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
}
.benefit-card:hover .benefit-icon .fa-solid{
    color: #fff !important;
}
.benefit-card:hover .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}
.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(240, 90, 40, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(240, 90, 40, 0.3);
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.career-culture-section {
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.culture-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
    width: 70% !important;
}

.culture-text-col h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.culture-text-col p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.culture-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.text-com{
    /* background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--primary-orange);
}
.text-open{
    /* background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--primary-orange);
}

.highlight-item {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item i {
    font-size: 20px;
}

.culture-img-col img {
    border-radius: 20px;
    width: 100%;
}
#open-positions{
    scroll-margin-top: 100px !important;
}
.open-positions-section {
    padding: 50px 0 80px;
}

.positions-wrapper {
    margin: 0 auto;
    width: 80% !important;
    padding: 0 !important;
}

.positions-header {
    text-align: center;
    margin-bottom: 60px;
}

.positions-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.positions-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(243, 36, 36, 0.1);
    border-radius: 16px;
    padding: 30px 40px;
    transition: all 0.3s ease;
}

.job-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(243, 36, 36, 0.1);
    transform: translateX(10px);
}

.job-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-meta i {
    color: var(--primary-orange)
}

.btn-outline-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: transparent;
    color: var(--main-color) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--main-color);
    transition: all 0.3s ease;
}
.btn-outline-orange:hover {
    background: var(--main-color);
    color: #fff !important;
}
@media (min-width:992px) and (max-width: 1399px) {
    .benefit-card p {
    font-size: 15px;
    }
    .career-hero-title h1{
        font-size: 46px;
    }
    .benefits-header h2,.culture-text-col h2 ,.positions-header h2{
        font-size: 40px;
    }
    .benefit-card h3 {
        font-size: 20px;
    }
    .benefit-card{
        padding: 20px 10px;
    }
}
@media (max-width: 991px) {
    .positions-header {
    margin-bottom: 30px;
}
    .benefits-header h2,.culture-text-col h2,.positions-header h2  {
        font-size: 32px;
    }
    .career-benefits-section,.open-positions-section {
    padding: 20px 0;
    }
    .career-hero-title h1 {
    font-size: 44px;
    }
     .culture-content-grid, .positions-wrapper, .benefits-wrapper,.career-hero-section .hero-content-wrapper{
        width: 95% !important;
    }
    .career-hero-section {
        padding: 120px 0 35px;
    }
    .career-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
        gap: 15px;
    }
    .career-hero-title {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .career-hero-desc {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        margin: 0 auto;
    }
    .career-hero-badge {
        display: none;
    }
    .career-hero-image {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        margin-top: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .modal-footer-box{
        padding: 20px !important;
        font-size: 14px !important;
    }
    .modal-meta ,.excitement-text{
    font-size: 13px !important;
    margin-bottom: 10px !important;
}
    .posted-date{
        font-size: 10px !important;
    }
    .modal-header-info h2{
        font-size: 20px !important;
    }
   .req-list{
    font-size: 13px !important;
   }
    .culture-content-grid{
        gap: 30px;
    }
    .culture-text-col p,.req-title {
    font-size: 16px !important;
    }
    .culture-content-grid, .positions-wrapper, .benefits-wrapper{
        width: 95% !important;
    }
  
    .career-benefits-section{
        padding: 0 !important;
    }
      .job-modal-content {
        width: 95% !important;
        padding: 20px !important;
        margin: 5vh auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header-info h2 {
        font-size: 24px;
        padding-right: 30px;
    }
    
    .modal-meta {
        font-size: 14px;
    }
    
    .req-list {
        font-size: 15px;
    }
    
    .modal-footer-box {
        font-size: 16px;
        padding: 20px 15px;
    }
    .career-hero-section .hero-content-wrapper {
        width: 95% !important;
    }
    .career-hero-bg .desktop-bg {
        display: none;
    }
    .career-hero-bg .mobile-bg {
        display: block;
    }
    
    .career-hero-title h1 {
        font-size: 34px;
    }
    .career-hero-desc p ,.benefits-header p{
    font-size: 16px;
    }
    .benefits-header h2, .culture-text-col h2, .positions-header h2 {
        font-size: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .job-card {
        padding: 25px;
    }
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    .benefits-header {
    margin-bottom: 20px;
}
}


.job-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(11, 13, 23, 0.8);
    backdrop-filter: blur(5px);
}

.job-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.job-modal-content {
    background-color: #fff;
    margin: 5vh auto;
    padding: 40px;
    border: 1px solid #888;
    width: 80%;
    max-width: 900px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    color: #333;
    animation: slideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    color: var(--primary-orange);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-orange);
    text-decoration: none;
}

.modal-header-info {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.modal-header-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.posted-date {
    color: var(--primary-orange);
    font-size: 14px;
    margin: 0;
}

.modal-meta {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

.modal-body {
    margin-bottom: 30px;
}

.req-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.req-list {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    padding-left: 20px;
    margin-bottom: 25px;
}

.req-list li {
    margin-bottom: 10px;
}

.excitement-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.modal-footer-box {
    background-color: var(--primary-orange);
    color: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 8px;
    font-size: 18px;
}
.modal-footer-box p{
    margin: 0 !important;
}

.modal-footer-box strong {
    font-weight: 600;
    letter-spacing: 0.5px;
}
.modal-footer-box a{
    text-decoration: none;
    color: #fff;
}

