/* Base Styles - UPDATED COLOR SCHEME TO MATCH FRAUD SHIELD SERVICES */
:root {
    --primary: #0056b3;
    --secondary: #20c997;
    --accent: #007bff;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #f5f7fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #1aa179;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary);
}

.btn-primary:hover {
    background-color: #ffffff;
}

.btn-secondary {
    background-color: var(--gray);
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--secondary);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #003d82 100%);
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== GLOBAL CAREER HUB SPECIFIC STYLES ===== */

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* CTA Section */
.cta-section {
    background-color: var(--light);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Jobs Page Styles */
.job-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.job-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary);
}

.job-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.company {
    color: #666;
    font-weight: bold;
    margin-bottom: 5px;
}

.salary {
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 10px;
}

.job-tags {
    margin: 15px 0;
}

.tag {
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 5px;
}

/* Application Form */
.application-form {
    background: var(--light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.process-info {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
}

.process-info ol {
    margin-left: 20px;
}

.process-info li {
    margin-bottom: 10px;
}

/* Verification Process */
.verification-process {
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.step {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.verification-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.payment-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.payment-btn {
    display: block;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    color: white;
    transition: transform 0.3s;
}

.payment-btn:hover {
    transform: translateY(-2px);
}

.payment-btn.skrill { background: #0056b3; }
.payment-btn.coinbase { background: #0052FF; }
.payment-btn.paypal { background: #003087; }

/* Success Page Styles */
.success-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.verification-cta {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.small-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.contact-support {
    margin-top: 30px;
    padding: 20px;
    background: #e8f4f8;
    border-radius: 5px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn, .cta-buttons .btn {
        margin: 5px 0;
    }
    
    .job-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-select {
        width: 100%;
        max-width: 300px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    /* Push content down for fixed header */
    body {
        padding-top: 80px !important;
    }
    
    .hero {
        padding-top: 20px !important;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }
    
    h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    nav ul li {
        margin-left: 10px;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
    
    body {
        padding-top: 70px !important;
    }
    
    .verification-form, .form-section {
        padding: 20px;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
}

/* Add to your existing CSS */
.tag {
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.job-card {
    transition: all 0.3s ease;
}

.job-card[style*="display: none"] {
    opacity: 0;
    transform: scale(0.9);
}

/* Improved CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #003d82 0%, #0056b3 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    min-width: 200px;
    text-align: center;
}

.cta-buttons .btn-primary {
    background-color: #20c997;
    border: 2px solid #20c997;
}

.cta-buttons .btn-primary:hover {
    background-color: #1aa179;
    border-color: #1aa179;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.verification-note {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 20px auto 0;
    font-style: italic;
    line-height: 1.5;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s;
}

.social-btn.whatsapp { background: #25D366; }
.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: #E4405F; }
.social-btn.linkedin { background: #0077B5; }
.social-btn.email { background: #EA4335; }

.social-btn:hover {
    transform: translateY(-2px);
}

/* Fix hero section padding - push content down */
.hero {
    padding: 180px 0 100px !important;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Specific fix for mobile */
@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px !important;
        min-height: 50vh;
    }
    
    .hero .container {
        padding-top: 40px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 130px 0 60px !important;
        min-height: 40vh;
    }
    
    .hero h1 {
        margin-top: 30px !important;
    }
}

/* Mini Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20c997, #1aa179);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-widget.expanded {
    width: 320px;
    height: 420px;
    border-radius: 10px;
    background: white;
}

.chat-icon {
    font-size: 28px;
    color: white;
}

.chat-widget.expanded .chat-icon {
    display: none;
}

.chat-container {
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.chat-widget.expanded .chat-container {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, #20c997, #1aa179);
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
    max-height: 250px;
}

.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 14px;
}

.bot-message {
    background: rgb(33, 61, 49);
    border: 1px solid #ddd;
    align-self: flex-start;
    color: rgb(255, 255, 255);
}

.user-message {
    background: #0056b3;
    color: rgb(255, 255, 255);
    align-self: flex-end;
    margin-left: auto;
}

.chat-input-container {
    padding: 10px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-send {
    background: #20c997;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.chat-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #eee;
    border-top: 1px solid #eee;
}

.chat-option {
    background: white;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    transition: background 0.3s;
}

.chat-option:hover {
    background: #f8f9fa;
}

.close-chat {
    cursor: pointer;
    font-size: 20px;
}

/* Freemium Pricing Styles */
.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.option {
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    background: rgb(244, 248, 246) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.free-option {
    border: 2px solid #20c997;
}

.premium-option {
    border: 2px solid #20c997;
    background: #f0fdf9 !important;
    position: relative;
}

.premium-option::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #20c997;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.option h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.option ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.option li {
    padding: 0.3rem 0;
    text-align: left;
    color: #333 !important;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.hero-note {
    font-size: 1rem;
    color: #20c997 !important;
    margin-top: 1rem;
    font-weight: 600;
    background: transparent !important;
    padding: 0 !important;
    display: block;
}

.btn-outline {
    background: transparent;
    border: 2px solid #20c997;
    color: #20c997;
    font-weight: 600;
}

.btn-outline:hover {
    background: #20c997;
    color: white;
}

.btn-primary {
    background: #20c997;
    border: 2px solid #20c997;
    font-weight: 600;
}

.btn-primary:hover {
    background: #1aa179;
    border-color: #1aa179;
}

/* Ensure text is visible everywhere */
.cta-section h2,
.option h3,
.option li {
    color: #333 !important;
}

.cta-section h2 {
    color: white !important;
}

/* Premium Choice Styles for Apply Page */
.application-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.application-option {
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
}

.application-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.premium-option {
    border-color: #20c997;
    background: #f0fdf9;
    position: relative;
}

.premium-option::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #20c997;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.option-header {
    margin-bottom: 1.5rem;
}

.option-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #20c997;
    margin: 1rem 0;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.option-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.option-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #20c997;
    font-weight: bold;
}

.premium-features li:before {
    color: #20c997;
}

.free-option .btn {
    background: transparent;
    border: 2px solid #20c997;
    color: #20c997;
}

.free-option .btn:hover {
    background: #20c997;
    color: white;
}

.form-section {
    display: none;
}

.active-form {
    display: block;
}

.back-to-options {
    background: #6c757d;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 1rem;
}

.back-to-options:hover {
    background: #5a6268;
}

/* Verification Page Styles */
.verification-content {
    max-width: 1200px;
    margin: 0 auto;
}

.upload-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.section-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: #20c997;
    background: #f0fdf9;
}

.file-input {
    display: none;
}

.upload-placeholder {
    color: #666;
}

.upload-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Payment Main Section */
.payment-main-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

/* Benefits Sidebar */
.benefits-sidebar {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.benefits-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.guarantee-badge {
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #20c997;
    text-align: center;
}

/* Payment Options */
.payment-options-main h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.payment-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
}

.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #20c997;
}

.payment-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.payment-logo {
    font-size: 2rem;
    margin-right: 1rem;
}

.payment-info h4 {
    margin: 0;
    color: #333;
}

.payment-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.payment-action-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.flutterwave-btn {
    background: #0098ff;
    color: white;
}

.flutterwave-btn:hover {
    background: #0080d6;
}

.mpesa-btn {
    background: #00A75A;
    color: white;
}

.mpesa-btn:hover {
    background: #008e4c;
}

.airtel-btn {
    background: #E60A14;
    color: white;
}

.airtel-btn:hover {
    background: #cc0912;
}

.payment-features {
    display: flex;
    justify-content: space-around;
    font-size: 0.8rem;
    color: #666;
}

.payment-security-note {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #666;
}

/* Enhanced Application Styles */
.application-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.path-indicator {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
}

.path-step {
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.path-step.active .step-number {
    background: #20c997;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
}

.path-step.active .step-label {
    color: #20c997;
    font-weight: 600;
}

.premium-badge {
    background: linear-gradient(45deg, #20c997, #1aa179);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.standard-badge {
    background: #6c757d;
}

.enhanced-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.job-title-highlight {
    color: #20c997;
}

.job-details-text {
    color: #666;
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    margin: 2rem 0 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.premium-feature-tag {
    background: #f0fdf9;
    border: 1px solid #20c997;
    color: #20c997;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.verification-prompt {
    background: #f8f9fa;
    border: 2px solid #20c997;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.prompt-title {
    color: #20c997;
    margin-bottom: 1rem;
}

.prompt-description {
    margin-bottom: 1.5rem;
    color: #666;
}

.verification-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.prompt-alternative {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.alternative-link {
    color: #20c997;
    text-decoration: none;
}

.alternative-link:hover {
    text-decoration: underline;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.back-to-options {
    background: #6c757d;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.back-to-options:hover {
    background: #5a6268;
}

.form-subtitle {
    color: #666;
}

.form-section-title {
    margin-bottom: 1.5rem;
    color: #333;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.readonly-field {
    background-color: #f8f9fa;
    font-weight: 600;
}

.file-hint {
    color: #666;
    font-size: 0.8rem;
}

.checkbox-group {
    margin: 1rem 0;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.free-submit-btn {
    background: #00A75A;
    border: none;
}

.free-submit-btn:hover {
    background: #008e4c;
}

.application-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.summary-title {
    color: #20c997;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-testimonial p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 1.5rem 0;
}

.option-recommendation p {
    font-size: 0.9rem;
    color: #20c997;
    font-weight: 600;
    margin: 1.5rem 0;
}

.free-price {
    color: #00A75A;
}

.premium-price {
    color: #20c997;
}

.security-notice {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.security-notice p {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-title {
    color: #20c997;
    margin-bottom: 1rem;
}

.modal-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.modal-benefits {
    margin: 1.5rem 0;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.modal-cancel-btn {
    background: #6c757d;
    color: white;
    border: none;
}

.modal-cancel-btn:hover {
    background: #5a6268;
}

.modal-upgrade-btn {
    border: none;
}

/* File Upload Styles */
.file-upload-area {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: #20c997;
    background: #f0fdf9;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-placeholder {
    pointer-events: none;
}

.upload-icon {
    font-size: 2em;
    margin-bottom: 10px;
    display: block;
}

.file-list {
    display: none;
    text-align: left;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.file-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: bold;
    margin-bottom: 2px;
}

.file-size {
    font-size: 0.8em;
    color: #666;
}

.remove-file {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 14px;
}

.remove-file:hover {
    background: #cc0000;
}

/* Payment Methods Section */
.payment-methods-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
}

.payment-methods-section h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.payment-methods-section h3 {
    color: #20c997;
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.payment-methods-section h4 {
    color: #2c3e50;
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.payment-method-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    border-color: #20c997;
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.15);
}

.payment-method-card.active {
    border-color: #20c997;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0fdf9 100%);
}

.payment-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.payment-method-card h5 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.payment-method-card p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.payment-features-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.payment-features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    display: flex;
    align-items: center;
}

.payment-features-list li:last-child {
    border-bottom: none;
}

.payment-features-list li::before {
    content: "✓";
    color: #20c997;
    font-weight: bold;
    margin-right: 10px;
}

.pay-now-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #20c997, #1aa179);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.pay-now-btn:hover {
    background: linear-gradient(135deg, #1aa179, #168a6f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

.pay-now-btn:active {
    transform: translateY(0);
}

.security-notice {
    background: #e8f4fc;
    border-left: 4px solid #20c997;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 25px;
}

.security-notice p {
    color: #ffffff;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.security-notice p::before {
    content: "🔒";
    margin-right: 10px;
}

/* Payment Method Specific Styles */
.visa-card .payment-icon { color: #1a1f71; }
.mpesa-card .payment-icon { color: #00a74a; }
.airtel-card .payment-icon { color: #e60a2b; }
.bank-card .payment-icon { color: #2c3e50; }

/* Payment Processing Modal */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.payment-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #20c997;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.close-modal {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-options-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-method-card {
        padding: 20px;
    }
    
    .payment-methods-section {
        padding: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .path-indicator {
        flex-direction: column;
        gap: 1rem;
    }
    
    .path-step {
        padding: 0;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .application-options {
        grid-template-columns: 1fr;
    }
    
    .payment-layout {
        grid-template-columns: 1fr;
    }
    
    .payment-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-card-header {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .payment-methods-section {
        padding: 15px;
    }
    
    .payment-method-card {
        padding: 15px;
    }
    
    .pay-now-btn {
        padding: 12px;
    }
}
/* COLOR TRANSFORMATION OVERRIDE */
/* Turns all green elements to orange and updates homepage background */

/* Transform green to orange */
.btn,
.btn-primary,
.btn-primary:hover,
.chat-widget,
.chat-send,
.chat-header,
.premium-option::before,
.btn-outline,
.btn-outline:hover,
.option-price,
.premium-feature-tag,
.prompt-title,
.alternative-link,
.summary-title,
.option-recommendation p,
.premium-price,
.modal-title,
.pay-now-btn,
.pay-now-btn:hover,
.loading-spinner,
.security-notice,
.payment-method-card:hover,
.payment-method-card.active,
.file-upload-area:hover,
.file-upload-area.dragover {
    background-color: #e74c3c !important;
    background: #e74c3c !important;
    border-color: #e74c3c !important;
    color: white !important;
}

/* Specific overrides for text and borders */
.premium-feature-tag,
.alternative-link,
.option-recommendation p,
.premium-price,
.modal-title,
.hero-note,
.job-title-highlight {
    color: #e74c3c !important;
    background: transparent !important;
}

/* Button outline specific */
.btn-outline {
    background: transparent !important;
    color: #e74c3c !important;
    border-color: #e74c3c !important;
}

.btn-outline:hover {
    background: #e74c3c !important;
    color: white !important;
}

/* Loading spinner border */
.loading-spinner {
    border-top-color: #e74c3c !important;
}

/* Security notice border */
.security-notice {
    border-left-color: #e74c3c !important;
}

/* Payment cards */
.payment-method-card:hover,
.payment-method-card.active {
    border-color: #e74c3c !important;
}

/* File upload area */
.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: #e74c3c !important;
    background: #fff8f3 !important;
}

/* HOMEPAGE BACKGROUND UPDATE */
.hero {
    background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%) !important;
}

.cta-section {
    background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%) !important;
}

/* Update any other green accents that might appear */
:root {
    --secondary: #e74c3c !important;
    --accent: #e74c3c !important;
}

/* Ensure all previous green colors are overridden */
[style*="20c997"],
[style*="#20c997"],
[style*="#1aa179"],
[style*="rgb(32, 201, 151)"],
[style*="rgba(32, 201, 151"] {
    background-color: #e74c3c !important;
    color: #e74c3c !important;
    border-color: #e74c3c !important;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

.logo span {
    color: #059669;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #2563eb;
}

.btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1d4ed8;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
    padding: 150px 0 80px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Job Filters */
.job-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 30px 0;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.job-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e7eb;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.job-card h3 {
    color: #111827;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.job-card .company {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.job-card .salary {
    color: #059669;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.job-card .description {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #4b5563;
}

.job-card .btn {
    display: block;
    text-align: center;
    width: 100%;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 10px;
}

.pagination-btn {
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.pagination-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-dots {
    padding: 10px;
    color: #6b7280;
}

/* Job Count */
.job-count {
    text-align: center;
    margin: 40px 0;
    font-size: 1.1rem;
    color: #4b5563;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #f9fafb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

/* Hidden class for pagination */
.hidden {
    display: none !important;
}

/* Testimonials Professional Layout CSS */

/* Testimonials Hero Section */
.testimonials-hero {
    background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.testimonials-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonials-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: 700;
}

.stat-card p {
    color: #7f8c8d;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Testimonials Listings */
.testimonials-listings {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #e74c3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-info p {
    margin: 5px 0 0;
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonial-text {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: #e74c3c;
    font-family: Georgia, serif;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(231, 76, 60, 0.3);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #f39c12;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.btn-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-hero h1 {
        font-size: 2.2rem;
    }
    
    .testimonials-hero p {
        font-size: 1rem;
    }
    
    .stats-section h2,
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-hero {
        padding: 80px 0 40px;
    }
    
    .stats-section,
    .testimonials-listings {
        padding: 60px 0;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
/* Subtle Testimonials Styling - Less 'Shouting' Version */

/* Testimonials Hero Section - More Subtle */
.testimonials-hero {
    background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0 50px;
    text-align: center;
}

.testimonials-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonials-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
    line-height: 1.5;
}

/* Stats Section - More Refined */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-card p {
    color: #7f8c8d;
    font-size: 1rem;
    font-weight: 400;
}

/* Testimonials Listings - More Subtle */
.testimonials-listings {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #3498db;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-info p {
    margin: 4px 0 0;
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 400;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    font-style: normal;
    flex: 1;
    font-size: 0.95rem;
    position: relative;
    padding-left: 18px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 1.8rem;
    color: #3498db;
    font-family: Georgia, serif;
    opacity: 0.7;
}

/* CTA Section - More Subtle */
.cta-section {
    text-align: center;
    margin-top: 40px;
}

.btn-large {
    padding: 12px 35px;
    font-size: 1rem;
    background: #3498db;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-large:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

/* Footer - More Subtle */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.footer-section h3 {
    margin-bottom: 12px;
    color: #3498db;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.95rem;
}

.btn-link {
    color: #db3434;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.btn-link:hover {
    color: #2980b9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Country Flags - More Subtle */
.country-flag {
    display: inline-block;
    width: 20px;
    height: 15px;
    background-size: cover;
    background-position: center;
    border-radius: 1px;
    margin-left: 6px;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-hero {
        padding: 60px 0 40px;
    }
    
    .testimonials-hero h1 {
        font-size: 2rem;
    }
    
    .testimonials-hero p {
        font-size: 1rem;
    }
    
    .stats-section,
    .testimonials-listings {
        padding: 50px 0;
    }
    
    .stats-section h2,
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-hero {
        padding: 50px 0 30px;
    }
    
    .stats-section,
    .testimonials-listings {
        padding: 40px 0;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
/* Subtle Testimonials Styling - Keeping Original Color Scheme */

/* Testimonials Hero Section - More Subtle */
.testimonials-hero {
    background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0 50px;
    text-align: center;
}

.testimonials-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonials-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
    line-height: 1.5;
}

/* Stats Section - More Refined */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: #e74c3c; /* Keeping the original red */
    margin-bottom: 10px;
}

.stat-card p {
    color: #7f8c8d;
    font-size: 1rem;
    font-weight: 400;
}

/* Testimonials Listings - More Subtle */
.testimonials-listings {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c; /* Keeping the original red accent */
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #e74c3c; /* Keeping red border */
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #f39c12); /* Keeping orange/yellow/red mix */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-info p {
    margin: 4px 0 0;
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 400;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    font-style: normal;
    flex: 1;
    font-size: 0.95rem;
    position: relative;
    padding-left: 18px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 1.8rem;
    color: #e74c3c; /* Keeping red quote marks */
    font-family: Georgia, serif;
    opacity: 0.7;
}

/* CTA Section - More Subtle */
.cta-section {
    text-align: center;
    margin-top: 40px;
}

.btn-large {
    padding: 12px 35px;
    font-size: 1rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b); /* Keeping red gradient */
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-large:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

/* Footer - More Subtle */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.footer-section h3 {
    margin-bottom: 12px;
    color: #f39c12; /* Keeping orange accent */
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.95rem;
}

.btn-link {
    color: #f39c12; /* Keeping orange links */
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.btn-link:hover {
    color: #e67e22;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Country Flags - More Subtle */
.country-flag {
    display: inline-block;
    width: 20px;
    height: 15px;
    background-size: cover;
    background-position: center;
    border-radius: 1px;
    margin-left: 6px;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Header Button - Keeping Original */
.btn {
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #c0392b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-hero {
        padding: 60px 0 40px;
    }
    
    .testimonials-hero h1 {
        font-size: 2rem;
    }
    
    .testimonials-hero p {
        font-size: 1rem;
    }
    
    .stats-section,
    .testimonials-listings {
        padding: 50px 0;
    }
    
    .stats-section h2,
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-hero {
        padding: 50px 0 30px;
    }
    
    .stats-section,
    .testimonials-listings {
        padding: 40px 0;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 40px 0 30px;
}

.pagination {
    display: flex;
    gap: 8px;
}

.page-btn {
    padding: 10px 18px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-btn:hover {
    background: #e9ecef;
    border-color: #3498db;
}

.page-btn.active {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

/* Additional Flag Styles */
.flag-cm {
    background: 
        linear-gradient(135deg, 
            #007a5e 0%, 
            #007a5e 33%, 
            #ce1126 33%, 
            #ce1126 66%, 
            #fcd116 66%);
    position: relative;
}

.flag-cm::before {
    content: "★";
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: #fcd116;
    font-size: 5px;
}

.flag-ma {
    background: #c1272d;
    position: relative;
}

.flag-ma::before {
    content: "✻";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #006233;
    font-size: 8px;
}

.flag-dz {
    background: 
        linear-gradient(to right, 
            #ffffff 0%, 
            #ffffff 50%, 
            #006233 50%);
    position: relative;
}

.flag-dz::before {
    content: "☪";
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: #ce1126;
    font-size: 7px;
}

.flag-ci {
    background: 
        linear-gradient(to right, 
            #ffffff 0%, 
            #ffffff 33%, 
            #f77f00 33%, 
            #f77f00 66%, 
            #009e60 66%);
}