/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}


/* Hero Section */
.hero-section {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
    background-size: cover;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Why Join Section */
.why-join {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.why-join h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1.5rem;
}

.why-join p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.why-join .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    text-align: left;
}

.why-join .benefits-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-join .benefits-list li::before {
    content: '\2713';
    color: #007BFF;
    font-weight: bold;
}

/* Submit Your Resume Section */
.submit-resume {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.submit-resume h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1.5rem;
}

.submit-resume p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.resume-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-group input[type="file"] {
    padding: 0.5rem;
}

.form-group input:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-primary {
    background-color: #007BFF;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Life at Sysbot */
.life-at-sysbot {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.life-at-sysbot h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1.5rem;
}

.life-at-sysbot p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gallery {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery img {
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.employee-testimonials {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.employee-testimonials h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-item {
    max-width: 400px;
    text-align: left;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-item h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-item span {
    font-size: 0.9rem;
    color: #888;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery {
        flex-direction: center;
    }

    .testimonial-grid {
        flex-direction: center;
    }

    .resume-form {
        padding: 1.5rem;
    }

    .life-at-sysbot .gallery img {
        width: 100%;
    }
}
