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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --primary-color: #1E8449;
    --secondary-color: #145A32;
    --accent-color: #27AE60;
    --teal-color: #1E8449;
    --text-dark: #1a1a1a;
    --text-light: #cccccc;
    --text-white: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --bg-light: #2a2a2a;
    --bg-white: #ffffff;
    --bg-card: #252525;
    --border-color: #3a3a3a;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: var(--bg-dark);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.logo-tag {
    color: var(--teal-color);
    font-weight: 600;
}

.logo-cor {
    color: var(--teal-color);
    font-weight: 600;
}

.logo-techx {
    color: var(--text-white);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-contact {
    background: var(--primary-color);
    color: var(--bg-dark) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: 600;
}

.btn-contact:hover {
    background: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    will-change: opacity, transform;
}

.hero.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px) scale(0.98);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero.fading::after {
    opacity: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 4rem 0;
    position: relative;
}

/* Ensure sections stack properly above hero */
section:not(.hero) {
    z-index: 2;
    background: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Three Levels Section */
.three-levels {
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
    margin-top: -1px; /* Overlap slightly to ensure seamless transition */
}

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

.level-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

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

.level-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.level-icon img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.level-card:hover .level-icon {
    transform: scale(1.1) rotate(5deg);
    animation: pulse 1s ease-in-out infinite;
}

.level-card:hover .level-icon img {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.level-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.level-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.level-card p {
    color: var(--text-light);
}

/* Key Practices */
.key-practices {
    background: var(--bg-darker);
}

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

.practice-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.practice-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.practice-icon img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.practice-card:hover .practice-icon {
    transform: scale(1.15) rotate(-5deg);
    animation: pulse 1s ease-in-out infinite;
}

.practice-card:hover .practice-icon img {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

.practice-card p {
    color: var(--text-light);
}

.practice-card:hover {
    transform: translateX(5px);
}

.practice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.practice-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.practice-link:hover {
    transform: translateX(5px);
}

/* Solutions Preview */
.solutions-preview {
    background: var(--bg-dark);
}

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

.solution-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.solution-card p {
    color: var(--text-light);
}

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

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

/* Industries Preview */
.industries-preview {
    background: var(--bg-darker);
}

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

.industry-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: block;
}

.industry-item:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: white;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Page */
.services-main {
    padding: 4rem 0;
}

.service-category {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.service-category-content p {
    color: var(--text-light);
}

.service-category-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.service-list li {
    padding: 0.75rem;
    background: var(--bg-dark);
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
    color: var(--text-white);
}

/* Industries Page */
.industries-main {
    padding: 4rem 0;
}

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

.industry-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.industry-card p {
    color: var(--text-light);
}

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

.industry-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.industry-icon img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(32, 178, 170, 0.3));
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) rotate(-5deg);
    animation: pulse 1s ease-in-out infinite;
}

