/* Asciendo Recruitment Page - MODERNIZED, LESS PURPLE, CLEANER */

/* Import Inter font for brand consistency */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #444;
    font-size: 16px;
    line-height: 1.5;
    background: #ffffff;
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    color: #222;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
h3 { font-size: 1.4rem; font-weight: 600; }

p, li {
    line-height: 1.5;
    color: #555;
    margin-bottom: 1rem;
}

a {
    color: #4facfe;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #00c6ff;
}

/* Buttons */
.btn-primary, .btn-secondary {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s ease;
}

.btn-primary {
    color: #fff;
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 50%, #4facfe 100%);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(65, 132, 234, 0.2);
}

.btn-primary:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #4facfe;
    border: 2px solid #4facfe;
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.15);
}

.btn-secondary:hover {
    background: #4facfe;
    color: white;
    transform: translateY(-2px);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: #444;
    font-weight: 500;
}

/* --- HERO SECTION --- */
.hero {
    /* Soft blue, with image overlay option if needed */
    background: linear-gradient(135deg, #f8fcff 0%, #e6f6fd 100%);
    color: #222;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1, .hero-subtitle {
    color: #222;
    text-shadow: none;
}
.hero h1 { font-size: 3.2rem; }
.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Hero image overlay support (optional, demo) */
/*
.hero {
    background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero::before {
    content:"";
    position:absolute;
    inset: 0;
    background: rgba(255,255,255,0.6);
    z-index:1;
}
.hero-content { position: relative; z-index:2; }
*/

/* Value Proposition */
.value-prop {
    padding: 80px 0;
    background-color: #fff;
}
.value-prop h2 { color: #222; }
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fcff;
    border: 1px solid #e6f6fd;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.08);
    border-color: #bce7fd;
}
.value-item h3 {
    color: #4facfe;
    margin-bottom: 1rem;
    font-weight: 600;
}
.value-item p { color: #666; font-size: 0.95rem; }

/* Services */
.services { padding: 80px 0; background: #f8fcff; }
.services h2 { color: #222; }
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.service-card {
    background: #fff;
    color: #222;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e6f6fd;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.06);
    border-color: #bce7fd;
}
.service-card h3 { color: #4facfe; font-weight:600;}
.service-card p { color: #666; margin-bottom: 1.2rem; font-size: 0.95rem;}
.service-card ul { list-style: none; margin-top: 1rem;}
.service-card li {
    padding: 0.4rem 0 0.4rem 1.2rem;
    position: relative;
    color: #444;
    font-size: 0.92rem;
}
.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

/* Process */
.process { padding: 80px 0; background: #fff; }
.process h2 { color: #222; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #f8fcff;
    border-radius: 10px;
    transition: all 0.3s;
}
.step:hover { transform: translateY(-3px);}
.step-number {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}
.step h3 { color: #222; font-size: 1.13rem; }
.step p { color: #666; font-size: 0.94rem; line-height: 1.5; }

/* Social Proof */
.social-proof { padding: 60px 0; background: #f8fcff; }
.social-proof h2 { color:#222; }
.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.credential {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e6f6fd;
}
.credential h3 {
    color: #4facfe;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.credential p { color: #666; font-size: 0.92rem; }

/* FAQ */
.faq { padding: 80px 0; background: #fff; }
.faq h2 { color:#222; }
.faq-items { max-width: 800px; margin: 0 auto; margin-top: 2rem;}
.faq-item {
    background: #f8fcff;
    border: 1px solid #e6f6fd;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item.active { box-shadow: 0 4px 16px rgba(79, 172, 254, 0.10);}
.faq-item h3 {
    padding: 1.2rem 1.5rem;
    margin: 0;
    cursor: pointer;
    background: #f8fcff;
    color: #222;
    position: relative;
    font-size: 1.06rem;
    font-weight: 600;
    transition: all 0.3s;
}
.faq-item h3:hover {
    background: #e6f6fd;
    color: #4facfe;
}
.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #4facfe;
    transition: transform 0.3s ease;
}
.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
    padding: 1.2rem 1.5rem;
    margin: 0;
    display: none;
    background: white;
    color: #555;
    font-size: 0.95rem;
}
.faq-item.active p { display: block; }

/* Contact */
.contact { padding:80px 0; background: #f8fcff; color: #222;}
.contact h2 { color: #222; margin-bottom: 1rem; }
.contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
    color: #555;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e6f6fd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #222;
    font-size: 0.92rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    background: white;
    color: #444;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 0 2px rgba(79, 172, 254, 0.07);
}
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 35px;
}
.contact-alternative {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e6f6fd;
    font-size: 0.97rem;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; }
    h2 { font-size: 1.7rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 1.2rem; }
    .service-cards,
    .process-steps,
    .value-grid,
    .credentials { grid-template-columns: 1fr; }
    .container { padding: 0 12px;}
    .value-prop, .services, .process, .contact, .faq, .social-proof { padding: 48px 0;}
    header { padding: .8rem 0;}
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Focus styles */
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid #4facfe;
    outline-offset: 2px;
}



     /* Base styles from your brand guide */
     body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        color: #444;
        font-size: 16px;
        line-height: 1.5;
        background: #ffffff;
        min-height: 100vh;
        margin: 0;
        padding: 0;
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    a {
        color: #4fa2d5;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    a:hover {
        color: #45beff;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: inherit;
        color: #363636;
        margin-bottom: 1rem;
    }
    p, li {
        line-height: 1.5;
        color: #555;
        margin-bottom: 1rem;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    /* Buttons */
    .btn-primary {
        font-family: "Inter", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        padding: 12px 32px;
        border-radius: 50px;
        color: #fff;
        border: none;
        background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 50%, #4facfe 100%);
        background-size: 200% auto;
        box-shadow: 0 4px 15px rgba(65, 132, 234, 0.75);
        transition: all 0.5s ease;
        display: inline-block;
        cursor: pointer;
    }
    .btn-primary:hover {
        background-position: right center;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
    }
    .btn-secondary {
        font-family: "Inter", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        padding: 12px 32px;
        border-radius: 50px;
        color: #4fa2d5;
        border: 2px solid #4fa2d5;
        background: transparent;
        transition: all 0.3s ease;
        display: inline-block;
    }
    .btn-secondary:hover {
        background: #4fa2d5;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
    }
    /* Header */
    header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 1rem 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .logo {
        font-size: 24px;
        font-weight: 700;
        color: #222;
    }
    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }
    .nav-links a {
        color: #444;
        font-weight: 500;
    }
    /* Hero Section */
    .hero {
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hand-shake-1.jpg');
        background-position: 20% 30%;
        background-repeat: no-repeat;
        background-size: cover; /* This will fill the entire container */
        color: #f1f0f0;
        text-align: center;
        position: relative;
        overflow: hidden;
        min-height: 100vh; /* Ensures full viewport height */
    }

    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #f1f0f0;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        color: #f1f0f0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        
    }
    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    /* Value Proposition */
    .value-prop {
        padding: 80px 0;
        background: #f8f9fa;
    }
    .value-prop h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #454545;
    }
    .value-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    .value-item {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        text-align: center;
    }
    .value-item:hover {
        transform: translateY(-5px);
    }
    .value-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }
    .value-item h3 {
        color: #4fa2d5;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .value-item p {
        color: #555;
    }
    /* Services */
    .services {
        padding: 80px 0;
    }
    .services h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #454545;
    }
    .service-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    .service-card {
        background: linear-gradient(135deg, #4fa2d5 0%, #457dff 100%);
        color: white;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(106, 182, 240, 0.4);
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .service-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        pointer-events: none;
    }
    .service-card:hover {
        transform: translateY(-5px);
    }
    .service-card h3 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .service-card p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 1.5rem;
    }
    .service-card ul {
        list-style: none;
        padding-left: 1rem;
    }
    .service-card li {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.5rem 0;
        position: relative;
        padding-left: 1.5rem;
    }
    .service-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #00f2fe;
        font-weight: bold;
    }
    /* Process */
    .process {
        padding: 80px 0;
        background: #f8f9fa;
    }
    .process h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #454545;
    }
    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    .step {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    .step:hover {
        transform: translateY(-5px);
    }
    .step-number {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #4fa2d5 0%, #00f2fe 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0 auto 1rem;
        position: relative;
    }
    .step-number::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: linear-gradient(135deg, #4fa2d5 0%, #00f2fe 100%);
        opacity: 0.3;
        transform: scale(1.3);
        z-index: -1;
    }
    .step h3 {
        color: #222;
        margin-bottom: 1rem;
    }
    .step p {
        color: #555;
    }
    /* Social Proof */
    .social-proof {
        padding: 80px 0;
    }
    .social-proof h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #454545;
    }
    .credentials {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    .credential {
        text-align: center;
        padding: 2rem;
    }
    .credential-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }
    .credential h3 {
        color: #4fa2d5;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .credential p {
        color: #555;
    }
    /* FAQ */
    .faq {
        padding: 80px 0;
        background: #f8f9fa;
    }
    .faq h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #454545;
    }
    .faq-items {
        max-width: 800px;
        margin: 0 auto;
    }
    .faq-item {
        background: white;
        margin-bottom: 1rem;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .faq-item h3 {
        padding: 1.5rem;
        margin: 0;
        background: linear-gradient(135deg, #4fa2d5 0%, #45beff 100%);
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .faq-item h3:hover {
        background: linear-gradient(135deg, rgb(31, 34, 98) 0%, #4facfe 100%);
    }
    .faq-item p {
        padding: 1.5rem;
        margin: 0;
        display: none;
        background: white;
        color: #555;
    }
    .faq-item.active p {
        display: block;
    }
    /* Contact */
    .contact {
        padding: 80px 0;
        background: #f8f9fa;
        color: #222;
        position: relative;
    }
    .contact h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #222;
    }
    .contact > .container > p {
        text-align: center;
        font-size: 1.25rem;
        margin-bottom: 3rem;
        color: #555;
    }
    /* Contact Options */
    .contact-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }
    .contact-card {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    .contact-card h3 {
        color: #4fa2d5;
        margin-bottom: 1rem;
    }
    .contact-card p {
        margin-bottom: 2rem;
        color: #555;
    }
    /* Contact info */
    .contact-info {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    .contact-info h4 {
        color: #4fa2d5;
        margin-bottom: 1rem;
    }
    .contact-info ul {
        list-style: none;
        margin-bottom: 2rem;
        color: #555;
        padding-left: 1rem;
    }
    .contact-info li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 1.5rem;
    }
    .contact-info li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #4fa2d5;
        font-weight: bold;
    }
    .contact-info li:last-child {
        border-bottom: none;
    }
    /* Footer */
    footer {
        background: #222;
        color: white;
        padding: 2rem 0;
        text-align: center;
        font-size: 0.9rem;
    }
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }
        .hero-subtitle {
            font-size: 1.1rem;
        }
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        .contact-options {
            grid-template-columns: 1fr;
        }
        .nav-links {
            display: none;
        }
        .service-cards,
        .process-steps,
        .value-grid,
        .credentials {
            grid-template-columns: 1fr;
        }
    }