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

:root {
    --primary-navy: #06335E;
    --primary-green: #4EA71C;
    --dark-navy: #041f3a;
    --light-navy: #0a4a7f;
    --dark-green: #3d8516;
    --light-green: #5ec123;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --text-gray: #6c757d;
    --bg-light: #ffffff;
    --bg-dark: #0d1117;
    --shadow-sm: 0 2px 8px rgba(6, 51, 94, 0.1);
    --shadow-md: 0 4px 16px rgba(6, 51, 94, 0.15);
    --shadow-lg: 0 8px 32px rgba(6, 51, 94, 0.2);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-text {
    color: var(--primary-navy);
}

.logo-ai {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    box-shadow: 0 4px 16px rgba(78, 167, 28, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(78, 167, 28, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(78, 167, 28, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-navy);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: -80px;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 40px;
    right: -120px;
    animation-delay: 0.5s;
}

.card-3 {
    top: 160px;
    right: -40px;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    font-size: 32px;
}

.card-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
}

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

.feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: white;
}

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

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

.benefit-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.benefit-details h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: white;
}

.benefit-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
}

.stat-item {
    margin-bottom: 40px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-value {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    text-align: center;
}

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

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

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

.cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

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

/* Footer */
.footer {
    background: var(--primary-navy);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-green);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 140px 0 80px;
    background: white;
    min-height: 100vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.privacy-updated {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 48px;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 48px;
}

.privacy-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    margin-top: 32px;
}

.privacy-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
    margin-top: 24px;
}

.privacy-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-section ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.privacy-section li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 12px;
}

.privacy-section li strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.contact-list {
    list-style: none;
    margin-left: 0;
}

.contact-list li {
    margin-bottom: 8px;
}

.privacy-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 2px solid #e9ecef;
}

.privacy-footer p {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
}

/* Make logo clickable */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Careers Page Styles */
.careers-page {
    padding: 140px 0 80px;
    background: white;
    min-height: 100vh;
}

.careers-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.careers-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 24px;
}

.careers-subtitle {
    font-size: 22px;
    color: var(--text-gray);
    line-height: 1.6;
}

.careers-content {
    max-width: 1200px;
    margin: 0 auto;
}

.careers-intro {
    margin-bottom: 80px;
}

.careers-intro h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.job-openings {
    margin-bottom: 80px;
}

.job-openings h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 48px;
}

.no-openings {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.no-openings-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.no-openings h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.no-openings p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.no-openings .btn {
    margin-top: 24px;
}

.careers-cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    color: white;
}

.careers-cta h2 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.careers-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.careers-cta .btn-primary {
    background: var(--primary-green);
}

.careers-cta .btn-secondary {
    border-color: white;
    color: white;
}

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

@media (max-width: 768px) {
    .careers-title {
        font-size: 42px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .careers-cta {
        padding: 60px 30px;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 140px 0 80px;
    background: white;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 24px;
}

.contact-subtitle {
    font-size: 22px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid #e9ecef;
}

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

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

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

.form-group label {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(78, 167, 28, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-gray);
    margin: 0;
}

.info-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-navy);
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 42px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}