/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 0.5rem 0;
    font-weight: 500;
    color: #4b5563;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2563eb;
}

/* Hero Section */
.careers-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.hero-cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hero-cta-button:hover {
    background-color: #1d4ed8;
}

.hero-image-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Why Join Us Section */
.why-join-us {
    padding: 5rem 20px;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.benefit-description {
    color: #6b7280;
}

/* Company Culture Section */
.company-culture {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.culture-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.culture-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.values-list {
    display: grid;
    gap: 2rem;
}

.value-item {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.75rem;
    border-left: 4px solid #2563eb;
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.value-description {
    color: #6b7280;
}

.culture-image-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.culture-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Open Positions Section */
.open-positions {
    padding: 5rem 20px;
    background-color: #f9fafb;
}

.positions-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-button {
    padding: 0.75rem 1.5rem;
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.positions-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.loading-positions {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.loading-positions i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

/* Application Process Section */
.application-process {
    padding: 5rem 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.step-description {
    color: #6b7280;
}

/* Testimonials Section */
.employee-testimonials {
    padding: 5rem 20px;
    background-color: #f9fafb;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.author-name {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-role,
.author-tenure {
    color: #6b7280;
    font-size: 0.875rem;
}

/* CTA Section */
.careers-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cta-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #2563eb;
    color: white;
}

.cta-button.primary:hover {
    background-color: #1d4ed8;
}

.cta-button.secondary {
    background-color: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-button.secondary:hover {
    background-color: #f0f9ff;
}

.cta-image-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Footer */
.site-footer {
    background-color: #1f2937;
    color: white;
    padding: 4rem 20px 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    color: white;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #2563eb;
}

.footer-subheading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
}

.footer-links a:hover {
    color: #2563eb;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.contact-info i {
    color: #2563eb;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid #374151;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.copyright {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .careers-hero,
    .company-culture,
    .careers-cta {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .culture-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .benefits-grid,
    .process-steps,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .positions-filter {
        flex-direction: column;
        align-items: stretch;
    }
}