
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


html {
  scroll-behavior: smooth;
}


body {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  font-family: "Poppins", sans-serif;
  padding: 20px;
  margin: 0;
  padding: 0;
}

/* Memberikan warna coklat pada judul,memposisikan nya di tengah */
h1 {
  color: brown;
  text-align: center;
}

/* memposisikan judul kedua di tengah */
h2 {
  text-align: center;
}

.profil-github {
  width: 500px;
  height: auto;
}


.DataSiswa {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
}

/* menambahkan border,padding,memposisikan di tengah */
.DataSiswa th,
.DataSiswa td {
  border: 1px solid black;
  padding: 10px;
  text-align: center;
}

/* memberikan warna pada kepala table */
.DataSiswa thead {
  background-color: blanchedalmond;
}

/* baris berubah warna saat di arahkan kursor */
.DataSiswa tr:hover {
  background-color: chartreuse;
}

/* tiap baris yang genap akan terkena warna */
.DataSiswa tr:nth-child(even) {
  background-color: burlywood;
}

.Jadwal-SMK caption {
  caption-side: top;
  font-size: 30px;
  font-weight: bold;
  background-color: blue;
  border-radius: 5px;
}

.Jadwal-SMK {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
}

.Jadwal-SMK th,
.Jadwal-SMK td {
  border: 1px solid black;
  padding: 10px;
  text-align: center;
}

.Jadwal-SMK tbody tr:nth-child(even):not(.Rabu) {
  background-color: chartreuse;
}

.Jadwal-SMK tbody tr:hover {
  background-color: brown;
  cursor: pointer;
}

.Jadwal-SMK thead {
  background-color: darkgoldenrod;
}

.Jadwal-SMK tfoot {
  background-color: white;
  font-weight: bold;
}

.Jadwal-ekstrakurikuler {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  border: 2px solid black;
}

.Jadwal-ekstrakurikuler th,
.Jadwal-ekstrakurikuler td {
  border: 2px solid royalblue;
  padding: 10px;
  text-align: center;

}

.Jadwal-ekstrakurikuler caption {
  font-weight: bold;
  font-size: 20px;
  caption-side: top;
  background-color: bisque;
  border: 2px solid royalblue;
}

.Jadwal-ekstrakurikuler tbody tr:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}

.Jadwal-ekstrakurikuler tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.Jadwal-ekstrakurikuler thead {
  background-color: #4CAF50;
  font-weight: bold;
  text-transform: uppercase;
}

.Jadwal-ekstrakurikuler tfoot {
  background-color: #cce5ff;
  font-weight: bold;
  text-align: center;
}

.Tabel-lebih-banyak-styling {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  border: 2px solid black;
  border-radius: 15px;
}

.Tabel-lebih-banyak-styling caption {
  border: 2px solid black;
  caption-side: top;
  font-weight: bold;
  font-size: 20px;
  background-color: salmon;
}

.Tabel-lebih-banyak-styling thead {
  background-color: #3a86ff;

}