.industry-card:hover .industry-icon img {
    filter: drop-shadow(0 0 12px rgba(32, 178, 170, 0.6));
    transform: scale(1.05);
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.industry-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* About Page */
.about-main {
    padding: 4rem 0;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-section h2 {
    color: var(--primary-color);
}

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

.approach-item {
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.approach-item p {
    color: var(--text-light);
}

.approach-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.why-list {
    list-style: none;
    margin-top: 1.5rem;
}

.why-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-card);
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.value-item p {
    color: var(--text-light);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-main {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    color: var(--text-light);
}

.contact-details {
    margin-top: 2rem;
}

.contact-detail-item {
    margin-bottom: 2rem;
}

.contact-detail-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-dark);
    color: var(--text-white);
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Solutions Page */
.solutions-main {
    padding: 4rem 0;
}

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

.solution-card-detailed {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.solution-card-detailed p {
    color: var(--text-light);
}

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

.solution-card-detailed h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.solution-subtitle {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.solution-features {
    list-style: none;
    margin-top: 1rem;
}

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

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

/* Insights Page */
.insights-main {
    padding: 4rem 0;
}

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

.insight-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.insight-card h3 {
    color: var(--text-white);
}

.insight-card p {
    color: var(--text-light);
}

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

.insight-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.insight-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.insight-link:hover {
    transform: translateX(5px);
}

.insight-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.insight-date,
.insight-read-time {
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    background: var(--bg-card);
    color: var(--text-white);
}

/* Blog Post Page */
.blog-header {
    text-align: center;
}

.blog-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-author,
.blog-date,
.blog-read-time {
    opacity: 0.9;
}

.blog-content {
    padding: 4rem 0;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.blog-excerpt {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 3rem;
}

.blog-excerpt p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
}

.blog-body {
    line-height: 1.8;
    color: var(--text-light);
}

.blog-body h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.blog-body h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-body ol,
.blog-body ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-body li {
    margin-bottom: 0.5rem;
}

.blog-body code {
    background: var(--bg-card);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
}

.blog-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Privacy Policy Page */
.privacy-content {
    padding: 4rem 0;
}

.privacy-policy {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.policy-section h2:first-child {
    margin-top: 0;
}

.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.policy-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    list-style-type: disc;
}

.policy-section li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.policy-section li strong {
    color: var(--text-white);
}

.contact-info-box {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
}

.contact-info-box p {
    margin-bottom: 0.8rem;
}

.contact-info-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Careers Page */
.careers-main {
    padding: 4rem 0;
}

.careers-intro {
    margin-bottom: 4rem;
}

.careers-intro h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.careers-intro > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.benefit-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    border: 1px solid var(--border-color);
}

.benefit-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.open-positions {
    margin-bottom: 4rem;
}

.open-positions h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.job-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title-section h3 {
    margin-bottom: 1rem;
}

.job-title-section h3 a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.job-title-section h3 a:hover {
    color: var(--primary-color);
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.job-department,
.job-location,
.job-type {
    padding: 0.3rem 0.8rem;
    background: var(--bg-dark);
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.job-department {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.job-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.job-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.no-jobs {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.no-jobs p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.no-jobs a {
    color: var(--primary-color);
    text-decoration: none;
}

.no-jobs a:hover {
    text-decoration: underline;
}

.general-application {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.general-application h2 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.general-application p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Job Detail Page */
.job-content {
    padding: 4rem 0;
}

.job-header-detail {
    text-align: center;
}

.job-header-detail h1 {
    margin-bottom: 1.5rem;
}

.job-meta-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.job-meta-large .job-department,
.job-meta-large .job-location,
.job-meta-large .job-type,
.job-meta-large .job-date {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.job-meta-large .job-department {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.job-detail {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.job-description-section,
.job-requirements-section,
.job-responsibilities-section,
.job-apply-section {
    margin-bottom: 3rem;
}

.job-detail h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.job-detail p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.requirements-list,
.responsibilities-list {
    list-style: none;
    margin-left: 0;
    margin-bottom: 1.5rem;
}

.requirements-list li,
.responsibilities-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.requirements-list li:before,
.responsibilities-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.job-apply-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    border: 1px solid var(--border-color);
}

.job-apply-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.job-apply-section a:hover {
    text-decoration: underline;
}

.apply-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section h3 .logo-tag,
.footer-section h3 .logo-cor {
    color: var(--teal-color);
}

.footer-section h3 .logo-techx {
    color: var(--text-white);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

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

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .levels-grid,
    .practices-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Enhanced hover effects */
.level-card,
.practice-card,
.solution-card,
.industry-card,
.insight-card,
.solution-card-detailed {
    position: relative;
    overflow: hidden;
}

.level-card::before,
.practice-card::before,
.solution-card::before,
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.level-card:hover::before,
.practice-card:hover::before,
.solution-card:hover::before,
.industry-card:hover::before {
    left: 100%;
}

/* Hero animation */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Button animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Logo animation */
.logo {
    transition: transform 0.3s ease;
}

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

.logo:hover .logo-tag,
.logo:hover .logo-cor {
    animation: pulse 1s ease-in-out infinite;
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.expect-item {
    padding: 1.5rem;
    background: var(--bg-dark);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.expect-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    font-weight: 600;
}

.expect-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.expect-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(30, 132, 73, 0.2);
}

.expect-item .icon-box {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 24px;
    transition: all 0.3s;
}

.expect-item:hover .icon-box {
    background: var(--accent-color);
    transform: scale(1.1);
}

