@import url('style_kbi.css'); /* Your existing CSS file */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a4f, #2a2a8a);
    color: #fff;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Customers Section */
.customers-section {
    padding: 4rem 0;
    background: white;
}

.customers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a4f;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.customer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 200px;
}

.customer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: #1a1a4f;
}

.customer-logo {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
}

.customer-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: grayscale(0.0);
}

.customer-card:hover .customer-logo img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.customer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 79, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.customer-card:hover .customer-overlay {
    opacity: 1;
}

.customer-info {
    text-align: center;
    color: white;
    padding: 1rem;
}

.customer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.customer-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #1a1a4f;
}

.stat-card h3 {
    font-size: 3rem;
    color: #1a1a4f;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-card p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .customers-section h2 {
        font-size: 2rem;
    }
    
    .customers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .customer-card {
        height: 180px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card h3 {
        font-size: 2.5rem;
    }
    
    /* nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    } */
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .customers-section {
        padding: 3rem 0;
    }
    
    .customers-section h2 {
        font-size: 1.5rem;
    }
    
    .customer-card {
        height: 150px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}