/* Home Styles */

.spec_1i {
  border-radius: 15px;
}


.slide-toggle {
    width: 100%;
    margin: 0 auto;          /* Centers horizontally */
    margin-bottom: 50px;
    max-width: 450px;
    background: #f2f2f2;
    padding: 0px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    position: relative;
    left: 0;   /* ← IMPORTANT: ensures slide works on first click */
}

.slide-toggle .option {
    width: 50%;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    padding: 12px 0;
    font-weight: 600;
    color: #000;
}

.slide-toggle input {
    display: none;
}

.slider-bg {
    position: absolute;
    width: 50%;
    height: 100%;
    background: #FFE700;
    border-radius: 40px;
    transition: 0.35s ease;
    z-index: 1;
}

/* Active text color */
.slide-toggle input:checked + span {
    color: white;
}

.button-black{
    font-size: 1.5rem !important;
  background-color: #FFF !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}

