body {
    background-color: #4545a0; /* Warna latar belakang navy */
    color: white; /* Warna teks putih */
    font-family: 'Arial', sans-serif; /* Font */
}

.navbar-brand {
    font-size: 24px; /* Ukuran font untuk brand navbar */
    font-weight: bold; /* Tebal */
}

.card {
    background-color: rgba(255, 255, 255, 0.1); /* Latar belakang transparan untuk kartu */
    border: none; /* Tanpa border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Efek bayangan */
}


.card-body {
    color: #FFFFFF; /* Warna teks di dalam kartu */
}

.card-title {
    font-size: 1.5rem; /* Ukuran font judul kartu */
    font-weight: bold; /* Tebal */
}

.card-text {
    font-size: 1.2rem; /* Ukuran font untuk teks kartu */
    text-align: justify; /* Rata kiri dan kanan */
}

.copy-message {
    color: green; 
    font-size: 0.9em; 
    margin-left: 10px;
}


.btn-primary {
    background-color: #FFA500; /* Warna latar belakang tombol */
    border-color: #FFA500; /* Warna border tombol */
    color: #4545a0; /* Warna teks tombol */
    font-weight: bold; /* Tebal */
    font-size: 1.1rem; /* Ukuran font tombol */
}

.btn-primary:hover {
    background-color: #FF8C00; /* Warna latar belakang saat hover */
    border-color: #FF8C00; /* Warna border saat hover */
    color: #4545a0; /* Warna teks saat hover */
}

.modal-content {
    background-color: #4545a0; /* Latar belakang modal */
    color: white; /* Warna teks modal */
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Garis bawah pada header modal */
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Garis atas pada footer modal */
}

.form-control {
    background-color: rgba(255, 255, 255, 0.2); /* Latar belakang input */
    color: white; /* Warna teks input */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Border input */
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6); /* Warna placeholder */
}

.list-group-item {
    background-color: rgba(255, 255, 255, 0.05); /* Latar belakang item list */
    border-color: rgba(255, 255, 255, 0.1); /* Border item list */
    color: white; /* Warna teks item list */
}

.list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Warna latar belakang saat hover */
}

.bg-navy {
    background-color: #000060; /* Warna latar belakang navy */
}

.container {
    flex: 1 0 auto; /* Fleksibilitas kontainer */
}

footer {
    flex-shrink: 0; /* Tidak mengecil */
    background-color: #000060; /* Warna latar belakang footer */
    color: white; /* Warna teks footer */
    padding: 20px 0; /* Padding footer */
}

footer a {
    color: #FFA500; /* Warna tautan footer */
    text-decoration: none; /* Tanpa garis bawah */
}

footer a:hover {
    color: #FF8C00; /* Warna tautan saat hover */
    text-decoration: underline; /* Garis bawah saat hover */
}

/* Responsif untuk footer */
@media (max-width: 768px) {
    footer .col-md-6 {
        text-align: center !important; /* Rata tengah untuk kolom footer */
    }
    
    footer .col-md-6:last-child {
        margin-top: 1rem; /* Margin untuk kolom terakhir */
    }
}

/* Responsif untuk kartu */
@media (max-width: 768px) {
    .card-title {
        font-size: 1.3rem; /* Ukuran font judul untuk layar kecil */
    }
    
    .card-text {
        font-size: 1rem; /* Ukuran font teks untuk layar kecil */
    }
    
    .btn {
        font-size: 1rem; /* Ukuran font tombol untuk layar kecil */
    }
}

/* Tambahan untuk efek glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1); /* Latar belakang transparan */
    backdrop-filter: blur(10px); /* Blur latar belakang */
    border-radius: 10px; /* Sudut melengkung */
    padding: 20px; /* Padding */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Bayangan */
}

/* CTA Section */
.cta {
    padding: 60px 0; /* Padding untuk CTA */
    background: rgba(69, 69, 159, 0.9); /* Latar belakang CTA */
    color: white; /* Warna teks CTA */
    border-top: 5px solid #FFA500; /* Border atas CTA */
}

.testimonial {
    margin: 20px 0; /* Margin untuk testimonial */
    padding: 20px; /* Padding untuk testimonial */
    border-radius: 10px; /* Sudut melengkung untuk testimonial */
    background: rgba(255, 255, 255, 0.1); /* Latar belakang testimonial */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Bayangan untuk testimonial */
}

.testimonial-author {
    margin-top: 10px; /* Margin atas untuk nama penulis testimonial */
    font-weight: bold; /* Tebal */
    color: #FFA500; /* Warna untuk nama penulis */
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
}

.notification.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notification.hidden {
    opacity: 0;
    pointer-events: none;
}

.notification.success {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.notification.error {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
}
