* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #39B54A;
    --primary-blue: #1475BC;
    --dark-blue: #0A2540;
    --light-gray: #f6f9fc8a;/*#F6F9FC*/
    --text-dark: #1A1F36;
    --text-gray: #6B7280;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #1475BC 0%, #39B54A 100%);
    --gradient-2: linear-gradient(135deg, rgba(20, 117, 188, 0.1) 0%, rgba(57, 181, 74, 0.1) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --medium-gray: #6C757D;
    --text-dark: #212529;
    --gradient-primary: linear-gradient(135deg, #1475BC 0%, #39B54A 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(20, 117, 188, 0.95) 0%, rgba(57, 181, 74, 0.95) 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}
/* Navigation */
.top-bar {
    background: var(--dark-blue);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 1%;
    }

    .top-bar a, .top-bar span {
        color: var(--white);
        text-decoration: none;
        margin: 0 1rem;
        cursor: pointer;
    }

        .top-bar a:hover, .top-bar span:hover {
            color: var(--primary-green);
        }

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-diamond {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    transform: rotate(45deg);
    position: relative;
    box-shadow: 0 4px 15px rgba(20, 117, 188, 0.3);
}

    .logo-diamond::before {
        content: 'T';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
    }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
    letter-spacing: 0.2rem;
}
.logo-img {
    width: 4.5rem;
}

.thanasi-slogan-text {
    font-size: 0.8rem;
    display: block;
    letter-spacing: normal;
    text-transform: uppercase;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0px;
}

    .nav-menu li {
        position: relative;
    }
.call-block > a {
    background: transparent;
}
.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    /*font-weight: 500;*/
    transition: color 0.3s;
    position: relative;
    font-size: 1rem;
}
        .nav-menu a:hover {
            color: var(--primary-blue);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-green);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.5s ease;
        }

        .nav-menu a:hover::after {
            transform: scaleX(1);
        }
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.cta-button {
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(20, 117, 188, 0.4);
    }

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A2540 0%, #1475BC 50%, #39B54A 100%);
    color: var(--white);
    padding: 3rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 60%;
        height: 200%;
        background: radial-gradient(circle, rgba(57, 181, 74, 0.1) 0%, transparent 70%);
        animation: float 20s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 2;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.executive-proof {
    display: flex;
    gap: 2rem;
    margin-bottom: -1.5rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.proof-icon {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--white) !important;
    color: var(--primary-blue) !important;
    padding: 1rem 2rem !important;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-primary:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

.btn-secondary {
    background: transparent !important;
    color: var(--white);
    border: 2px solid var(--white) !important;
    padding: 1rem 2rem !important;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-secondary:hover {
        background: var(--white) !important;
        color: var(--primary-blue) !important;
    }

.hero-visual {
    flex: 1;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

    .visual-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

    .visual-card i {
        font-size: 2rem;
        color: var(--white);
        margin-bottom: 0.5rem;
    }

    .visual-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .visual-card p {
        font-size: 0.875rem;
        opacity: 0.9;
    }

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 2rem 5%;
    text-align: center;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-bar h3 {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 1.5rem;
    color: var(--text-gray);
    opacity: 0.6;
    transition: opacity 0.3s;
}

    .trust-logo:hover {
        opacity: 1;        
    }
    .trust-logo img {
        width: 6rem;
    }
    .trust-logo:hover img:hover {
        transform: scale(1.4);
        transition: all 0.3s ease;
    }

.trust-client {
    font-size: 0.8rem;
    display: none;
}
/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Section Styling */
section {
    padding: 5rem 5%;
}

.section-header {
    text-align: center;
    /*max-width: 800px;*/
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* Business Challenges Section */
.challenges {
    padding: 100px 20px;
    background: var(--light-gray);
}

.section-container {
    max-width: 1320px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(57, 181, 74, 0.1), rgba(20, 117, 188, 0.1));
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23vw, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.challenge-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid #E9ECEF;
    position: relative;
    overflow: hidden;
}

    .challenge-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: var(--gradient-primary);
        transition: height 0.3s;
    }

    .challenge-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

        .challenge-card:hover::before {
            height: 100%;
        }

.challenge-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), #2ea842);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.challenge-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.challenge-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.results-highlight {
    background: linear-gradient(135deg, rgba(57, 181, 74, 0.1), rgba(20, 117, 188, 0.05));
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

    .results-highlight strong {
        color: var(--primary-color);
        font-weight: 700;
    }

.solution-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    padding-top: 2rem;
    text-decoration: none;
}

    .solution-arrow i {
        transition: transform 0.3s ease;
    }

.challenge-card:hover .solution-arrow i {
    transform: translateX(5px);
}

/* Case Study Highlight */
.case-study {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 6rem 3rem;
    position: relative;
    display: flex;
}

    .case-study::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
        opacity: 0.3;
        pointer-events: none;
    }

