body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

header {
    background-color: #003366;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

h1 {
    margin: 0;
    color: white;
    flex: 1;
    font-size: 28px;
}

.marquee {
    background-color: white;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}

.marquee marquee {
    color: black;
    font-size: 15px;
    font-weight: bold;
    padding: 3px 0;
}

.halam {
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #003366;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.halam a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    margin: 0 5px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.halam a:hover {
    background-color: #005999;
    transform: scale(1.05);
}

.copy {
    color: black;
}

.content {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contentbg {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.bg1{
  background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.bg2{
  background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.bg3{
  background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
p {
    padding: 15px;
    text-align: center;
    font-size: 18px;
    color: #333;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #003366;
    color: white;
    margin: 0;
}

@media (max-width: 600px) {
    .halam a {
        padding: 10px 15px;
        font-size: 14px;
    }

    h1 {
        font-size: 20px;
    }
}

.slider {
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    border: 2px solid #003366;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.slide {
    width: 33.33%;
    flex-shrink: 0;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #003366;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.button {
    background-color: #003366;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    border-radius: 5px;
}

.button:hover {
    background-color: #003366;
    transform: scale(1.05);
}

.indicators {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active {
    background-color: #717171;
}

#testimonial-slider {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
}

#testimonial-slider h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-slides {
    position: relative;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    font-size: 1.2em;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.testimonial-slide.active {
    display: block;
}

.quote {
    font-style: italic;
    color: #555;
    margin-top: 0px;
    margin-bottom: 0px;
}

.author {
    font-weight: bold;
    color: #333;
}

.testimonial-buttons {
    position: relative;
    top: -50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.testimonial-buttons .prev,
.testimonial-buttons .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.testimonial-indicators {
    margin-top: 10px;
}

.testimonial-indicators .dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.testimonial-indicators .dot.active {
    background-color: #333;
}

.profile-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Spasi antara testimonial */
}

.profile-img {
    width: 50px; /* Ukuran gambar profil */
    height: 50px;
    border-radius: 50%; /* Membuat gambar profil bulat */
    margin-right: 10px; /* Jarak antara gambar profil dan nama */
}

.profile-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author {
    font-weight: bold;
    margin: 0;
}

.star {
    width: 20px;  /* Ukuran bintang */
    height: 20px; /* Ukuran bintang */
    max-width: 20px; /* Membatasi lebar maksimum bintang */
    max-height: 20px; /* Membatasi tinggi maksimum bintang */
    margin-left: 9px;
    vertical-align: middle;
}
.social-media {
    text-align: center;
    margin: 20px 0;
}

.social-icon {
    width: 40px; /* Sesuaikan ukuran ikon */
    margin: 0 10px;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}

