/* Careers Page Styles */

/* Life at Sambhaav Section */
.life-at-sambhaav {
    background: #6b46c1;
    padding: 80px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.life-at-sambhaav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* White rectangle section for cards */
.life-at-sambhaav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: #ffffff;
    border-radius: 0;
    z-index: 1;
}

.life-at-sambhaav-header {
    background: transparent;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 3rem;
    z-index: 2;
}

.life-at-sambhaav-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.life-at-sambhaav-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Image Carousel Section */
.life-at-sambhaav-carousel {
    background: transparent;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

/* Swiper Styles */
.careers-swiper {
    padding: 20px 0 60px 0;
    position: relative;
    margin: -7rem !important;
}

.swiper-slide {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px;
}

.swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px;
}

.swiper-pagination-bullet {
    background: #6b46c1;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #6b46c1;
    transform: scale(1.2);
}

/* Swiper Responsive Adjustments */
@media (max-width: 768px) {
    .swiper-slide {
        height: 200px;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .life-at-sambhaav-header h2 {
        font-size: 2rem;
    }
    
    .life-at-sambhaav-header p {
        font-size: 1rem;
    }
    
    .swiper-slide {
        height: 180px;
    }
    .life-at-sambhaav-header {
        margin-bottom: unset;
    }

    /* Image Carousel Section */
    .life-at-sambhaav-carousel {
        padding: unset;
    }
    .life-at-sambhaav {
        padding: 0;
    }
    .swiper-slide {
        width:  300px !important;
    }
    .careers-swiper {
        margin: 3.7rem !important;
    }
}

@media (max-width: 480px) {
    .life-at-sambhaav-header {
        padding: 60px 0;
    }
    
    .life-at-sambhaav-header h2 {
        font-size: 1.8rem;
    }
    
}

/* Swiper Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide {
    animation: fadeInUp 0.6s ease-out;
} 

.join-sambhaav-team-section {
    background: linear-gradient(90deg, #ff5e2e 0%, #ff6a3d 100%);
    border-radius: 8px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.join-sambhaav-team-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.join-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.apply-now-btn {
    background: transparent;
    border: 1.5px solid #fff;
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.apply-now-btn:hover {
    background: #fff;
    color: #ff5e2e;
} 