.text-inner , h5 {
    text-align: center;
    padding-right: 70px;
    max-width: 700px;
}

.footer-hr {
    padding-right: 70px;
}

.carousel-inner {
    padding-right: 70px;
}

.carousel-inner .item {
    display: none;
}

.carousel-inner .item.active {
    display: block;
}

.carousel-inner p {
    font-size: 16px;
    font-weight: bold; /* Menjadikan teks tebal */
    color: white;
    text-align: center;
}


/* Tombol Previous dan Next */
.carousel-control {
    background: transparent;
    font-size: 32px;
    color: #333; /* Warna ikon tombol */
}
/* Gaya untuk carousel indicators */
.carousel-indicators {
    text-align: center;
    margin-top: 2px;
    padding-right: 60px;
}

/* Gaya untuk setiap indicator */
.indicator {
    width: 35px;
    background-color: #bbb;
    display: inline-block;
    margin: 0 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Gaya untuk indicator aktif */
.indicator.active-indicator {
    background-color: #333;
    padding: 1px;
}

/* Add styles for responsive screens with max-width 768px */
@media screen and (max-width: 768px) {
    .text-inner, h5 {
        padding-right: 0; /* Remove padding for small screens */
    }

    .footer-hr {
        padding-right: 0; /* Remove padding for small screens */
    }

    .carousel-inner {
        padding-right: 0; /* Remove padding for small screens */
    }

    .indicator {
        width: 35px; /* Adjust the width for smaller screens */
        margin: 0 30px; /* Adjust the margin for smaller screens */
        display: inline-block;
    }
    .carousel-indicators {
        text-align: center;
        margin-top: 2px;
        padding-left: 50px;
    }
}

/* Untuk layar dengan lebar kurang dari 768px (misalnya ponsel) */
@media (max-width: 767px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-row-col2 {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-row-col6 {
        width: 100%;
    }

    .footer-social {
        text-align: center;
    }
}

/* Untuk layar dengan lebar lebih dari atau sama dengan 768px (misalnya tablet atau desktop) */
@media (min-width: 768px) {
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-logo {
        width: 40%;
        margin-right: 20px;
    }

    .footer-row-col2 {
        width: 30%;
        text-align: left;
        padding-top: 26px;
    }

    .footer-row-col6 {
        width: 100%;
    }

    .footer-social {
        width: 30%;
        text-align: center;
    }
}
