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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

.header-container {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.nav-link.active {
    border-bottom-color: #f1f5f9;
    color: #ffffff;
}

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


/* Hero Section */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
        url('../images/sunset.png');
    background-size: cover;
    background-position: center 55%;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 0 0;
    position: relative;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.career-btn {
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.mission-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.mission-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-visual {
    display: flex;
    justify-content: center;
}

.mission-card {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 300px;
}

.mission-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.values h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e293b;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Careers Section */
.careers {
    padding: 80px 0;
    background: white;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.careers-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e293b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.careers-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
}

.careers-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.careers-form p {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #f1f5f9;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group small {
    margin-top: 5px;
    color: #6b7280;
    font-size: 0.875rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #6366f1;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Culture Section */
.culture {
    min-height: 100vh;
    background: #000000;
    padding: 50px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 15vh;
}

.culture .container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Careers Section */
.careers {
    min-height: 100vh;
    background: #000000;
    padding: 50px 0;
    position: relative;
    padding-top: 15vh;
    display: flex;
    flex-direction: column;
}

.careers .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.careers-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #f1f5f9;
    text-align: center;
    flex-shrink: 0;
}

.careers-layout {
    display: grid;
    grid-template-columns: 0.7fr 2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
    flex: 1;
    min-height: 0;
}

.positions-column {
    text-align: left;
    padding-top: 0;
}

.positions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.position-item {
    font-size: 1.3rem;
    color: #cbd5e1;
    padding: 20px 0;
    padding-left: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.position-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.position-item:hover {
    color: #f1f5f9;
}

.position-item.active {
    color: #f1f5f9;
    font-weight: 500;
}

.position-item.active::before {
    background-color: #ff8c42;
}

.descriptions-column {
    text-align: left;
    padding-top: 0;
}

.position-description {
    display: none;
    padding: 0;
    margin-top: 0;
}

.position-description.active {
    display: block;
    padding-top: 0;
}

.position-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.position-description p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.description-content {
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 10px;
}

.description-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.description-content h4:first-child {
    margin-top: 0;
}

.position-description p {
    margin-top: 0;
}

.description-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.description-content ul li {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.description-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #cbd5e1;
    font-weight: bold;
}

/* Custom scrollbar for description content */
.description-content::-webkit-scrollbar {
    width: 6px;
}

.description-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.description-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.description-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.careers-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.careers-email-link {
    font-size: 1.5rem;
    color: #f1f5f9;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.careers-email-link:hover {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.culture-content {
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
    margin: 0 auto;
    width: calc(100% - 40px);
}

.culture-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #f1f5f9;
}

.culture-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.culture-content p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    min-height: 100vh;
    background: #020617;
    display: flex;
    flex-direction: column;
    padding: 100px 0 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-text {
    padding: 40px 0;
}

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #f1f5f9;
}

.contact-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}

.contact-form-container {
    padding: 40px 0;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #f1f5f9;
    text-align: center;
}

.contact-form {
    background: #0f172a;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    text-align: left;
    width: 100%;
    border: 1px solid #1e293b;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #f1f5f9;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #374151;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background-color: #1e293b;
    color: #f1f5f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    background-color: #374151;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.5;
}

.btn-primary {
    background: transparent;
    color: #f1f5f9;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 4px;
}

.btn-primary:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    text-decoration-color: rgba(255, 255, 255, 0.6);
}

.btn-primary:active {
    transform: none;
    background: transparent;
    box-shadow: none;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-large {
    padding: 8px 0;
    font-size: 22px;
    font-weight: 500;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.mission {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.mission-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-card {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.mission-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.values {
    padding: 80px 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-avatar i {
    font-size: 2.5rem;
    color: white;
}

.member-role {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
}


.stat {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 5px;
}

.stat p {
    color: #64748b;
    font-weight: 600;
}

/* Careers Page Styles */
.careers-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.careers-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.careers-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.open-positions {
    padding: 80px 0;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.position-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.position-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
}

.position-type {
    background: #e0e7ff;
    color: #6366f1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.position-description {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.close {
    color: #64748b;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1e293b;
}

.application-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #f1f5f9;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 0.875rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #6366f1;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

#cancelBtn {
    background: #6b7280;
    color: white;
}

#cancelBtn:hover {
    background: #4b5563;
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.success-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.success-content i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.success-content p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8fafc;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0) !important;
    color: white;
    padding: 20px 0;
    border-top: none;
    box-shadow: none;
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
}

.footer-content {
    text-align: center;
    background: transparent;
}

.footer-content p {
    color: #cbd5e1;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero {
        min-height: 100vh;
        padding: 20px 0;
        background: 
            linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
            url('../images/sunset.png');
        background-size: cover;
        background-position: center 55%;
        background-repeat: no-repeat;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .header-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .culture-content h2,
    .careers-title {
        font-size: 2.5rem;
    }

    .culture-content p {
        font-size: 1.1rem;
    }

    .careers-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .position-item {
        font-size: 1.2rem;
        padding-left: 30px;
    }

    .position-description h3 {
        font-size: 1.5rem;
    }

    .position-description p {
        font-size: 1rem;
    }

    .description-content {
        max-height: 60vh;
    }

    .description-content h4 {
        font-size: 1.2rem;
        margin-top: 20px;
    }

    .description-content ul li {
        font-size: 0.95rem;
    }

    .careers-footer {
        margin-top: 40px;
        padding-top: 30px;
    }

    .careers-email-link {
        font-size: 1.3rem;
    }

    .contact {
        min-height: auto;
        padding: 30px 0 20px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .contact-text {
        padding: 15px 0;
    }

    .contact-text h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
        color: #f1f5f9;
    }

    .contact-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #cbd5e1;
    }

    .contact-form-container {
        padding: 15px 0;
    }

    .contact-form-container h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #f1f5f9;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .modal-content {
        margin: 5% auto;
        width: 95%;
    }

    .modal-header,
    .application-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 10px 0;
        background: 
            linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
            url('../images/sunset.png');
        background-size: cover;
        background-position: center 55%;
        background-repeat: no-repeat;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .header-container {
        padding: 0 10px;
        height: 55px;
    }

    .nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .career-btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .culture-content h2,
    .careers-title {
        font-size: 2rem;
    }

    .culture-content p {
        font-size: 1rem;
    }

    .careers-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .position-item {
        font-size: 1.1rem;
        padding: 15px 0;
        padding-left: 30px;
    }

    .position-description h3 {
        font-size: 1.3rem;
    }

    .position-description p {
        font-size: 0.95rem;
    }

    .description-content {
        max-height: 50vh;
    }

    .description-content h4 {
        font-size: 1.1rem;
        margin-top: 18px;
    }

    .description-content ul li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .careers-footer {
        margin-top: 30px;
        padding-top: 25px;
    }

    .careers-email-link {
        font-size: 1.2rem;
    }

    .contact {
        min-height: auto;
        padding: 25px 0 15px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .contact-text {
        padding: 10px 0;
    }

    .contact-text h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        color: #f1f5f9;
    }

    .contact-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #cbd5e1;
    }

    .contact-form-container {
        padding: 10px 0;
    }

    .contact-form-container h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        color: #f1f5f9;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Stop background resizing after 3000px */
@media (min-width: 3000px) {
    .hero {
        background-size: 3000px auto;
    }
}
