:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5371f5; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #f9f8f4; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
.img-fluid{
  max-width: 100%;
  height: auto;
  display: block;
}
.section-hero {
    background-color: #4CAF50;
    /* Warna latar belakang section */
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    /* Penting untuk posisi gelombang */
    overflow: hidden;
    /* Pastikan tidak ada scrollbar yang tidak diinginkan */
}
.nav-item .nav-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin: 0 auto;
  box-shadow: 0 0 5px 5px rgba(249, 249, 249, 0.4);
}
/* Styling SVG gelombang di bagian bawah section */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    /* Tinggi gelombang */
    /* Pastikan z-index lebih tinggi dari konten section jika gelombang menutupi konten */
}

.wave-bottom path {
    fill: #ffffff;
    /* Warna gelombang, cocokkan dengan warna section selanjutnya atau footer */
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.track input[type=text]{
  /* background-color: darkorange; */
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 20px;
  color:#333;
  background-color: #ecf0b6;
  border-color: #070707;
   box-shadow: 0px 0px 20px rgba(247, 245, 245, 0.5);
}
.track .php-email-form input[type=text],
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=date],
.contact .php-email-form input[type=file],
.contact .php-email-form select,
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 20px;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=date]:focus,
.contact .php-email-form input[type=file]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=date]::placeholder,
.contact .php-email-form input[type=file]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}
/* Section selanjutnya (untuk menunjukkan transisi warna) */
.section-content {
    background-color: white;
    /* Warna latar belakang section ini */
    padding: 50px 20px;
    text-align: center;
    color: #333;
}

.containerx {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    z-index: 1;
}

h1, h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #6e8efb;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: red;
}


/* menampilkan wave   */ 
.hero .hero-waves {
  display: block;
  width: 250%;
  height: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #ecf0b6;
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #6b7995;
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #3965c3;
  opacity: 0.6;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}