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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* African-inspired Color Palette */
:root {
    /* Primary Colors */
    --primary-sunset: #E85D3D;    /* Vibrant sunset orange */
    --primary-gold: #F9A826;      /* Rich golden yellow */
    --primary-earth: #8B4513;     /* Earth brown */
    --primary-savanna: #2E7D32;   /* Savanna green */
    --primary-sky: #1E88E5;       /* Sky blue */
    
    /* Supporting Colors */
    --secondary-light: #FFF8F0;
    --secondary-dark: #1A1A1A;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-color: #E5E5E5;
    --background-light: #F8F9FA;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-sunset), var(--primary-gold), var(--primary-earth));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-title {
    background: linear-gradient(90deg, var(--primary-sunset), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-sunset);
    color: white;
}

.btn-primary:hover {
    background-color: #D64C2D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 93, 61, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-sunset);
    border-color: var(--primary-sunset);
}

.btn-secondary:hover {
    background-color: rgba(232, 93, 61, 0.1);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-sunset);
}

.nav-link.active {
    color: var(--primary-sunset);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-sunset);
}

.contact-btn {
    background-color: var(--primary-sunset);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    margin-left: 10px;
}

.contact-btn:hover {
    background-color: #D64C2D;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 12px var(--shadow-color);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--background-light);
    color: var(--primary-sunset);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(232, 93, 61, 0.1), rgba(249, 168, 38, 0.1));
    position: relative;
    margin-top: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 93, 61, 0.05), rgba(249, 168, 38, 0.05));
}

/* Industries Section */
.industries {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.industry-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.05);
}

.industry-icon {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-sunset);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.industry-card h3 {
    padding: 40px 24px 0;
    margin-bottom: 0.5rem;
}

.industry-card p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(232, 93, 61, 0.1), rgba(249, 168, 38, 0.1));
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(232, 93, 61, 0.1), rgba(249, 168, 38, 0.1));
    text-align: center;
    margin-top: 70px;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.page-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.value-card {
    padding: 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232, 93, 61, 0.05), rgba(249, 168, 38, 0.05));
    border-left: 4px solid var(--primary-sunset);
}

.value-card:nth-child(2) {
    border-left-color: var(--primary-gold);
}

.value-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.journey-content {
    margin-top: 2rem;
}

.journey-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.journey-tagline {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

/* Team Intro */
.team-intro {
    padding: 60px 0;
    text-align: center;
    background-color: var(--background-light);
}

.team-intro h2 {
    margin-bottom: 1rem;
}

.team-intro p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Team Members */
.team-members {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-color);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: rgba(232, 93, 61, 0.3);
    box-shadow: 0 8px 25px var(--shadow-color);
    transform: translateY(-2px);
}

.team-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-sunset), var(--primary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(232, 93, 61, 0.2);
}

.avatar-initials {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.team-info {
    flex: 1;
}

.team-info h3 {
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-sunset);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    padding: 4px 12px;
    background-color: rgba(232, 93, 61, 0.1);
    color: var(--primary-sunset);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-sunset);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid var(--primary-sunset);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background-color: rgba(232, 93, 61, 0.1);
}

/* Services Tabs */
.services-tabs {
    padding: 80px 0;
}

.tabs-header {
    margin-bottom: 60px;
}

.tabs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 5px;
    border-radius: 12px;
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: none;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary-sunset);
    color: white;
}

.tab-btn:hover:not(.active) {
    background-color: rgba(232, 93, 61, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.service-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.service-header h3 {
    color: var(--primary-sunset);
    margin-bottom: 1rem;
}

.service-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Service Details */
.features-section,
.use-cases-section {
    margin-bottom: 60px;
}

.features-section h3,
.use-cases-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.features-section > p,
.use-cases-section > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background-color: white;
    border: 2px solid rgba(232, 93, 61, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-sunset);
    background-color: rgba(232, 93, 61, 0.05);
}

.feature-item i {
    color: var(--primary-sunset);
    margin-top: 2px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.use-case-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background-color: white;
    border: 2px solid rgba(249, 168, 38, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.use-case-item:hover {
    border-color: var(--primary-gold);
    background-color: rgba(249, 168, 38, 0.05);
}

.bullet-point {
    width: 8px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    margin-top: 8px;
}

/* Portfolio Badge */
.portfolio-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-gold);
    color: white;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-savanna);
    color: white;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* Case Study */
.featured-case-study {
    padding: 60px 0;
}

.featured-case-study h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.case-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-color);
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-overview h3 {
    margin-bottom: 1rem;
}

.case-overview p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.tech-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.tech-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: rgba(46, 125, 50, 0.05);
    border: 2px solid rgba(46, 125, 50, 0.2);
    border-radius: 8px;
}

.tech-tag i {
    font-size: 1.5rem;
    color: var(--primary-savanna);
}

.tech-tag h4 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--primary-savanna);
}

.tech-tag p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Background & Description */
.case-background,
.project-description {
    padding: 40px 0;
}

.case-background h3,
.project-description h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.case-background p,
.project-description p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 800px;
}

/* Technical Approach */
.technical-approach {
    padding: 60px 0;
}

