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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-blue: #2563eb;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --dark-blue: #1e40af;
    --primary-grey: #64748b;
    --light-grey: #f8fafc;
    --medium-grey: #e2e8f0;
    --dark-grey: #334155;
    --white: #ffffff;
    --text-dark: #1e293b;
    --gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
}

p {
    color: var(--primary-grey);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.nav-logo h2 {
    color: var(--primary-blue);
    margin-bottom: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.hero-graphic i {
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.hero-graphic i:nth-child(2) {
    animation-delay: -1s;
}

.hero-graphic i:nth-child(3) {
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--white);
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-grey);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-placeholder {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-placeholder i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-blue);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.service-item ul {
    list-style: none;
}

.service-item li {
    padding: 0.5rem 0;
    color: var(--primary-grey);
    position: relative;
    padding-left: 1.5rem;
}

.service-item li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background: var(--light-grey);
}

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

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

.case-study {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.case-study h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.case-study p {
    margin-bottom: 0.8rem;
}

.case-study-metrics {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.metric {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-blue);
    width: 20px;
}

/* Contact Form */
.contact-form {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-grey);
    border-radius: 8px;
    font-family: inherit;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    padding: 0.3rem 0;
    color: var(--primary-grey);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-grey);
    color: var(--primary-grey);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-detailed {
        grid-template-columns: 1fr;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}

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

/* Loading animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Enhanced Enterprise Styles */

/* Quick Overview Section */
.quick-overview {
    padding: 80px 0;
    background: var(--white);
    border-bottom: 1px solid var(--medium-grey);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }
}

.overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px 30px 30px 30px; /* Reduced top padding from 30px to 20px */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--medium-grey);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px; /* Reduced from 20px to 15px */
    min-height: 50px; /* Reduced from 60px to 50px */
    flex-shrink: 0;
    justify-content: center; /* Center the header content */
}

.card-header i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.4rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    flex: 1;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.card-content li {
    padding: 8px 0;
    color: var(--primary-grey);
}

.trend-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.trend-badge {
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.trend-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.trend-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Career items - match trend items exactly */
.career-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.career-badge {
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.career-item > div {
    flex: 1;
}

.career-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.career-item p {
    margin: 0;
    font-size: 0.9rem;
}


.overview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    padding-top: 20px;
    transition: gap 0.3s ease;
}

.overview-link:hover {
    gap: 12px;
}

/* Enhanced Services Section */
.service-card.featured {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

/* What We Do Section */
.what-we-do {
    padding: 100px 0;
    background: var(--light-grey);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.category-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.category-card h3 i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card li {
    padding: 8px 0;
    color: var(--primary-grey);
    border-bottom: 1px solid var(--medium-grey);
}

.category-card li:last-child {
    border-bottom: none;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* What We Think Section */
.what-we-think {
    padding: 100px 0;
    background: var(--white);
}

.trending-topics {
    margin-bottom: 60px;
}

.trending-topics h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.trend-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-3px);
}

.trend-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.trend-tag {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
}

.insights-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.insight-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.insight-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.insight-meta .date {
    color: var(--primary-grey);
    font-size: 0.9rem;
}

.insight-meta .category {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 8px;
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background: var(--light-grey);
}

.company-story {
    margin-bottom: 60px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

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

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
}

.leadership-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.office {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.office h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.office p {
    color: var(--primary-grey);
    font-size: 0.9rem;
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: var(--white);
}

.featured-story {
    margin-bottom: 60px;
}

.story-card.featured {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.story-header {
    background: var(--gradient);
    color: var(--white);
    padding: 40px;
}

.story-meta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.story-meta span {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 16px;
    font-size: 0.8rem;
}

.story-content {
    padding: 40px;
}

.challenge, .solution, .results {
    margin-bottom: 30px;
}

.challenge h4, .solution h4, .results h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.solution ul {
    padding-left: 20px;
    margin: 15px 0;
}

.solution li {
    margin-bottom: 8px;
    color: var(--primary-grey);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.metrics-grid .metric {
    text-align: center;
    background: var(--light-grey);
    padding: 20px;
    border-radius: 12px;
}

.metrics-grid .metric h5 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.more-stories h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.story-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.story-metrics {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.story-metrics .metric {
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
}

/* Careers Section */
.careers {
    padding: 100px 0;
    background: var(--light-grey);
}

.careers-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-join {
    margin-bottom: 60px;
}

.why-join h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.benefit {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.benefit i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.current-openings {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.no-openings {
    text-align: center;
    font-style: italic;
    color: var(--primary-grey);
    margin-bottom: 30px;
}

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

.role-category h5 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.role-category ul {
    list-style: none;
    padding: 0;
}

.role-category li {
    padding: 5px 0;
    color: var(--primary-grey);
    border-bottom: 1px solid var(--medium-grey);
}

.application-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.career-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.career-form input,
.career-form select,
.career-form textarea {
    padding: 15px;
    border: 2px solid var(--medium-grey);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.file-upload {
    margin: 20px 0;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.file-label:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Sustainability Section */
.sustainability {
    padding: 100px 0;
    background: var(--white);
}

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

.commitment-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.commitment-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.progress-bar {
    background: var(--medium-grey);
    height: 8px;
    border-radius: 4px;
    margin: 20px 0 10px;
    overflow: hidden;
}

.progress {
    background: var(--gradient);
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.metric-highlight {
    margin-top: 20px;
}

.metric-highlight .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.metric-highlight .text {
    color: var(--primary-grey);
    font-size: 0.9rem;
}

.initiatives {
    margin-bottom: 60px;
}

.initiatives h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.initiative {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
}

.certifications {
    text-align: center;
}

.certifications h3 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.cert-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cert {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Form Status Messages */
.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

.form-status .success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.form-status .error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-status .warning {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fed7aa;
}

.form-status .loading {
    background: var(--light-blue);
    color: var(--primary-blue);
    border: 1px solid var(--medium-grey);
    position: relative;
}

.form-status .loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced Contact Form Styling */
.contact-form input:invalid,
.career-form input:invalid {
    border-color: #ef4444;
}

.contact-form input:valid,
.career-form input:valid {
    border-color: #10b981;
}

/* File Upload Enhancement */
.file-upload {
    position: relative;
}

.file-upload.has-file .file-label {
    background: #10b981;
    color: white;
}

.file-upload.has-file .file-label::after {
    content: ' ✓';
}

.file-preview {
    margin-top: 10px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--medium-grey);
    border-radius: 8px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-info i.fa-file {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.file-details {
    flex-grow: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.remove-file {
    background: none;
    border: none;
    color: var(--primary-grey);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.remove-file:hover {
    background: #ef4444;
    color: var(--white);
}

/* Responsive Form Improvements */
@media (max-width: 768px) {
    .career-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}