/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f9;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #0077B6;
    color: white;
}

header .logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.whatsapp img {
    width: 40px;
}

/* Hero Section */
.hero {
    background-color: #00B4D8;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 36px;
}

.cta-button {
    padding: 15px 25px;
    background-color: #0077B6;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

/* Dokter Spesialis Section */
#dokter-spesialis {
    padding: 40px 20px;
    background-color: #ffffff;
}

#dokter-spesialis h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.doctor-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
}

.doctor-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.doctor-card h3 {
    font-size: 24px;
}

.wa-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #0077B6;
    color: white;
    padding: 20px;
    text-align: center;
}

footer .social-icons a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
/* Styling untuk Waktu Real-Time */
#real-time-clock {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    color: #0077B6; /* Bisa disesuaikan dengan warna utama situs */
}

#current-time {
    font-size: 24px;
    color: #00B4D8; /* Warna yang lebih mencolok untuk waktu */
}