.case-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.case-study h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.case-client {
    display: inline-block;
    background: rgba(57, 181, 74, 0.2);
    color: var(--primary-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.case-study p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1.2rem;
}

.case-study .case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

    .case-metrics .metric {
        text-align: center;
        padding: 1.8rem 1rem;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.15);
    }

    .case-metrics .metric-value {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 0.5rem;
    }

    .case-metrics .metric-label {
        font-size: 0.9rem;
        opacity: 0.95;
    }

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        background: var(--gradient-2);
    }

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
}

.solution-icon i {
    font-size: 2rem;
    color: var(--white);
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-card p {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

/* Industries Section */
.industries {
    background: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

    .industry-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.industry-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .industry-icon i {
        font-size: 1.5rem;
        color: var(--primary-blue);
    }

.industry-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Case Studies */
.case-study-highlight {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 4rem;
    border-radius: 15px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

    .case-study-highlight::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 50%;
        height: 200%;
        background: radial-gradient(circle, rgba(57, 181, 74, 0.1) 0%, transparent 70%);
    }

.case-study-content {
    position: relative;
    z-index: 1;
}

.case-study-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.case-study-highlight p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.case-metrics {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.metric-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stars {
    color: #FFB800;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Why Choose Section */
.why-choose {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23vw, 1fr));
    gap: 2rem;
}

.why-card {
    padding: 2rem;
    border-radius: 10px;
    background: var(--gradient-2);
    border: 1px solid rgba(20, 117, 188, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        background: var(--white);
        border-color: var(--primary-blue);
    }

.why-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    color: var(--white);
    padding: 5rem 5%;
    text-align: center;
    /*position: relative;*/
    overflow: hidden;
}

    .cta-section::before {
        /*content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;*/
    }

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}
.btn-white {
    background: var(--white) !important;
    color: var(--primary-blue) !important;
}

    .btn-white:hover {
        background: var(--light-gray) !important;
    }
/* Careers Section */
.careers-section {
    padding: 120px 0;
    background: var(--white);
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.careers-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

    .careers-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.careers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

    .careers-overlay h3 {
        font-size: 42px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 16px;
    }

    .careers-overlay p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
    }

.careers-info h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 24px;
}

.careers-list {
    list-style: none;
    margin-bottom: 32px;
}

    .careers-list li {
        padding: 16px 0;
        border-bottom: 1px solid #E8EDF2;
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 16px;
        color: var(--text-primary);
    }

    .careers-list i {
        color: var(--primary-green);
        font-size: 20px;
    }

.open-positions {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

    .open-positions h4 {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark-navy);
        margin-bottom: 16px;
    }

.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .position-item:last-child {
        border-bottom: none;
    }

.position-title {
    font-weight: 600;
    color: var(--text-primary);
}

.position-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .resource-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.resource-image {
    height: 200px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .resource-image i {
        font-size: 3rem;
        color: var(--primary-blue);
    }

.resource-content {
    padding: 2rem;
}

.resource-tag {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .read-more:hover {
        gap: 1rem;
    }

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.footer-column ul {
    list-style: none;
    padding-left: 0rem;
}

    .footer-column ul li {
        margin-bottom: 0.75rem;
    }

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-column a:hover {
        color: var(--primary-green);
    }

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-diamond {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    transform: rotate(45deg);
    position: relative;
}

    .footer-diamond::before {
        content: 'T';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--white);
    }

.footer-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

    .social-link:hover {
        background: var(--primary-green);
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .careers-content {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 1rem;
    }

        .nav-menu.active {
            display: flex;
        }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }
    .case-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .challenges-grid,
    .solutions-grid,
    .industries-grid,
    .testimonials-grid,
    .why-grid,
    .resources-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-container {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        padding: 2rem;
    }

        .nav-menu.active {
            display: flex;
        }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats, .hero-cta {
        justify-content: center;
    }

    .case-metrics {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

        .nav-menu.active {
            display: flex;
        }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats, .hero-cta {
        justify-content: center;
    }

    .case-metrics {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

        .nav-menu.active {
            display: flex;
        }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-logos {
        gap: 2rem;
    }

    .case-metrics {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center;
    }

    .top-bar a {
        margin: 0.25rem 0.5rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

        .nav-menu.active {
            display: flex;
        }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-stats,
    .hero-cta {
        justify-content: center;
    }

    .case-study-highlight {
        padding: 2rem;
    }

    .case-metrics {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

        .nav-menu.active {
            display: flex;
        }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 5% 2rem;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .case-study-highlight {
        padding: 2rem;
    }

    .case-metrics {
        gap: 1.5rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

        .nav-menu.active {
            display: flex;
        }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .loading.visible {
        opacity: 1;
        transform: translateY(0);
    }

div#chatFormError {
    font-size: 0.8rem;
}