        /* --------------------- Careers page style ------------------ */
        :root {
            --primary-color: #1a4f8c;
            --secondary-color: #2c662d;
            --accent-color: #e63946;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        
        /* Hero Section */
        .career-hero {
            background: linear-gradient(rgba(26, 79, 140, 0.85), rgba(26, 79, 140, 0.9)), url('../../images/career-hero-bg.png') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .career-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .career-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .career-hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }
        
        /* Stats Counter */
        .stats-counter {
            background-color: var(--light-color);
            padding: 24px 0;
        }
        
        .stats-item {
            text-align: center;
            padding: 20px;
        }
        
        .stats-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .stats-text {
            font-size: 1rem;
            color: var(--dark-color);
        }
        
        /* Section Styling */
        .section {
            padding: 12px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-subtitle {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Benefits Section */
        .benefits-section {
            background-color: #f8f9fa;
        }
        
        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .benefit-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        /* Job Openings */
        .job-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 4px solid var(--primary-color);
        }
        
        .job-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .job-meta {
            color: #6c757d;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .job-meta i {
            margin-right: 5px;
        }
        
        .job-description {
            margin-bottom: 20px;
        }
        
        /* Application Process */
        .process-section {
            background-color: var(--light-color);
        }
        
        .process-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .process-step {
            text-align: center;
            max-width: 200px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text:before {
            content: """;
            font-size: 4rem;
            color: #e9ecef;
            position: absolute;
            top: -20px;
            left: -10px;
            z-index: 0;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #e9ecef;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .author-info h5 {
            margin-bottom: 0;
            font-weight: 600;
        }
        
        .author-info p {
            margin-bottom: 0;
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(26, 79, 140, 0.9), rgba(26, 79, 140, 0.95)), url('../../images/cta-bg.png') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 400px;
            margin-right: 10px;
			display: inline-block;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .career-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stats-number {
                font-size: 2rem;
            }
        }

		@media (max-width: 640px) {
			.cta-text {
				display: block auto;
				text-align: center;
				margin-right: 0;
        	}
        }

/* Values Header - Heading and Image in Same Row */
.values-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  /*  margin: 2rem 0; */
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

/* Horizontal padding for large screens */
@media (min-width: 1200px) {
    .values-header-container {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (min-width: 1400px) {
    .values-header-container {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

@media (min-width: 1600px) {
    .values-header-container {
        padding-left: 8rem;
        padding-right: 8rem;
    }
}

.values-header-content {
    flex: 1;
}

.values-header-image {
    flex: 0 0 300px; /* Smaller fixed width for image */
}

.values-header-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

/* Green Header */
.greensub-header {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.values-intro {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
}

/* 4 Cards in One Row */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
	margin-bottom:2rem;
}

.benefit-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    font-weight: normal;
    margin-top: 0.3rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}
	
/* Target all stats items */
.stats-item .stats-icon i.bi {
    font-size: 3rem !important; /* Force icon size */
}

.stats-item .stats-number {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
}

@media (max-width: 920px) {
.stats-item .stats-number {
    font-size: 1.7rem !important;
    font-weight: 700 !important;
}    
}

.stats-item .stats-text {
    font-size: 1rem !important;
    font-weight: 500 !important;
}

/*.stats-number {
    white-space: nowrap;
}*/

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .values-header-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .values-header-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 200px;
    }
    
    .values-intro {
        max-width: 100%;
    }
    
    .greensub-header {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .values-header-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
	
/* Process Section Styles */
.process-section {
    background-color: #f8f9fa;
}

.process-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-title {
    color: var(--primary-color); /* Using your primary color variable */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Vertical Timeline Layout */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 30px;
}

/* Vertical connecting line */
.process-step-row:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 25px; /* Half of step-number-circle width + border */
    top: 60px; /* Start after the circle */
    bottom: -2.5rem; /* Extend to next step */
    width: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step-number-circle {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.step-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-step-row {
        flex-direction: column;
        padding-left: 0;
        margin-bottom: 2rem;
    }
    
    .process-step-row:not(:last-child)::before {
        left: 25px;
        top: 50px;
        bottom: -2rem;
		display: none;
    }
    
    .step-number-circle {
        margin-right: 0;
        margin-bottom: 1.5rem;
        align-self: flex-start;
    }
    
    .step-content {
        width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .process-intro {
        padding: 0 1rem;
    }
    
    .step-content {
        padding: 1.25rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
}