/* Careers Page Styles */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
}

.job-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.job-card .btn {
    margin-top: auto;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #059669;
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.location, .experience {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.job-details {
    padding: 2rem 0;
}

.job-content {
    max-width: 800px;
    margin: 0 auto;
}

.job-info h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.job-info h3 {
    color: #1a1a1a;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.job-info ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.job-info li {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.apply-section {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #059669;
    color: white;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo a {
    font-family: 'Source Code Pro', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #059669;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #059669;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1001;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
    color: #059669;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

/* Careers Section */
.careers-section {
    padding: 4rem 0;
}

.careers-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 2rem;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p,
.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: #059669;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    z-index: 1000;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    min-height: calc(100vh - 200px);
}

/* Service Page Styles */
.devops-hero { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); }
.devsecops-hero { background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%); }
.sre-hero { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); }
.cloud-hero { background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%); }
.finops-hero { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); }

.devops-highlight { color: #0ea5e9; font-weight: 700; }
.devsecops-highlight { color: #dc2626; font-weight: 700; }
.sre-highlight { color: #16a34a; font-weight: 700; }
.cloud-highlight { color: #d97706; font-weight: 700; }

.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #059669;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.cta-button:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.devops-page .service-card:hover { border-color: #0ea5e9; }
.devsecops-page .service-card:hover { border-color: #dc2626; }
.sre-page .service-card:hover { border-color: #16a34a; }
.cloud-page .service-card:hover { border-color: #d97706; }
.finops-page .service-card:hover { border-color: #059669; }

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.devops-page .service-icon { background: #f0f9ff; }
.devsecops-page .service-icon { background: #fef2f2; }
.sre-page .service-icon { background: #f0fdf4; }
.cloud-page .service-icon { background: #fefce8; }
.finops-page .service-icon { background: #dcfdf7; }

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #6b7280;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.devops-page .service-features li::before { color: #0ea5e9; }
.devsecops-page .service-features li::before { color: #dc2626; }
.sre-page .service-features li::before { color: #16a34a; }
.cloud-page .service-features li::before { color: #d97706; }
.finops-page .service-features li::before { color: #059669; }

.benefits {
    background: #f9fafb;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid;
}

.devops-page .benefit-card { border-left-color: #0ea5e9; }
.devsecops-page .benefit-card { border-left-color: #dc2626; }
.sre-page .benefit-card { border-left-color: #16a34a; }
.cloud-page .benefit-card { border-left-color: #d97706; }
.finops-page .benefit-card { border-left-color: #059669; }

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.stats {
    color: white;
}

.devops-page .stats { background: #0ea5e9; }
.devsecops-page .stats { background: #dc2626; }
.sre-page .stats { background: #16a34a; }
.cloud-page .stats { background: #d97706; }
.finops-page .stats { background: #059669; }

.stats .section-title {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact {
    background: #1f2937;
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-description {
    color: #d1d5db;
}

/* Cloud specific styles */
.clouds {
    background: #f9fafb;
}

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

.cloud-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.cloud-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.cloud-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.aws-color { color: #ff9900; }
.azure-color { color: #0078d4; }
.alibaba-color { color: #ff6a00; }

.cloud-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cloud-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.cloud-features {
    list-style: none;
    text-align: left;
}

.cloud-features li {
    color: #6b7280;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
}

.cloud-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d97706;
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

/* CloudOps page specific styles */
.cloudops-page .hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.cloudops-page .cloudops-highlight {
    color: #0ea5e9;
}

.cloudops-page .service-card:hover {
    border-color: #0ea5e9;
}

.cloudops-page .service-icon {
    background: #f0f9ff;
}

.cloudops-page .service-features li::before {
    color: #0ea5e9;
}

.cloudops-page .cloud-features li::before {
    color: #0ea5e9;
}

.cloudops-page .benefit-card {
    border-left: 4px solid #0ea5e9;
}

.cloudops-page .stats {
    background: #0ea5e9;
}

/* MDM page specific styles */
.mdm-page .hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mdm-page .challenge-card {
    border-left: 4px solid #dc2626;
}

.mdm-page .solution-card:hover {
    border-color: #059669;
}

.mdm-page .solution-number {
    background: #dcfdf7;
    color: #059669;
}

.mdm-page .stats {
    background: #059669;
}

/* FinOps AWS page specific styles */
.finops-aws-page .hero {
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

.finops-aws-page .aws-logo {
    color: #ff9900;
}

.finops-aws-page .service-card:hover {
    border-color: #ff9900;
}

.finops-aws-page .service-icon {
    background: #fff7ed;
}

.finops-aws-page .service-features li::before {
    color: #ff9900;
}

.finops-aws-page .stats {
    background: #ff9900;
}

/* FinOps Azure page specific styles */
.finops-azure-page .hero {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.finops-azure-page .azure-logo {
    color: #0078d4;
}

.finops-azure-page .service-card:hover {
    border-color: #0078d4;
}

.finops-azure-page .service-icon {
    background: #e6f3ff;
}

.finops-azure-page .service-features li::before {
    color: #0078d4;
}

.finops-azure-page .stats {
    background: #0078d4;
}

/* FinOps Alibaba page specific styles */
.finops-alibaba-page .hero {
    background: linear-gradient(135deg, #fff8f0 0%, #fef3e2 100%);
}

.finops-alibaba-page .alibaba-logo {
    color: #ff6a00;
}

.finops-alibaba-page .service-card:hover {
    border-color: #ff6a00;
}

.finops-alibaba-page .service-icon {
    background: #fff8f0;
}

.finops-alibaba-page .service-features li::before {
    color: #ff6a00;
}

.finops-alibaba-page .stats {
    background: #ff6a00;
}

/* Open Source page specific styles */
.opensource-page .hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.opensource-page .opensource-highlight {
    color: #0ea5e9;
}

.opensource-page .solution-card:hover {
    border-color: #0ea5e9;
}

.opensource-page .solution-icon {
    background: #f0f9ff;
}

.opensource-page .solution-features li::before {
    color: #0ea5e9;
}

.opensource-page .btn-primary {
    background: #0ea5e9;
}

.opensource-page .btn-primary:hover {
    background: #0284c7;
}

.opensource-page .btn-secondary {
    background: transparent;
    padding: 12px 24px;
    border: 2px solid;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Alibaba OSS Cleaner page specific styles */
.alibaba-oss-page .hero {
    background: linear-gradient(135deg, #fff8f0 0%, #fef3e2 100%);
}

.alibaba-oss-page .alibaba-highlight {
    color: #ff6a00;
}

.alibaba-oss-page .feature-card:hover {
    border-color: #ff6a00;
}

.alibaba-oss-page .feature-icon {
    background: #fff8f0;
}

.alibaba-oss-page .usage-steps li::before {
    background: #ff6a00;
}

/* AI Test Generator page specific styles */
.ai-test-page .hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
}

.ai-test-page .ai-highlight {
    color: #6366f1;
}

.ai-test-page .feature-card:hover {
    border-color: #6366f1;
}

.ai-test-page .feature-icon {
    background: #f0f4ff;
}

.ai-test-page .usage-steps li::before {
    background: #6366f1;
}

.ai-test-page .frameworks {
    background: #f0f4ff;
}

/* Additional shared styles for new pages */
.tools {
    background: #f9fafb;
}

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

.tool-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.tool-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.tool-description {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Solutions grid for open source pages */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.solution-features {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    color: #6b7280;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

/* Features grid for tool pages */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

/* Code block styles for open source pages */
.code-block {
    background: #1f2937;
    color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    margin: 2rem 0;
    white-space: pre-wrap;
}

.installation {
    background: #f9fafb;
}

.usage-steps {
    list-style: none;
    counter-reset: step-counter;
}

.usage-steps li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.usage-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.framework-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.framework-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.framework-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.framework-description {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Challenges and solutions grids */
.challenges {
    background: #f9fafb;
}

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

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

.challenge-card:hover {
    transform: translateY(-4px);
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.challenge-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.solution-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-buttons {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}