* {
    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: 90vw;
        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: 90vw;
    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% 3rem;
    position: relative;
    overflow: hidden;
}



@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}



@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: 1rem 0;
    flex-wrap: wrap;
}
.executive-proof {
    display: flex;
    gap: 2rem;
    margin: 1rem 0 0 0;
    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: 90vw;
    margin: 0 auto;
}

.trust-bar h3 {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.trust-logos {
    /*display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem 3rem;
    flex-wrap: wrap;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center all cards horizontally */
    gap: 20px;
}

.trust-logo {
    /*font-size: 1.5rem;
    color: var(--text-gray);
    opacity: 0.6;
    transition: opacity 0.3s;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes bottom text down */
    align-items: center; /* center content horizontally */
    /*width: 150px;*/ /* adjust as needed */
    /*height: 150px;*/ /* ensures equal height for alignment */
    text-align: center;
}

    .trust-logo:hover {
        opacity: 1;        
    }
    .trust-logo img {
        /*width: 6rem;*/
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
        margin: auto; /* centers image vertically */
        width: 80%;
    }
    .trust-logo:hover img:hover {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

.trust-client {
    /*font-size: 0.8rem;
    display: none;*/
    margin-top: auto; /* forces it to bottom */
    font-size: 14px;
    color: #666;
    font-weight: 500;
}
/* Container */
.container {
    max-width: 90vw;
    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(--white);
}

.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: 90vw;
    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, 75%);
    color: var(--white);
    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;
    }






