html {
  font-size: 14px;
  
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: plum;
    overflow-x: hidden;
}

.carousel-inner .carousel-item img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.row {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 40px 0;
    gap: 20px;
}

.stats-section {
    background-color: darkorchid;
    padding: 60px 20px;
    text-align: center;
    color: lavender;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}
.stats-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
}
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
}

.carousel-item {
    transition: transform 0.7s ease-in-out;
}

.img1 {
    max-width: 100px;
    border-radius: 50%;
    margin: 15px auto 0;
    box-shadow: 0 8px;
    width: 10px;
    height: auto;
}


.carousel-container {
    position: relative;
    width: 90%;
    margin: 30px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.card {
    min-width: 300px;
    max-width: 300px;
    margin: 0 10px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    flex-shrink: 0;
}

.carousel-btn {
    background: blue;
    color: white;
    border: none;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 10px;
}

.carousel-btn:hover {
    background: #111;
}

.hidden {
    display: none;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

