.carousel-item img {
    height: max-content;
}

.header-index {
    background-color: #00ae42;
    color: white;
    padding-bottom: 100px;
}

.header-index .container {
    padding-top: 100px;
}

.indexBaslik {
    font-size: 50px;
}

.indexButton {
    border: 1px solid white;
    background-color: #00ae42;
    color: white;
    padding: 10px;
}

.indexButtonArrow {
    margin-left: 20px;
}

.indexResim {
    height: 340px;
}

.indexParagraf2 {
    margin-top: 100px;
}

.indexParagraf3 {
    margin-top: 20px;
}

.indexSubjectButton {
    background-color: white;
    border: 1px solid rgb(121, 118, 118);
    margin: 5px;
    border-radius: 10px;
    margin-top: 20px;
}

.indexButtonWhite {
    border: 1px solid black;
    background: linear-gradient(to right, white 50%, #00ae42 50%);
    background-size: 200% 100%;
    background-position: left bottom;
    color: black;
    padding: 10px;
    transition: all 0.5s ease;
}

.indexButtonWhite:hover {
    background-position: right bottom;
    color: white;
    border: 1px solid #00ae42;
}

.indexRow2 {
    margin-top: 100px;
}

.indexRow3 {
    background-color: #efefef;
    padding: 40px;
}

/* Colors CSS */

.main_controller {
    font-family: Arial, sans-serif;
    background: #fff;
    border-radius: 4px;
    width: 300px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.slider {
    position: relative;
}

.slider__items {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 20px 20px 0;
    display: flex;
}

.slider__item {
    padding-left: 10px;
}

.slider__item:last-child {
    padding-right: 10px;
}

.slider__control {
    position: absolute;
    top: 50%;
    background: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    border: #fafafa;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    margin-top: -20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease-in-out;
    transition-property: opacity, visibility, background-color;
}

.slider__control:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #333;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.slider__control:hover {
    background: #f1f1f1;
}

.slider__control--active {
    opacity: 1;
    visibility: visible;
}

.slider__control--next {
    right: -20px;
}

.slider__control--previous {
    left: -20px;
}

.card {
    border-radius: 4px;
    height: 150px;
}

.card--wide {
    background: #9d9d9d;
    width: 200px;
}

.card--medium {
    background: #dedede;
    width: 100px;
}

.card--narrow {
    background: #333;
    width: 70px;
}

/* Tab Panel */

.indicator-tabs {
    width: 80%;
    margin: 50px auto;
    text-align: start;
}

.tab-content {
    position: relative;
    margin-bottom: 20px;
}

.panel {
    display: none;
    background: #fff;
    padding: 30px;
}

.panel.active {
    display: block;
}

.tab-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-dot {
    cursor: pointer;
    padding: 10px 15px;
    background: #ddd;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s;
}

.tab-dot.active {
    background: #444;
    color: #fff;
}

.slideContentImage {
    max-width: 300px;
    max-height: 300px;
}