.chatbot-discovery-container {
    width: 100%;
    padding: 0px 0 0 0;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.chatbot-discovery-title {
    text-align: left;
    margin-bottom: 10px;
    color: #b9b9b9;
    font-size: 20px;
    padding-left: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chatbot-grid {
    display: flex;
    overflow-x: auto;
    padding: 10px 5px 25px;
    scroll-snap-type: x mandatory;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
    /* margin: 0 40px; Scroll butonları için alan bırakma */
    margin: 0 30px 0 30px;
}

.chatbot-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.chatbot-card {
    flex: 0 0 250px; 
    scroll-snap-align: start;
    background: linear-gradient(145deg, #2a2a2a, #3d3d3d);
    border-radius: 15px;
    padding: 20px; 
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.chatbot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.chatbot-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.chatbot-icon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    opacity: 0.2;
    z-index: 0;
    background-repeat: no-repeat; 
    background-size: cover; 
}

.chatbot-card-content {
    position: relative;
    z-index: 1;
}

.chatbot-icon {
    width: 60px; 
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #3a3a3a, #4d4d4d);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.chatbot-icon::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
}

.chatbot-icon img.bot-icon-image {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.chatbot-icon:not(:has(img)) {
    font-size: 30px; 
    color: #fff;
}

.chatbot-card h4 {
    color: #fff;
    font-size: 18px; 
    margin: 10px 0; 
    font-weight: 600;
    letter-spacing: 0.5px;
}

.chatbot-card p {
    color: #dadada;
    font-size: 12px; 
    line-height: 1.4; 
    margin-bottom: 15px; 
    min-height: 35px; 
}

.start-chat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #00a3ff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.start-chat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00a3ff, #0066ff);
    z-index: -1;
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.start-chat-btn:hover::before {
    transform: scaleX(1);
}

.start-chat-btn:hover {
    color: white;
    border-color: transparent;
}

.start-chat-btn img,
.start-chat-btn .bot-icon-image {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%; 
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.chatbot-scroll-controls {
    position: absolute;
    top: 50%;
    left: 10px; 
    right: 10px; 
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
}

.scroll-btn left hover{
    color: blue;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 20; 
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.scroll-btn span {
    font-size: 24px; 
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; 
    width: 100%; 
}

@media (max-width: 1024px) {
    .chatbot-grid {
        gap: 15px; 
        margin: 0 15px 0 15px;
    }
    
    .chatbot-card {
        flex: 0 0 200px; 
    }
    
    .chatbot-discovery-title {
        font-size: 26px; 
    }
    
    .chatbot-discovery-container {
        width: 100%; 
    }
}

@media (max-width: 768px) {
    .chatbot-grid {
        grid-template-columns: 1fr;
        gap: 10px; 
    }
    
    .chatbot-card {
        flex: 0 0 180px; 
    }
    
    .chatbot-discovery-title {
        font-size: 24px;
    }
    
    .chatbot-discovery-container {
        width: 100%;
    }
}

.smooth-scroll {
    scroll-behavior: smooth;
    transition: scroll-behavior 0.3s ease;
}

.bot-stats {
    color: #00a3ff;
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0;
    padding: 5px 10px;
    background: rgba(0, 163, 255, 0.1);
    border-radius: 10px;
    display: inline-block;
}