/* 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(--light-gray);
}

.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;
    }

.thanasi-footer-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.thanasi-footer-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a2540 0%, #1475BC 50%, #0d3a5f 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .thanasi-footer-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
        opacity: 0.4;
        pointer-events: none;
    }

    .thanasi-footer-wrapper .footer-top {
        background: rgba(0,0,0,0.2);
        padding: 60px 20px;
        position: relative;
        z-index: 2;
    }

    .thanasi-footer-wrapper .footer-container {
        max-width: 90vw;
        margin: 0 auto;
    }

    .thanasi-footer-wrapper .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
        gap: 50px;
        margin-bottom: 50px;
    }

    .thanasi-footer-wrapper .footer-column h3 {
        font-size: 18px;
        font-weight: 700;
        color: #39B54A;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 12px;
    }

        .thanasi-footer-wrapper .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #39B54A;
            border-radius: 2px;
        }

    .thanasi-footer-wrapper .footer-brand {
        padding-right: 30px;
    }

    .thanasi-footer-wrapper .footer-logo {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .thanasi-footer-wrapper .footer-logo-icon {
        width: 60px;
        height: 60px;
        /*background: rgba(255,255,255,0.1);*/
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #39B54A;
     /*   border: 2px solid rgba(57, 181, 74, 0.3);*/
    }

    .thanasi-footer-wrapper .footer-logo-text {
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 1px;
    }

    .thanasi-footer-wrapper .footer-tagline {
        font-size: 13px;
        color: rgba(255,255,255,0.7);
        line-height: 1.8;
        margin-bottom: 25px;
        font-style: italic;
    }

    .thanasi-footer-wrapper .footer-description {
        font-size: 14px;
        color: rgba(255,255,255,0.85);
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .thanasi-footer-wrapper .footer-links {
        list-style: none;
    }

        .thanasi-footer-wrapper .footer-links li {
            margin-bottom: 12px;
            margin-left: -1rem;
        }

        .thanasi-footer-wrapper .footer-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            padding-left: 0;
        }

            .thanasi-footer-wrapper .footer-links a::before {
                content: '\f105';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                color: #39B54A;
                opacity: 0;
                transform: translateX(-10px);
                transition: all 0.3s ease;
            }

            .thanasi-footer-wrapper .footer-links a:hover {
                color: #39B54A;
                padding-left: 15px;
            }

                .thanasi-footer-wrapper .footer-links a:hover::before {
                    opacity: 1;
                    transform: translateX(0);
                }

    .thanasi-footer-wrapper .contact-info {
        list-style: none;
    }

    .thanasi-footer-wrapper .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        color: rgba(255,255,255,0.85);
        font-size: 14px;
        line-height: 1.7;
    }

        .thanasi-footer-wrapper .contact-item i {
            color: #39B54A;
            font-size: 18px;
            margin-top: 3px;
            min-width: 20px;
        }

        .thanasi-footer-wrapper .contact-item a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .thanasi-footer-wrapper .contact-item a:hover {
                color: #39B54A;
            }

    .thanasi-footer-wrapper .global-presence {
        margin-top: 25px;
    }

    .thanasi-footer-wrapper .presence-title {
        font-size: 15px;
        font-weight: 600;
        color: #39B54A;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .thanasi-footer-wrapper .presence-countries {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .thanasi-footer-wrapper .country-tag {
        background: rgba(57, 181, 74, 0.15);
        border: 1px solid rgba(57, 181, 74, 0.3);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        color: rgba(255,255,255,0.9);
        transition: all 0.3s ease;
    }

        .thanasi-footer-wrapper .country-tag:hover {
            background: rgba(57, 181, 74, 0.25);
            border-color: #39B54A;
            transform: translateY(-2px);
        }

    .thanasi-footer-wrapper .app-downloads {
        margin-top: 25px;
    }

    .thanasi-footer-wrapper .download-title {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255,255,255,0.9);
        margin-bottom: 15px;
    }

    .thanasi-footer-wrapper .download-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .thanasi-footer-wrapper .download-btn {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 8px;
        padding: 10px 18px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 13px;
    }

        .thanasi-footer-wrapper .download-btn:hover {
            background: rgba(57, 181, 74, 0.2);
            border-color: #39B54A;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(57, 181, 74, 0.3);
        }

        .thanasi-footer-wrapper .download-btn i {
            font-size: 24px;
        }

    .thanasi-footer-wrapper .download-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .thanasi-footer-wrapper .download-label {
        font-size: 10px;
        color: rgba(255,255,255,0.7);
    }

    .thanasi-footer-wrapper .download-store {
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
    }

    .thanasi-footer-wrapper .social-section {
        margin-top: 30px;
    }

    .thanasi-footer-wrapper .social-title {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255,255,255,0.9);
        margin-bottom: 15px;
    }

    .thanasi-footer-wrapper .social-links {
        display: flex;
        gap: 12px;
    }

    .thanasi-footer-wrapper .social-link {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

        .thanasi-footer-wrapper .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: #39B54A;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
            z-index: 0;
        }

        .thanasi-footer-wrapper .social-link:hover::before {
            width: 100%;
            height: 100%;
        }

        .thanasi-footer-wrapper .social-link i {
            position: relative;
            z-index: 1;
        }

        .thanasi-footer-wrapper .social-link:hover {
            border-color: #39B54A;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(57, 181, 74, 0.4);
        }

    .thanasi-footer-wrapper .footer-divider {
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
        margin: 40px 0;
    }

    .thanasi-footer-wrapper .footer-bottom {
        background: rgba(0,0,0,0.3);
        padding: 30px 20px;
        position: relative;
        z-index: 2;
    }

    .thanasi-footer-wrapper .footer-bottom-content {
        max-width: 90vw;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .thanasi-footer-wrapper .copyright {
        font-size: 14px;
        color: rgba(255,255,255,0.7);
    }

        .thanasi-footer-wrapper .copyright strong {
            color: #39B54A;
            font-weight: 600;
        }

    .thanasi-footer-wrapper .footer-bottom-links {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

        .thanasi-footer-wrapper .footer-bottom-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
            position: relative;
        }

            .thanasi-footer-wrapper .footer-bottom-links a::after {
                content: '';
                position: absolute;
                bottom: -3px;
                left: 0;
                width: 0;
                height: 2px;
                background: #39B54A;
                transition: width 0.3s ease;
            }

            .thanasi-footer-wrapper .footer-bottom-links a:hover {
                color: #39B54A;
            }

                .thanasi-footer-wrapper .footer-bottom-links a:hover::after {
                    width: 100%;
                }

    .thanasi-footer-wrapper .certifications {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .thanasi-footer-wrapper .cert-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(57, 181, 74, 0.1);
        padding: 8px 15px;
        border-radius: 20px;
        border: 1px solid rgba(57, 181, 74, 0.3);
        font-size: 12px;
        color: rgba(255,255,255,0.9);
    }

        .thanasi-footer-wrapper .cert-badge i {
            color: #39B54A;
            font-size: 16px;
        }

    .thanasi-footer-wrapper .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #1475BC 0%, #39B54A 100%);
        border: none;
        border-radius: 50%;
        color: #ffffff;
        font-size: 20px;
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(57, 181, 74, 0.4);
        transition: all 0.3s ease;
        z-index: 1000;
    }

        .thanasi-footer-wrapper .back-to-top.show {
            display: flex;
        }

        .thanasi-footer-wrapper .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(57, 181, 74, 0.6);
        }

@media (max-width: 1200px) {
    .thanasi-footer-wrapper .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .thanasi-footer-wrapper .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .thanasi-footer-wrapper .footer-top {
        padding: 40px 20px;
    }

    .thanasi-footer-wrapper .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .thanasi-footer-wrapper .footer-brand {
        padding-right: 0;
    }

    .thanasi-footer-wrapper .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .thanasi-footer-wrapper .footer-bottom-links {
        justify-content: center;
    }

    .thanasi-footer-wrapper .certifications {
        justify-content: center;
    }

    .thanasi-footer-wrapper .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .thanasi-footer-wrapper .download-buttons {
        flex-direction: column;
    }

    .thanasi-footer-wrapper .download-btn {
        width: 100%;
        justify-content: center;
    }

    .thanasi-footer-wrapper .social-links {
        justify-content: center;
    }
}

/* 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;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

@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;
}