
/* Container */
.container-1 {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #f8fafc, #ffffff, #f0fdf4);
    overflow: hidden;margin-top: 60px;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.4;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: pulse 4s ease-in-out infinite;
}

.blob-1 {
    top: -160px;
    right: -160px;
    width: 384px;
    height: 384px;
    background: linear-gradient(to bottom right, #4ade80, #3b82f6);
}

.blob-2 {
    top: 33%;
    left: -160px;
    width: 320px;
    height: 320px;
    background: linear-gradient(to bottom right, #a78bfa, #ec4899);
    animation-delay: 1s;
}

.blob-3 {
    bottom: 80px;
    right: 25%;
    width: 288px;
    height: 288px;
    background: linear-gradient(to bottom right, #fbbf24, #f97316);
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgb(209 213 219 / 0.3) 1px, transparent 0);
    background-size: 40px 40px;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 16px;
}

@media (min-width: 1024px) {
    .content-wrapper {
        padding: 96px 16px;
    }
}

/* Badges */
.badge-primary,
.badge-secondary,
.badge-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-primary {
    background: linear-gradient(to right, #16a34a, #10b981);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.badge-secondary {
    background: linear-gradient(to right, #dcfce7, #d1fae5);
    color: #15803d;
}

.badge-tertiary {
    background: linear-gradient(to right, #dbeafe, #e0e7ff);
    color: #1e40af;
}

.badge-primary i,
.badge-secondary i,
.badge-tertiary i {
    width: 16px;
    height: 16px;
}
section {
	padding: 0;
}
/* Hero Section */
.hero-section {
    max-width: 1024px;
    margin: 0 auto 30px;
    text-align: center;

    transform: translateY(20px);
    transition: all 0.6s ease;
}

.hero-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    color: #111827;
    font-weight: 800;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    display: none;
}

@media (min-width: 1024px) {
    .title-underline {
        display: block;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 768px;
    margin: 0 auto;
}

/* Hero Images Grid */
.hero-images {
    max-width: 1152px;
    margin: 0 auto 96px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;

    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.hero-images.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .hero-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
}

.image-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #111827;
    font-weight: 800;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.gradient-text-alt {
    background: linear-gradient(to right, #16a34a, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue {
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Why Join Section */
.why-join-section {
    max-width: 1152px;
    margin: 0 auto 96px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reason-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;

    transform: translateY(20px);
    transition: all 0.5s ease;
}

.reason-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.reason-card[data-index="1"] {
    transition-delay: 0.1s;
}

.reason-card[data-index="2"] {
    transition-delay: 0.2s;
}

.reason-card[data-index="3"] {
    transition-delay: 0.3s;
}

.reason-card:hover {

    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.reason-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reason-card:hover .reason-bg {
    opacity: 1;
}

.reason-bg-1 {
    background: linear-gradient(to bottom right, #dbeafe, #e0f2fe);
}

.reason-bg-2 {
    background: linear-gradient(to bottom right, #dcfce7, #d1fae5);
}

.reason-bg-3 {
    background: linear-gradient(to bottom right, #f3e8ff, #fce7f3);
}

.reason-bg-4 {
    background: linear-gradient(to bottom right, #ffedd5, #fecaca);
}

.reason-content {
    position: relative;
    z-index: 10;
}

.reason-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1);
}

.reason-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.reason-icon-1 {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.reason-icon-2 {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.reason-icon-3 {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.reason-icon-4 {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.reason-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 700;
}

.reason-card p {
    color: #4b5563;
    line-height: 1.75;
}

.reason-decoration {
    position: absolute;
    right: -32px;
    bottom: -32px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.reason-card:hover .reason-decoration {
    opacity: 0.2;
}

.reason-decoration-1 {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.reason-decoration-2 {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.reason-decoration-3 {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.reason-decoration-4 {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

/* Jobs Section */
.jobs-section {
    max-width: 1024px;
    margin: 0 auto 96px;
}

.jobs-subtitle {
    font-size: 1.5rem;
    color: #16a34a;
    margin-bottom: 24px;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .jobs-subtitle {
        font-size: 1.875rem;
    }
}

.jobs-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 768px;
    margin: 0 auto;
}

.jobs-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f3f4f6;
    overflow: hidden;
}

.jobs-header {
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
    padding: 24px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
}

.jobs-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.jobs-header i {
    width: 32px;
    height: 32px;
    color: white;
    position: relative;
    z-index: 10;
}

.jobs-header h3 {
    font-size: 1.875rem;
    color: white;
    position: relative;
    z-index: 10;
    font-weight: 700;
}

.jobs-list {
    /* Borders are handled by individual .job-item elements */
}

.job-item {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;

    
    border-bottom: 1px solid #f3f4f6;
}

.job-item:last-child {
    border-bottom: none;
}

.job-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.job-item[data-index="1"] {
    transition-delay: 0.1s;
}

.job-item[data-index="2"] {
    transition-delay: 0.2s;
}

.job-item[data-index="3"] {
    transition-delay: 0.3s;
}

.job-item:hover {
    background: linear-gradient(to right, #f9fafb, transparent);
}

.job-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.job-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, #f3f4f6, #e5e7eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.job-item:hover .job-icon-wrapper {
    background: linear-gradient(to bottom right, #dcfce7, #d1fae5);
}

.job-icon-wrapper i {
    width: 24px;
    height: 24px;
    color: #4b5563;
    transition: color 0.3s ease;
}

.job-item:hover .job-icon-wrapper i {
    color: #16a34a;
}

.job-title h4 {
    font-size: 1.125rem;
    color: #111827;
    font-weight: 500;
    transition: color 0.3s ease;
}

.job-item:hover .job-title h4 {
    color: #16a34a;
}

.job-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

.job-status i {
    width: 16px;
    height: 16px;
}

/* Upload Resume Section */
.upload-section {
    max-width: 1024px;
    margin: 0 auto;
}

.upload-container {
    position: relative;
    background: linear-gradient(to bottom right, #16a34a, #10b981, #14b8a6);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
    .upload-container {
        padding: 64px;
    }
}

.upload-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(80px);
}

.upload-blob-1 {
    top: 0;
    left: 0;
    width: 256px;
    height: 256px;
    animation: pulse 3s ease-in-out infinite;
}

.upload-blob-2 {
    bottom: 0;
    right: 0;
    width: 320px;
    height: 320px;
    animation: pulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

.upload-content {
    position: relative;
    z-index: 10;
}

.upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: white;
    border-radius: 50%;
    margin-bottom: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.upload-icon i {
    width: 48px;
    height: 48px;
    color: #16a34a;
}

.upload-container h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
    font-weight: 800;
}

@media (min-width: 1024px) {
    .upload-container h2 {
        font-size: 3rem;
    }
}

.upload-description {
    font-size: 1.25rem;
    color: #dcfce7;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 40px;
}

.upload-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 24px 40px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #16a34a;
    background: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.upload-button:hover {
    background: #f0fdf4;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.upload-button i {
    width: 24px;
    height: 24px;
}

.upload-button i:first-child {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.upload-button:hover i:last-child {
    transform: translateX(4px);
}

.upload-button i:last-child {
    transition: transform 0.3s ease;
}

.upload-note {
    color: #dcfce7;
    margin-top: 32px;
    font-size: 1.125rem;
}

/* Decorative Shapes */
.deco-square {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    transform: rotate(12deg);
}

.deco-circle {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 64px;
    height: 64px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .upload-container {
        padding: 32px 24px;
    }
    
    .upload-button {
        padding: 20px 32px;
        font-size: 1.125rem;
    }
    
    .deco-square,
    .deco-circle {
        display: none;
    }
}


@media(max-width:767px){
.job-item {padding: 14px 20px;display: grid;justify-content: space-between;grid-template-columns: 100%;transform: translateX(0);}
.job-status {width: 120px;margin-top: 15px;}
.job-status svg {height: 20px;width: 20px;}
.jobs-section {margin: 0 auto 40px;}
}