.technical-approach h3 {
    margin-bottom: 2rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.approach-card {
    padding: 30px;
    background-color: white;
    border: 2px solid rgba(46, 125, 50, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.approach-card:hover {
    border-color: var(--primary-savanna);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.approach-icon i {
    font-size: 1.5rem;
    color: var(--primary-savanna);
}

.approach-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-savanna);
}

.approach-card p {
    color: var(--text-secondary);
}

/* Business Impact */
.business-impact {
    padding: 60px 0;
}

.business-impact h3 {
    margin-bottom: 2rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.impact-card {
    padding: 30px;
    background-color: white;
    border: 2px solid rgba(46, 125, 50, 0.2);
    border-radius: 12px;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.impact-icon i {
    font-size: 1.5rem;
    color: var(--primary-savanna);
}

.impact-card h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-savanna);
}

.impact-card ul {
    list-style: none;
}

.impact-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.impact-card li i {
    color: var(--primary-savanna);
    margin-top: 2px;
}

/* Results */
.results-section {
    padding: 60px 0;
}

.results-card {
    padding: 40px;
    background-color: white;
    border: 2px solid var(--primary-earth);
    border-radius: 12px;
}

.results-card h3 {
    color: var(--primary-earth);
    margin-bottom: 1.5rem;
}

.results-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* More Case Studies */
.more-case-studies {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(46, 125, 50, 0.05));
}

.more-case-studies h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.more-case-studies > p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.case-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background: none;
    border: 2px solid var(--primary-earth);
    border-radius: 20px;
    color: var(--primary-earth);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--primary-earth);
    color: white;
}

.filter-btn:hover:not(.active) {
    background-color: rgba(139, 69, 19, 0.1);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-card {
    padding: 30px;
    background-color: white;
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: var(--primary-earth);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.case-category {
    padding: 4px 12px;
    background-color: rgba(139, 69, 19, 0.1);
    color: var(--primary-earth);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.case-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.875rem;
}

.case-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-earth);
}

.case-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.case-results {
    padding: 15px;
    background-color: rgba(139, 69, 19, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-earth);
}

.case-results strong {
    color: var(--primary-earth);
}

/* Portfolio CTA */
.portfolio-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(232, 93, 61, 0.1), rgba(249, 168, 38, 0.1));
}

.portfolio-cta h2 {
    margin-bottom: 1rem;
}

.portfolio-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Work With Us */
.work-with-us {
    padding: 80px 0;
}

.work-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

/* Open Positions */
.open-positions {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(46, 125, 50, 0.05));
}

.open-positions h2 {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.position-card {
    background-color: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary-sunset);
    box-shadow: 0 4px 6px var(--shadow-color);
    overflow: hidden;
}

.position-header {
    padding: 25px 25px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.position-title h3 {
    margin-bottom: 0.5rem;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.position-tag {
    padding: 2px 10px;
    background-color: rgba(232, 93, 61, 0.1);
    color: var(--primary-sunset);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.position-status {
    padding: 4px 12px;
    background-color: var(--primary-sunset);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.position-content {
    padding: 0 25px 25px;
}

.position-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Careers CTA */
.careers-cta {
    padding: 80px 0;
    text-align: center;
}

.careers-cta h2 {
    margin-bottom: 1rem;
}

.careers-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Contact Info */
.contact-info {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: rgba(232, 93, 61, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-sunset);
}

.info-card:nth-child(2) .info-icon {
    background-color: rgba(249, 168, 38, 0.1);
}

.info-card:nth-child(2) .info-icon i {
    color: var(--primary-gold);
}

.info-card:nth-child(3) .info-icon {
    background-color: rgba(139, 69, 19, 0.1);
}

.info-card:nth-child(3) .info-icon i {
    color: var(--primary-earth);
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form-section {
    padding: 60px 0 80px;
}

.form-tabs {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    overflow: hidden;
}

.tab-headers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: rgba(0, 0, 0, 0.05);
}

.form-tab-btn {
    padding: 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-tab-btn.active {
    background-color: var(--primary-sunset);
    color: white;
}

.form-tab-btn:hover:not(.active) {
    background-color: rgba(232, 93, 61, 0.1);
}

.form-tab-content {
    display: none;
    padding: 40px;
}

.form-tab-content.active {
    display: block;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h2 {
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-sunset);
}

.submit-btn {
    margin-top: 10px;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.message-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.message-content i {
    font-size: 3rem;
    color: var(--primary-savanna);
    margin-bottom: 1rem;
}

.message-content h3 {
    margin-bottom: 0.5rem;
}

.message-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-sunset);
    transform: translateY(-2px);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-sunset);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3rem; }

.hero {
    background-image: url('https://afrevoai.com/images/hero-bg.jpg');
    background-size: cover;         /* Make the image cover the whole hero area */
    background-position: center;    /* Center the image */
    background-repeat: no-repeat;   /* Avoid repeating the image */
    min-height: 100vh;              /* Make hero full viewport height */
    display: flex;                  /* Use flex to center text */
    align-items: center;            /* Vertical centering */
    justify-content: center;        /* Horizontal centering */
    text-align: center;             /* Center text inside */
    color: white;                   /* Make text visible over the image */
    position: relative;             /* For overlay if needed */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* Optional overlay for contrast */
    z-index: 0;
}

.hero .hero-content {
    position: relative;
    z-index: 1; /* Make text appear above overlay */
}