.Tabel-lebih-banyak-styling thead th {
  letter-spacing: 1.5px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.Tabel-lebih-banyak-styling th,
.Tabel-lebih-banyak-styling td {
  border: 2px solid black;
  padding: 10px;
  text-align: center;
}

.Tabel-lebih-banyak-styling tbody tr {
  transition: all 0.3s ease;
}

.Tabel-lebih-banyak-styling tbody tr.Basket:hover {
  cursor: pointer;
  background-color: moccasin;
  transform: scale(1.03);
}

.Tabel-lebih-banyak-styling tbody tr.Pramuka:hover {
  cursor: pointer;
  background-color: burlywood;
  transform: scale(1.03);
}

.Tabel-lebih-banyak-styling tbody tr.Voli:hover {
  cursor: pointer;
  background-color: #e0f7fa;
  transform: scale(1.03);
}

.Tabel-lebih-banyak-styling tbody tr.PaduanSuara:hover {
  cursor: pointer;
  background-color: #f3e5f5;
  transform: scale(1.03);
}

.Tabel-lebih-banyak-styling tbody tr.PMR:hover {
  cursor: pointer;
  background-color: #fce4ec;
  transform: scale(1.03);
}

.Tabel-lebih-banyak-styling tfoot {
  background-color: #f9f9f9;

}

.Tabel-lebih-banyak-styling tfoot td {
  font-weight: 500;
  font-style: italic;
}

.form-day13 {
  font-family: Arial, sans-serif;
  padding: 30px;
}

.form-day13 .form-container {
  max-width: 500px;
  margin: auto;
  background-color: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-day13 .form-title {
  text-align: center;
  color: #333;
}

.form-day13 form {
  display: flex;
  flex-direction: column;
}

.form-day13 label {
  margin-top: 15px;
  font-weight: bold;
}

.form-day13 input[type="text"],
.form-day13 select,
.form-day13 textarea {
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.form-day13 button {
  margin-top: 20px;
  padding: 12px;
  background-color: #1e90ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s;
}

.form-day13 button:hover {
  background-color: #0d72d9;
}

/* Styling untuk container form */
.form-day14 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4;
  padding: 30px;
}

.form-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Judul form */
.form-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  color: #333;
}

/* Form group, label dan input */
.form-group {
  margin-bottom: 20px;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

/* Styling input, select, textarea */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

/* Tombol kirim */
.form-submit {
  background-color: #007bff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #0056b3;
}

.form-day15 {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.form-day15 .form-container {
  width: 100%;
  max-width: 500px;
  color: white;
}

.form-day15 .form-title {
  text-align: center;
  color: #ff4747;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.form-day15 form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-day15 label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.form-day15 input,
.form-day15 select {
  padding: 0.7rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.form-day15 input:focus,
.form-day15 select:focus {
  outline: 2px solid #ff4747;
}

.form-day15 button {
  margin-top: 1rem;
  padding: 0.9rem;
  background-color: #ff4747;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-day15 button:hover {
  background-color: #e23c3c;
}

.form-day16 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.form-day16 .form-container {
  width: 100%;
  max-width: 500px;
  background-color: lightblue;
  border-radius: 1rem;
  margin-top: 5rem;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-title {
  text-align: center;
  color: #222;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.form-day16 label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.form-day16 input[type="text"],
.form-day16 select,
.form-day16 textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-day16 textarea {
  resize: vertical;
}

.form-radio-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.5rem;
}

.form-day16 button[type="submit"] {
  margin-top: 1.5rem;
  background-color: #339af0;
  color: white;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.form-day16 button:hover {
  background-color: #1c7ed6;
}

.form-day17 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #fff4f0;
  /* warna baru */
  min-height: 100vh;
}

.form-day17 .form-container {
  width: 100%;
  max-width: 500px;
  background-color: #ffe3dc;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-day17 .form-title {
  text-align: center;
  color: #b02a37;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.form-day17 label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.form-day17 input[type="text"],
.form-day17 input[type="datetime-local"],
.form-day17 textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-day17 select {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.form-day17 textarea {
  resize: vertical;
}

.form-day17 button[type="submit"] {
  margin-top: 1.5rem;
  background-color: #ff6b6b;
  color: white;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3 ease;
}

.form-day17 button:hover {
  background-color: #fa5252;
}

.form-day18 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: turquoise;
  min-height: 100vh;
}

.form-container {
  background-color: #ffffff;
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  margin: auto;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333333;
}

/* Input, Select, Textarea */
.form-container label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
  color: #444;
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Textarea khusus */
.form-container textarea {
  resize: vertical;
  min-height: 100px;
}

/* Tombol Kirim */
.form-container button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #0056b3;
}

.form-day19 {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  margin: 40px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.form-day19 h2 {
  text-align: center;
  color: #aa1e1e;
  margin-bottom: 20px;
}

.form-day19 form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}

.form-day19 form input,
.form-day19 form select,
.form-day19 form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.form-day19 input[type="color"] {
  height: 50px;
  padding: 0;
}

.form-day19 input[type="range"] {
  width: 100%;
}

.form-day19 fieldset {
  border: 2px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.form-day19 legend {
  font-weight: bold;
  padding: 0 10px;
}

.form-day19 button {
  width: 100%;
  background-color: #aa1e1e;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.form-day19 button:hover {
  background-color: #800000;
}


.header-day20 {
  text-align: center;
  margin-bottom: 30px;
}

.header-day20 h1 {
  font-size: 2.5rem;
  color: #e63946;
}

.header-day20 h2 {
  font-size: 1.2rem;
  color: #555;
  margin-top: 10px;
}

.header-day20 p {
  margin-top: 10px;
}

.jir-kucing {
  width: 200px;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: 0.3 ease;
}

.jir-kucing:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.nav-day20 {
  background-color: #1d3557;
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.nav-day20 ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
}

.nav-day20 a {
  color: #f1faee;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.nav-day20 a:hover {
  color: #ffb703;
}

.main-day20 {
  max-width: 900px;
  margin: 0 auto;
}

.section-day20 {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-day20 p {
  margin-bottom: 10px;
}

.section-day20 h2 {
  color: #1d3557;
  margin-bottom: 15px;
}

.main-day20 ul {
  padding-left: 20px;
}

.main-day20 li {
  margin-bottom: 10px;
}

.section-day20 a {
  color: #457b9d;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.section-day20:hover {
  color: #e63946;
}

.footer-day20 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #1d3557;
  color: #f1faee;
  margin: 0 auto;
  border-radius: 10px;
  max-width: 900px;
}

/* Container utama */
.container-day21 {
  background-color: #f9f9fb;
  min-height: 100vh;
  margin-top: 100px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.header-day21 {
  text-align: center;
  margin-bottom: 30px;
}

.header-day21 h1 {
  font-size: 2rem;
  color: #007bff;
}

.header-day21 h2 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 10px;
}

.header-day21 p {
  margin-top: 15px;
  color: #666;
}

/* Main form container */
.main-day21 {
  width: 100%;
  max-width: 650px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Judul form */
.main-day21 h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #333;
}

/* Form */
.form-day21 form {
  display: grid;
  gap: 20px;
}

/* Input dan label standar */
.main-day21 label {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 6px;
}

.main-day21 input[type="text"],
.main-day21 input[type="email"],
.main-day21 input[type="date"],
.main-day21 select,
.main-day21 textarea {
  width: 100%;
  padding: 1opx 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
}

/* Radio Group */
.main-day21 .form-group .label-rating {
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.rating-options {
  display: grid;
  gap: 10px;
}

/* Checkbox Group */
.label-checkbox {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  color: #333;
}

.checkbox-group {
  display: grid;
  gap: 10px;
}

/* Textarea */
.main-day21 textarea {
  resize: vertical;
}

/* Tombol Submit */
.form-kirim button {
  background-color: #007bff;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.form-kirim button:hover {
  background-color: #0056b3;
}

/* Responsif */
@media (max-width: 600px) {
  .main-day21 {
    padding: 20px;
  }

  .header-day21 h1 {
    font-size: 1.6rem;
  }

  .header-day21 h2 {
    font-size: 1.1rem;
  }

  .main-day21 h3 {
    font-size: 1rem;
  }
}

.header-day22 {
  margin-top: 50px;
  padding: 50px 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid white;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  border-radius: 0 0 30px 30px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.foto-profil {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 1px;
  display: block;
  margin-bottom: 1rem;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 10px;
  color: black;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.02);
  background-color: lightblue;
}

.pengantar {
  background-color: #f9f9f9;
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  border-left: 4px solid #007BFF;
}

.informasi-diri {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 4px solid #007BFF;
}

.info-profil h3 {
  margin: 10px 0 5px;
}

.tentang-dan-keahlian {
  border-left: 4px solid #007BFF;
  padding: 15px;
  font-size: 1.1rem;
}

.pendidikan,
.proyek {
  margin-bottom: 15px;
}

.pendidikan h4,
.proyek h4 {
  color: #007BFF;
  margin-bottom: 5px;
}

.pendidikan-dan-proyek {
  border-left: 4px solid #007BFF;
}

.kontakk {
  border-left: 4px solid #007BFF;
}

.sosial-mediaa {
  border-left: 4px solid #007BFF;
}

.sosial-mediaa ul {
  list-style: none;
  padding: 0;
}

.sosial-mediaa li {
  margin: 5px 0;
}

.social-mediaa {
  text-align: center;
}

.kontak {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-day22 {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
}

.header-day23 {
  text-align: center;
  margin-top: 50px;
  padding: 20px 0;
  background-color: #fff8f0;
  border-bottom: 4px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 15px 15px;
}

.header-day23 h1 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.header-day23 h2 {
  font-size: 1.1rem;
  color: #777;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  background-color: #f7fcff;
  gap: 40px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #222;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #555;
}

.btn-cta {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #005fa3;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.features {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-radius: 7px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-container h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #003366;

}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card-day23 {
  background-color: whitesmoke;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.card-day23:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.card-day23 img.card-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card-day23 h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.card-day23 p {
  font-size: 0.95rem;
  color: #555;
}

.learning-points {
  background-color: #e6f7ff;
  padding: 50px 20px;
  margin-top: 50px;
  border-radius: 7px;
}

.learning-points h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #003366;
}

.learning-points ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.learning-points li {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.learning-points li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

.testimonials {
  margin: 0 auto;
  background-color: #e6f7ff;
  padding: 50px 20px;
  margin-top: 50px;
  height: auto;
  border-radius: 7px;

}

.testimonials h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.testimonials-card {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card-testi {
  width: 300px;
  background-color: whitesmoke;
  padding: 20px 30px;
  border-radius: 7px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  color: #333;
}

.card-testi:hover {
  transform: translate(-10px, -20px);
  cursor: pointer;
}

.cta {
  background-color: #e6f7ff;
  margin-top: 50px;
  padding: 20px 30px;
  border-radius: 7px;
  height: auto;
}

.cta p {
  font-size: 18px;
  font-style: italic;
  color: #333;
}

.cta a {
  text-decoration: none;
  color: white;
  background-color: #0077cc;
  padding: 1rem;
  border-radius: 4px;
  display: inline-block;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta a:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.cta h2 {
  color: #003366;
  margin-top: 40px;
}

.footer-day23 {
  background-color: #2c3e50;
  color: #ecf0f1;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  border-top: 3px solid #0077cc;
}

.footer-day23 p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
  font-weight: 300;
}

.header-day24 {
  background-color: #1e3a8a;
  color: #fff;
  background: linear-gradient(to right, #1e40af, #0891b2);
  padding: 20px 30px;
  margin: 40px 0 20px 0;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  border-radius: 7px;
  margin-bottom: 50px;
}

.header-day24 h1 {
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.header-day24 h2 {
  font-size: medium;
  font-weight: normal;
  letter-spacing: 1px;
}

.mainDay-24 {
  max-width: 800px;
  background-color: #f8fafc;
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 7px;
}

.FAQ-section {
  background-color: #f8f9fa;
  padding: 20px 30px;
}

.FAQ-section h2 {
  color: #1e40af;
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  font-weight: bold;
  margin-bottom: 30px;
}

.FAQ-pertanyaan {
  background-color: #ffffff;
  padding: 20px 25px;
  border-radius: 9px;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.FAQ-pertanyaan:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.FAQ-pertanyaan h3 {
  color: #003366;
  font-size: 21px;
  letter-spacing: normal;
  margin-bottom: 25px;
  font-weight: 700;
}

.FAQ-pertanyaan p {
  font-size: 17px;
  color: #333;
  line-height: 1.5rem;
  margin-top: 0;
  text-align: justify;
  font-weight: 400;
}

.footer-day24 {
  text-align: center;
  background-color: #1d4ed8;
  padding: 20px 30px;
  color: whitesmoke;
  max-width: 800px;
  border-radius: 7px;
  margin: 0 auto;
  margin-top: 40px;
}

.footer-day24 h3 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1px;
}
  
.footer-day24 p {
  font-size: 17px;
  line-height: 1.4;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}

.header-day25 {
  background-color: #1a365d;
  color: white;
  padding: 15px;
  margin-top: 80px;
  margin-bottom: 40px;
  border-radius: 0.5rem;
  letter-spacing: 1px;
}

.header-day25 h1 {
  color: white;
}

.title-Day25 {
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 50px;
  color: #1a365d;
}

.mainDay-25 {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: white;
  margin-top: 70px;
  border-radius: 7px;
  margin-bottom: 50px;
}

.mainDay-25 fieldset {
  background: linear-gradient(45deg, #f8fbff, #e6f3ff);
  padding: 20px;
  border-radius: 10px;
  margin: 10px;
  margin-bottom: 30px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mainDay-25 fieldset:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.mainDay-25 legend {
  background-color: #1a365d;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  padding: 8px 12px;
  margin: 0 auto;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}

.mainDay-25 label {
  display: block;
  margin-top: 10px;
}

.mainDay-25 input[type="text"],
.mainDay-25 input[type="email"],
.mainDay-25 input[type="tel"] {
  width: 95%;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 15px;
}

.mainDay-25 textarea {
  width: 95%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.mainDay-25 input[type="text"]:focus,
.mainDay-25 input[type="email"]:focus,
.mainDay-25 input[type="tel"]:focus,
.mainDay-25 select:focus,
.mainDay-25 textarea:focus {
  border-color: #2e4a62;
  box-shadow:  0 0 5px rgba(46, 74, 98, 0.5);
  outline: none;
}
  
.mainDay-25 input[type="date"] {
  width: 95%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
} 

.mainDay-25 select {
  width: 95%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
}

.mainDay-25 input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
  cursor: pointer;
}

.radio-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.radio-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.radio-item label {
  display: inline-block;
}

.mainDay-25 input[type="radio"] {
  margin: 0;
  transform: scale(1.1);
  cursor: pointer;
  accent-color: #1a365d;
}

.mainDay-25 input[type="file"] {
  width: 95%;
  border: 1px solid #ccc;
  background-color: #e6f3ff;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.mainDay-25 button {
  padding: 11px;
  margin: 5px 3px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.mainDay-25 button[type="submit"] {
  background-color: #007BFF;
  color: white;
}

.mainDay-25 button[type="reset"] {
  background-color: #d3d3d3;
  color: white; 
}

.mainDay-25 button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.header-day26 {
  background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
  padding: 30px 20px;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.header-day26 h1 {
  color: #1f2937;
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.header-day26 h2 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  color: #374151 ;
}

.tagline {
  font-style: italic;
  margin-top: 15px;
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
}

.navigation-day26 {
  background: linear-gradient(90deg, #ffffff 0%, #f8fafc 100%);
  padding: 20px 0;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.5rem;
}

.navigation-day26 ul {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.navigation-day26 li{
  list-style: none;
}

.navigation-day26 a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  color: #374151;
  font-size: 1rem;
  padding: 10px 25px;
  border-radius: 6px;
}

.navigation-day26 a:hover {
  transform: translateY(-2px);
  text-decoration: underline;
  cursor: pointer;
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.mainDay-26 {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  min-height: 100vh;
  padding: 40px 0;
  border-radius: 10px;
}

.section-day26 {
  background: linear-gradient(90deg, #ffffff 0%, #f9fafb 100%);
  padding: 20px 30px;
  border-radius: 6px;
  max-width: 1250px;
  margin: 0 auto 2.5rem auto;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.06);
}

.hero-content-day26 {
  text-align: center;
}

.hero-content-day26 p{
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.hero-content-day26 h2 {
  font-weight: bold;
  color: #2563eb;
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
}

.hero-content-day26 a {
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #2563eb; 
  color: #2563eb;
  display: inline-block;
  padding: 0.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-content-day26 a:hover {
  transform: scale(1.03);
  color: white;
  background-color: #2563eb;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.aboutme-day26 {
  background: linear-gradient(90deg, #ffffff 0%, #f9fafb 100%);
  padding: 20px 30px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  max-width: 1250px;
  margin: 0 auto 2.5rem auto;
}

.aboutme-day26 p {
  text-align: center;
  font-size: 1.05rem; 
}

.aboutme-day26 h2 {
  color: #2563eb;
  font-size: 2rem;
  letter-spacing: 2px;
}

.skills-day26 {
  background: linear-gradient(90deg, #ffffff 0%, #f9fafb 100%);
  max-width: 1250px;
  margin: 0 auto 2.5rem auto;
  padding: 20px 30px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.skills-content h2 {
  color: #2563eb;
  font-size: 2rem;
  letter-spacing: 2px;
}

.skills-content ul {
  background-color: #0077cc;
  padding: 12px 15px;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, background-color 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}

.skills-content li {
  list-style: none;
  color: white;
  line-height: 1.8rem;
  letter-spacing: 1px;
}

.skills-content ul:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  background-color: #005fa3;
}

.skills-content h3 {
  font-size: 1.2rem;
}

.projects-day26 {
  background: linear-gradient(90deg, #ffffff 0%, #f9fafb 100%);
  max-width: 1250px;
  margin: 0 auto 2.5rem auto;
  padding: 20px 30px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.projects-day26 h2 {
  color: #2563eb;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 3.5rem;
}

.projects-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background: linear-gradient(45deg, #e0e7ff 0%, #f0f9ff 100%);
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: 20px 30px;
}

.projects-item h4 {
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.projects-item p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #374151;
}

.description-paragraph {
  font-style: italic;
}

.projects-item a {
  text-decoration: none;
  color: white;
  background-color: #2563eb;
  border-radius: 5px;
  text-align: center;
  font-size: 1.1rem;
  max-width: 100%;
  margin-top: 1rem;
  padding: 0.8rem 0;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}

.projects-item a:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: #0077cc;
}

.contact-day26 {
  background: linear-gradient(90deg, #ffffff 0%, #f9fafb 100%);
  max-width: 1250px;
  margin: 0 auto 2.5rem auto;
  padding: 20px 30px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
  color: #2563eb;
  font-size: 2rem;
  letter-spacing: 2px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-item {
  background: linear-gradient(90deg, #f9fafb 0%, #ffffff 100%);
  border-radius: 5px;
  padding: 20px 30px;
}

.contact-item h4 {
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.contact-item p {
  color: #374151;
  font-size: 1.1rem;
}

.contact-item a {
  text-decoration: none;
  color: white;
  background-color: #2563eb;
  padding: 8px 12px;
  font-size: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.contact-item a:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: #1d4ed8;
}

.footer-day26 {
  background-color: #1f2937; 
  color: white;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  margin-bottom: 4rem;
}

.footer-day26 p {
  font-size: 1.1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .navigation-day26 .nav-menu-day27 {
    display: none;
  }
  .menu-toggle:checked ~ .nav-menu-day27 {
    display: block;
  }
}

@media (max-width: 768px) {
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.header-day28 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 20px 30px;
  border-radius: 5px;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.20);
  margin-bottom: 2rem;
  text-align: center;
}

.header-day28 h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.header-day28 h2 {
  color: white;
  font-size: 1.2rem;
}

.header-day28 p {
  color: #f3e5f5;
  font-style: italic;
  font-size: 1.1rem;
}

.main-day28 {
  background: #f8f9fa;
  padding: 20px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 75px;
  margin: 40px 0;
}

.SocialMediaDashboard {
  background: linear-gradient(180deg, #667eea, #764ba2, #f093fb);
  padding: 40px 25px;
  border-radius: 10px;
  width: 100%;
}

.SocialMediaDashboard ul {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 30px;
}

.hoverOverview {
  text-decoration: none;
  color: white;
  padding: 5px 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
}

.hoverIG {
  text-decoration: none;
  color: white;
  padding: 5px 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
}

.hoverTwitter {
  text-decoration: none;
  color: white;
  padding: 5px 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
}

.hoverFacebook {
  text-decoration: none;
  color: white;
  padding: 5px 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
}

.hoverAnalytics {
  text-decoration: none;
  color: white;
  padding: 5px 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
}

.hoverSettings {
  text-decoration: none;
  color: white;
  padding: 5px 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
}

.hoverOverview:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: #20C997;
}

.hoverIG:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(45deg, #F77737, #E1306C, #833AB4, #FCAF45);
}

.hoverTwitter:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: #1DA1F2;
}

.hoverFacebook:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: #1877F2;
}

.hoverAnalytics:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: #F9AB00;
}

.hoverSettings:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: #6C757D;
}

.SocialMediaDashboard a {
  position: relative;
  color: white;
}

.SocialMediaDashboard a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: currentColor;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.SocialMediaDashboard a:hover::after {
  width: 100%;
}

.Socialmedia-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.sosmed-cards {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.stat-items {
  letter-spacing: 1px;
  font-size: 1.1rem;  
  line-height: 1.6;
}

.overview {
  border-left: 5px solid #6c63ff; 
  background: linear-gradient(135deg, #f0efff, #fafaff);
}

.instagram {
  border-left: 5px solid #E4405F; 
  background: linear-gradient(135deg, #fff0f5, #ffe8f0);
}

.twitter {
  border-left: 5px solid #1DA1F2; 
  background: linear-gradient(135deg, #e7f5ff, #f0f9ff);
}

.facebook {
  border-left: 5px solid #1877F2; 
  background: linear-gradient(135deg, #eef2ff, #f5f8ff);
}

.analytics {
  border-left: 5px solid #4CAF50; 
  background: linear-gradient(135deg, #f0fff4, #f7fef9);
}

.settings {
  border-left: 5px solid #FF9800; 
  background: linear-gradient(135deg, #fff9f0, #fffbf5);
}

.sosmed-cards:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
  font-weight: 500;

}

.footer-day28 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-align: center;
  padding: 15px 20px;
  line-height: 1.5;
  font-weight: 600;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 7px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.footer-day28 h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .main-day28 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
    padding: 10px;
  }
  .SocialMediaDashboard {
    width: 100%;
    padding: 20px 15px;
    overflow-x: auto;
    width: 95%;
  }
  .SocialMediaDashboard ul {
    flex-direction: row;
    gap: 15px;
    flex-wrap: nowrap;
  }
  .SocialMediaDashboard li {
    white-space: nowrap;
  }
}








