
body{
    background-color: rgb(255, 255, 255);
    padding-top: 100px;
}
.Contact-header {
  color: white;
  font-size: 3rem; /* Default font size */
  font-weight: bold;
  margin: 0 auto; /* Center horizontally */
  text-align: center; /* Center text inside itself */
  position: relative;
  top: -250px;
}

.company-name {
  margin-bottom: 2px; /* Atur jarak bawah sesuai kebutuhan */
  line-height: 0.2; /* Sesuaikan tinggi baris agar lebih rapat */
}
.container {
  width: 100%;
}
.btn-red {
  background: #eb1f1f;
  color: rgb(255, 255, 255);
  font-size: 16px;
  border-radius: 0; 
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* Menengahkan teks secara horizontal */
  padding: 10px 20px; /* Berikan padding agar button terlihat lebih proporsional */
  transition: background-color 0.3s ease;
}

.btn-red:hover {
  background: linear-gradient(to right, #504c4cab, #313030dc); 
  color: rgb(255, 255, 255);
}

/* Background styling */
.contact-form {
  background-color: #bfc2c5cb; /* Light grey background */
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Input field styling */
.form-control {
  background-color: #ffffff; /* White input background */
  color: #333333; /* Dark grey text */
  border: 1px solid #ced4da; /* Light border */
  border-radius: 5px;
}

/* Placeholder styling */
.form-control::placeholder {
  color: #6c757d; /* Medium grey placeholder */
  opacity: 1;
}

/* Input focus effect */
.form-control:focus {
  border-color: #dc3545; /* Red border on focus */
  box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
}

.text-red {
  color: #eb1f1f;
}

.text-blue {
  color: #2e3192;
}

.bg-biru{
  background: #2e3192;
}

.navbar {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-link {
  position: relative; /* Agar efek underline bisa diatur dengan posisi */
  transition: color 0.3s ease-in-out; /* Animasi perubahan warna */
}

.nav-link:hover {
  color: #eb1f1f !important;
  text-decoration: none; /* Hilangkan underline default */
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #2e3192; /* Warna garis bawah */
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.navbar-brand {
  line-height: 60px; /* Matches the navbar height */
}

.text-primary {
  color: #49afee !important; /* Biru muda */
}

.text-primary2 {
  color: #4343dae7 !important; /* Biru dongker */
}

.carousel {
  margin-top: -20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }

  .btn-lg-square {
    width: 40px; /* Ukuran persegi tombol */
    height: 40px; /* Ukuran persegi tombol */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px; /* Ukuran font untuk ikon, sesuaikan dengan keinginan */
  }

  /* Style input dan textarea */
  .custom-input {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: white;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1);
  }

  /* Hover dan Focus efek */
  .custom-input:focus {
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }

  /* Style untuk tombol */
  .custom-button {
    background: linear-gradient(45deg, #eb1f1f, #e03939);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    width: 100%;
  }

  /* Hover effect tombol */
  .custom-button:hover {
    background: linear-gradient(45deg, #e03939, #eb1f1f);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .contact-info {
    display: flex;
    align-items: center;
    gap: 40px; /* Jarak antara ikon dan teks */
    font-size: 18px; /* Ukuran ikon */
  }
  .contact-info i {
    min-width: 20px; /* Ukuran ikon agar sejajar */
    text-align: center;
  }
  
  .contact-info span {
    flex: 1; /* Agar teks tetap sejajar */
    text-align: left;
    display: inline-block;
  }

  /* Footer Styles */
.footer {
  background-color: #343a40; /* Dark background color */
  color: #fff;
  padding: 40px 0;
}

/* Footer text links */
.footer .text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.footer a {
  text-decoration: none;
  transition: color 0.1s ease-in-out;
}

.footer a:hover {
  color: #2e3192 !important;/* White color on hover */
  text-decoration: none;
}

/* Social media buttons */
.footer .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}

.footer .btn-outline-light:hover {
  background-color: #fff;
  color: #343a40; /* Dark text on hover */
  transform: translateY(-5px);
}

/* Footer bottom text */
.container-fluid.bg-dark.bg-light-radial {
  background: linear-gradient(45deg, #343a40, #495057);
}
  
  @media only screen and (max-width: 768px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
    .col-md-6.mb-4 {
      margin-top: -130px; /* Mengatur jarak atas lebih kecil pada ponsel */
    }
    .nav-link {
      display: inline-block; /* Agar hover tetap sesuai panjang teks */
    }
    .navbar-nav {
      width: 100%;
      text-align: center;
    }
    
    .nav-item {
      display: block; /* Agar link berjajar ke bawah */
    }
  }
  
  @media only screen and (max-width: 576px) {
    .responsive {
      width: 100%;
    }
    .nav-link {
      display: inline-block; /* Agar hover tetap sesuai panjang teks */
    }
    .navbar-nav {
      width: 100%;
      text-align: center;
    }
    
    .nav-item {
      display: block; /* Agar link berjajar ke bawah */
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }



