/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-color: #A50000;
    --primary-dark: #7A0000;
    --primary-light: #D32F2F;
    --secondary-color: #1F2937;
    --accent-color: #059669;
    --accent-secondary: #F59E0B;
    --text-dark: #1A202C;
    --text-medium: #2D3748;
    --text-light: #4A5568;
    --text-white: #FFFFFF;
    --text-bright: #E2E8F0;
    --text-readable: #F7FAFC;
    --text-on-dark: #F7FAFC;
    --text-medium-on-dark: #E2E8F0;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7FAFC;
    --bg-tertiary: #EDF2F7;
    --bg-dark: #2D3748;
    --bg-darker: #1A202C;
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 15px rgba(165, 0, 0, 0.2);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* General gradient text */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override gradient text to white in hero and page headers */
.hero-title .gradient-text,
.page-header h1 .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--text-white);
    background-clip: unset;
    color: var(--text-white);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    background: var(--primary-dark);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(55, 65, 81, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo-image {
    height: 40px;
    width: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-logo h2 {
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 700;
    margin: 0;
}

.nav-logo span {
    color: #A50000;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #A50000;
    transform: translateY(-1px);
}

/* Enhanced hover effect for maroon navbar */
.nav-link:not(.cta-btn):hover {
    color: #A50000 !important;
}

.nav-link.active {
    color: #A50000;
    font-weight: 600;
}

.nav-link.cta-btn {
    background: linear-gradient(135deg, #A50000 0%, #D32F2F 100%);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(165, 0, 0, 0.4);
    background: linear-gradient(135deg, #D32F2F 0%, #A50000 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--text-white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-white);
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: var(--shadow);
}

.hero-buttons .btn-primary:hover {
    background: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-secondary {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    background: transparent;
}

.hero-buttons .btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Graphics */
.hero-graphic {
    position: relative;
    height: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.floating-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    animation: cardBounce 2s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
    transition: all 0.3s ease;
    height: 120px;
    min-width: 140px;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card span {
    color: var(--primary-color);
}

.card-1 {
    grid-column: 1;
    grid-row: 1;
    animation-delay: 0s;
}

.card-2 {
    grid-column: 2;
    grid-row: 1;
    animation-delay: 0.3s;
}

.card-3 {
    grid-column: 1;
    grid-row: 2;
    animation-delay: 0.6s;
}

.card-4 {
    grid-column: 2;
    grid-row: 2;
    animation-delay: 0.9s;
}

@keyframes cardBounce {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: var(--shadow);
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        box-shadow: var(--shadow-lg);
    }
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
    animation-play-state: paused;
}

/* Services Overview */
.services-overview {
    padding: 30px 0;
    background: var(--bg-secondary);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: fit-content;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card li {
    padding: 5px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

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

.why-content h2 {
    margin-bottom: 20px;
}

.why-content > p {
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.features-list {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--text-white);
}

.feature-text h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 1rem;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Technologies */
.technologies {
    padding: 50px 0;
    background: var(--bg-light);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-category {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tech-category h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-item {
    background: var(--gradient);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: var(--text-white);
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 35px;
    width: 35px;
    object-fit: contain;
}

.footer-logo h3 {
    margin-bottom: 0;
}

.footer-section h3 span {
    color: var(--primary-light);
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary-light);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info i {
    color: var(--primary-light);
    width: 20px;
}

/* Phone number styling */
.contact-info a[href^="tel:"] {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a[href^="tel:"]:hover {
    color: var(--primary-light);
    text-decoration: none;
}

/* General phone link styling for all pages */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href^="tel:"]:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* WhatsApp link styling */
a[href^="https://wa.me/"] {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href^="https://wa.me/"]:hover {
    color: #25D366; /* WhatsApp green */
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Text Consistency Rules for Primary Color Backgrounds */
.btn-primary *,
.filter-btn.active *,
.cta-section *,
.hero *,
.about-hero *,
.page-header *,
.submit-btn *,
.social-links a *,
[style*="background:var(--primary-color)"] *,
[style*="background:var(--gradient)"] * {
    color: inherit;
}

/* Ensure all direct children of primary backgrounds use white text */
.btn-primary,
.filter-btn.active,
.cta-section,
.hero,
.about-hero,
.page-header,
.submit-btn,
.social-links a {
    color: var(--text-white);
}

/* Ensure specific headings are white */
.page-header h1 {
    color: var(--text-white);
}

/* ===== CAREERS PAGE STYLES ===== */

/* Careers Section */
.careers-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.careers-intro {
    text-align: center;
    margin-bottom: 60px;
}

.careers-intro h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.careers-intro p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Job Listings */
.job-listings {
    max-width: 900px;
    margin: 0 auto;
}

.job-listings h2 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

/* Job Card */
.job-card {
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.job-header {
    margin-bottom: 30px;
}

.job-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-medium);
    font-size: 0.95rem;
    background: var(--bg-tertiary);
    padding: 8px 15px;
    border-radius: 25px;
}

.job-meta span i {
    color: var(--primary-color);
}

/* Job Description */
.job-description {
    margin-bottom: 30px;
}

.job-description h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.job-description p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 15px;
}

.job-description ul {
    list-style: none;
    padding-left: 0;
}

.job-description ul li {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.job-description ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Apply Section */
.apply-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.apply-btn {
    background: var(--gradient);
    color: var(--text-white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.modal-content {
    background-color: var(--bg-primary);
    margin: 2% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.close:hover {
    color: var(--primary-color);
}

.modal h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-white);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-medium);
    padding: 12px 30px;
    border: 2px solid var(--border-medium);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-medium);
}

/* Mobile Responsiveness for Careers */
@media (max-width: 768px) {
    .careers-section {
        padding: 60px 0;
    }
    
    .careers-intro h2 {
        font-size: 2rem;
    }
    
    .job-card {
        padding: 25px;
    }
    
    .job-header h3 {
        font-size: 1.5rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 25px;
        width: 95%;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}