/* Container Styles */
.my-customer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 15px; /* Padding oben und unten, um Navbar und Footer zu berücksichtigen */
    width: 100%;
    box-sizing: border-box; /* Damit Padding in der Breite enthalten ist */
}

/* Title */
.my-customer-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #007bff; /* Blue color */
    position: relative;
    animation: fadeInDown 1s ease;
}

.my-customer-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #007bff; /* Blue color */
    margin: 10px auto 0;
    animation: scaleIn 0.5s ease;
}

/* Customer Grid */
.my-customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Customer Card */
.my-customer-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease;
}

.my-customer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Customer Logo */
.my-customer-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #007bff; /* Blue color */
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.my-customer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.my-customer-card:hover .my-customer-logo img {
    transform: scale(1.1);
}

/* Customer Name */
.my-customer-name {
    font-size: 1.5rem;
    color: #007bff; /* Blue color */
    margin-bottom: 1rem;
}

/* Customer Description */
.my-customer-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .my-customer-grid {
        grid-template-columns: 1fr;
    }

    .my-customer-title {
        font-size: 2rem;
    }

    .my-customer-card {
        padding: 1.5rem;
    }
}