.elementor-802 .elementor-element.elementor-element-543706a > .elementor-background-overlay{background-color:#004949;opacity:1;}/* Start custom CSS for html, class: .elementor-element-703a01c */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #004949;
    --primary-light: #006666;
    --primary-dark: #002828;
    --accent-color: #00a3a3;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #888888;
    --bg-light: #f8fafa;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-light) 100%);
    --gradient-green: linear-gradient(135deg, rgba(0, 73, 73, 0.8) 0%, rgba(0, 102, 102, 0.6) 100%);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.gradient-text-light {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-green);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-left {
    color: white;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
    color: #ffd700;
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-left p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button.primary {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: #f0f9ff;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 3;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: white;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7));
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: white;
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% { transform: translateY(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(40px); opacity: 0; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 73, 73, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 73, 73, 0.2);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background: var(--bg-light);
}

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

.stat-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
}

.stat-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(0, 73, 73, 0.2);
}

.stat-icon-wrapper {
    margin-bottom: 24px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--primary-light);
    font-weight: 700;
    margin-left: 3px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 12px 0 8px;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Job Categories Section */
.job-categories {
    padding: 120px 0;
    background: var(--bg-white);
}

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

.category-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    transform: translateY(20px);
    opacity: 0;
    display: flex;
    flex-direction: column;
}

.category-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(0, 73, 73, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-jobs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.job-tag {
    background: rgba(0, 73, 73, 0.05);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.job-tag:hover {
    background: rgba(0, 73, 73, 0.1);
    transform: translateY(-2px);
}

.job-tag i {
    font-size: 0.9rem;
    color: var(--primary-light);
}

.category-description p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.category-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.salary-range {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.salary-range i {
    font-size: 1rem;
}

/* Employer Expectations Section */
.employer-expectations {
    padding: 120px 0;
    background: var(--bg-light);
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.expectation-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid var(--border-light);
    transform: translateY(20px);
    opacity: 0;
    display: flex;
    flex-direction: column;
}

.expectation-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.expectation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(0, 73, 73, 0.2);
}

.expectation-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.expectation-card:hover .expectation-icon {
    transform: scale(1.1);
}

.expectation-icon i {
    font-size: 2rem;
    color: white;
}

.expectation-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.expectation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    flex: 1;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.list-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Tips Section */
.tips {
    padding: 120px 0;
    background: var(--bg-white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.tip-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid var(--border-light);
    transform: translateY(20px);
    opacity: 0;
    display: flex;
    flex-direction: column;
}

.tip-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(0, 73, 73, 0.2);
}

.tip-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.tip-card:hover .tip-icon {
    transform: scale(1.1);
}

.tip-icon i {
    font-size: 2rem;
    color: white;
}

.tip-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1;
}

.tip-footer {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.tip-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Post Jobs Section */
.post-jobs {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
}

.post-jobs-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
}

.post-jobs-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.post-jobs-content {
    flex: 1;
    color: white;
}

.post-jobs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-jobs-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.post-jobs-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.7;
}

.post-jobs-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature i {
    color: #ffd700;
    font-size: 1rem;
}

.post-jobs-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-jobs-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: transform 0.3s ease;
}

.post-jobs-card:hover .post-jobs-icon {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-left p {
        max-width: 100%;
    }

    .stats-grid,
    .categories-grid,
    .expectations-grid,
    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .post-jobs-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: 80vh;
    }

    .hero-left h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-left p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .section-header p {
        font-size: 1rem;
    }

    .stats,
    .job-categories,
    .employer-expectations,
    .tips,
    .post-jobs {
        padding: 80px 0;
    }

    .stats-grid,
    .categories-grid,
    .expectations-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .post-jobs-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: 70vh;
    }

    .hero-left h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-left p {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .stats,
    .job-categories,
    .employer-expectations,
    .tips,
    .post-jobs {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stat-card,
    .category-card,
    .expectation-card,
    .tip-card {
        padding: 24px;
    }

    .stat-icon,
    .category-icon,
    .expectation-icon,
    .tip-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i,
    .category-icon i,
    .expectation-icon i,
    .tip-icon i {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

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

    .category-title h3,
    .expectation-card h3,
    .tip-card h3 {
        font-size: 1.3rem;
    }

    .category-description p,
    .expectation-list,
    .tip-card p {
        font-size: 0.9rem;
    }

    .post-jobs-card {
        padding: 24px;
    }

    .post-jobs-content h2 {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }

    .post-jobs-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Accessibility */
@media (prefers-contrast: high) {
    .stat-card,
    .category-card,
    .expectation-card,
    .tip-card,
    .post-jobs-card {
        border: 2px solid var(--primary-color);
    }

    .cta-button {
        border: 2px solid var(--primary-color);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.cta-button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero {
        background: var(--bg-white) !important;
        color: var(--text-dark) !important;
        min-height: auto !important;
    }

    .hero-left h1,
    .section-header h2 {
        color: var(--primary-color) !important;
    }

    .hero-overlay {
        display: none;
    }
}/* End custom CSS */