/* Style dasar untuk navbar */
.navbar {
    background-color: rgba(51, 51, 51, 0.8);
    width: 100%;
    padding: 0 0;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed; /* Ubah position menjadi fixed untuk membuat navbar tetap */
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.loginbg {
    background-color: #948C13;
    padding: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
/* Perubahan gaya untuk tautan navbar */
.navbar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Hover efek pada tautan */
.navbar a:hover {
    background-color: #948c13;
    color: #fffcfc;
}

/* CSS untuk efek aktif setelah mengklik */
.navbar a.active {
    background-color: #948c13;
    color: #fffcfc;
}

/* Style for the menu items */
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    display: inline-block;
    position: relative;
}

/* Style sub-menu */
.navbar ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(51, 51, 51, 0.8);
}

.navbar li:hover ul {
    display: block;
}


/* CSS Untuk Bagian "Visi, Misi, dan Moto" */
.vision-mission-motto {
    background-color: #ffffff;
    padding: 1px 0;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

.col {
    flex: 1;
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.col-1 {
    flex: 1;
    margin: 15px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card h2 {
    font-size: 24px;
    margin-bottom: 1px;
    text-align: left;
}

.card p {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.card i {
    font-style: italic;
}

.center-row {
    justify-content: center;
}

.center-col {
    width: 1140px;
}

/* Style for the content table and iframe */
.content-table {
    display: flex;
    flex-direction: row;
    width: 50%;
}






