﻿
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-wrapper {
    width: 800px; /* же канча керек болсо */
    overflow: hidden;

}

.slide-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease-in-out;
}

/* Özellik kutularının stil tanımlamaları */
.feature-item {
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-width: 300px; /* Minimum genişlik */
    height: 130px;
    background-color: #f8f9fa; /* Arka plan rengi */
    color: #000; /* Metin rengi */
    /*    font-size: 1.25rem;*/
    font-weight: 600;
    text-decoration: none;
    -webkit-line-clamp: 2;
}

.nav-btn {
    padding: 10px 16px;
    font-size: 20px;
    cursor: pointer;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

/* Түс класстары */
.bg-primary {
  background-color: #0d6efd !important; /* Көк */
  color: #fff !important;
}

.bg-secondary {
  background-color: #6c757d !important; /* Сүр */
  color: #fff !important;
}

.bg-success {
  background-color: #198754 !important; /* Жашыл */
  color: #fff !important;
}

.bg-danger {
  background-color: #dc3545 !important; /* Кызыл */
  color: #fff !important;
}

.bg-warning {
  background-color: #ffc107 !important; /* Сары */
  color: #000 !important;
}

.bg-info {
  background-color: #0dcaf0 !important; /* Ачык көк */
  color: #000 !important;
}

.bg-dark {
  background-color: #212529 !important;
  color: #fff !important;
}


.bg-primary-subtle {
    background-color: #cfe2ff;
    color: #084298;
}

.bg-secondary-subtle {
    background-color: #e2e3e5;
    color: #41464b;
}

.bg-success-subtle {
    background-color: #d1e7dd;
    color: #0f5132;
}

.bg-danger-subtle {
    background-color: #f8d7da;
    color: #842029;
}

.bg-warning-subtle {
    background-color: #fff3cd;
    color: #664d03;
}

.bg-info-subtle {
    background-color: #cff4fc;
    color: #055160;
}
