/* 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-hero {
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.mali-hero .mali-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mali-hero-content {
    text-align: left;
}

.mali-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mali-hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.mali-hero-buttons {
    display: flex;
    gap: 20px;
}

.mali-hero-image img {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    border-radius: 10px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* 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-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.mali-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Overview Section */
.mali-overview {
    padding: 80px 0;
    text-align: center;
    background: #f8f9fa;
}

.mali-overview h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.mali-overview-content {
    max-width: 800px;
    margin: 0 auto;
}

.mali-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mali-stat-item {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mali-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.mali-stat-label {
    color: #666;
    font-size: 16px;
}

/* Services Section */
.mali-services {
    padding: 80px 0;
}

.mali-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.mali-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mali-service-card {
    background: #fff;
    padding-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mali-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004999);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mali-service-card:hover {
    transform: translateY(-5px);
}

.mali-service-card:hover::before {
    transform: scaleX(1);
}

.mali-service-card img {
    width: 100%;
    /* height: 64px; */
    margin-bottom: 20px;
}

.mali-service-card h3 {
    margin-bottom: 15px;
    color: #0066cc;
}

.mali-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.mali-service-link:hover {
    gap: 12px;
}

/* News Section */
.mali-news {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-news h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.mali-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mali-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mali-news-card:hover {
    transform: translateY(-5px);
}

.mali-news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mali-news-content {
    padding: 20px;
}

.mali-news-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.mali-news-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.mali-news-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 500;
}

/* CTA Section */
.mali-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mali-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.1;
}

.mali-cta-content {
    position: relative;
    z-index: 1;
}

.mali-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.mali-cta p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mali-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Testimonials Section */
.mali-testimonials {
    padding: 80px 0;
}

.mali-testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.mali-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mali-testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mali-testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 4px solid #f8f9fa;
}

.mali-testimonial-content {
    position: relative;
}

.mali-testimonial-content i {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.2;
}

.mali-testimonial-author h4 {
    color: #0066cc;
    margin: 10px 0 5px;
}

/* Partners Section */
.mali-partners {
    padding: 80px 0;
    background: #f8f9fa;
}

.mali-partners h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.mali-partner-grid {
    text-align: center;
}

.mali-partner-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mali-partner-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* 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-hero .mali-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mali-hero-content {
        text-align: center;
    }

    .mali-hero-buttons {
        justify-content: center;
    }

    .mali-hero {
        padding: 120px 0 60px;
    }

    .mali-hero h1 {
        font-size: 36px;
    }

    .mali-hero p {
        font-size: 18px;
    }

    .mali-stats {
        grid-template-columns: 1fr;
    }

    .mali-cta-buttons {
        flex-direction: column;
    }
} 