/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'SF Pro', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.mali-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.mali-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.mali-header .mali-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.company-logo {
    width: 180px;
    height: 60px;
    background-image: url('../img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.mali-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.mali-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.mali-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.mali-nav a:hover::after,
.mali-nav a.active::after {
    width: 100%;
}

.mali-nav a:hover,
.mali-nav a.active {
    color: #0066cc;
}

.mali-mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.mali-about-hero {
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    padding: 160px 0 80px;
    text-align: center;
}

.mali-about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mali-about-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Vision Section */
.mali-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mali-vision-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0066cc;
}

.mali-vision-text p {
    margin-bottom: 30px;
    font-size: 18px;
}

.mali-vision-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* History Section */
.mali-history {
    padding: 80px 0;
}

.mali-history h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0066cc;
}

.mali-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.mali-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #0066cc;
}

.mali-timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.mali-timeline-year {
    text-align: right;
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    padding-right: 40px;
}

.mali-timeline-content {
    padding-left: 40px;
}

.mali-timeline-content h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Team Section */
.mali-team {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-team h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0066cc;
}

.mali-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mali-team-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mali-team-card:hover {
    transform: translateY(-5px);
}

.mali-team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.mali-team-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.mali-team-position {
    color: #666;
    font-weight: 500;
    margin-bottom: 10px;
}

.mali-team-bio {
    color: #666;
    font-size: 14px;
}

/* Culture Section */
.mali-culture {
    padding: 80px 0;
}

.mali-culture h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0066cc;
}

.mali-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mali-culture-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mali-culture-card:hover {
    transform: translateY(-5px);
}

.mali-culture-card i {
    font-size: 48px;
    color: #0066cc;
    margin-bottom: 20px;
}

.mali-culture-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* Awards Section */
.mali-awards {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-awards h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0066cc;
}

.mali-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mali-award-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mali-award-card:hover {
    transform: translateY(-5px);
}

.mali-award-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.mali-award-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.mali-award-card p {
    color: #666;
}

/* Buttons */
.mali-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mali-button-primary {
    background: #ffd700;
    color: #333;
}

.mali-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.mali-footer {
    background: #333;
    color: #fff;
    padding: 80px 0 20px;
}

.mali-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.mali-footer-logo .company-logo {
    margin-bottom: 20px;
}

.mali-footer-logo p {
    color: #999;
}

.mali-footer-links h3,
.mali-footer-contact h3 {
    margin-bottom: 20px;
    color: #ffd700;
}

.mali-footer-links ul {
    list-style: none;
}

.mali-footer-links a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.mali-footer-links a:hover {
    color: #ffd700;
}

.mali-footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mali-footer-contact i {
    color: #ffd700;
}

.mali-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mali-social-link {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.mali-social-link:hover {
    color: #ffd700;
}

.mali-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mali-header .mali-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .mali-nav {
        display: none;
    }

    .mali-mobile-menu {
        display: block;
    }

    .mali-about-hero {
        padding: 120px 0 60px;
    }

    .mali-about-hero h1 {
        font-size: 36px;
    }

    .mali-about-hero p {
        font-size: 18px;
    }

    .mali-vision-content {
        grid-template-columns: 1fr;
    }

    .mali-timeline::before {
        left: 0;
    }

    .mali-timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mali-timeline-year {
        text-align: left;
        padding-left: 40px;
        padding-right: 0;
    }

    .mali-timeline-content {
        padding-left: 40px;
    }
} 