body {
    background-color: rgba(12, 12, 12);
    padding-top: 100px;
  }
  
  .About-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;
  }
  .navbar-brand {
    line-height: 60px; /* Matches the navbar height */
  }

  .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: #ffffff !important;
    text-decoration: none; /* Hilangkan underline default */
  }

  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    text-decoration: none; /* Menghilangkan garis bawah */
  }
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none; /* Menghilangkan garis bawah */
    color: #6C7293; /* Ganti dengan warna yang diinginkan */
  }
  
  .footer .btn.btn-link:hover {
    color: #49afee; /* Ganti dengan warna yang diinginkan */
    letter-spacing: 1px;
    box-shadow: none;
  }
  
  .btn-lg-square {
    width: 40px;  /* Atur lebar */
    height: 40px; /* Atur tinggi */
    background-color: #000; /* Warna hitam */
    display: flex; /* Menggunakan flexbox untuk menempatkan ikon di tengah */
    justify-content: center; /* Memastikan ikon berada di tengah horizontal */
    align-items: center; /* Memastikan ikon berada di tengah vertikal */
    border-radius: 5px; /* Menambahkan sedikit border-radius jika ingin sudut melengkung */
    transition: background-color 0.3s, color 0.3s; /* Efek transisi yang halus */
    text-decoration: none; /* Menghapus garis bawah dari link */
  }
  .btn-lg-square:hover {
    background-color: #ffffffaf; /* Warna latar belakang putih saat hover */
  }
  
  .btn-square {
    width: 40px;  /* Atur lebar */
    height: 40px; /* Atur tinggi */
    background-color: #000; /* Warna hitam */
    display: flex; /* Menggunakan flexbox untuk menempatkan ikon di tengah */
    justify-content: center; /* Memastikan ikon berada di tengah horizontal */
    align-items: center; /* Memastikan ikon berada di tengah vertikal */
    border-radius: 5px; /* Menambahkan sedikit border-radius jika ingin sudut melengkung */
    transition: background-color 0.3s, color 0.3s; /* Efek transisi yang halus */
    text-decoration: none; /* Menghapus garis bawah dari link */
  }
  
  .btn-square:hover {
    background-color: #ffffffaf; /* Warna latar belakang putih saat hover */
  }
  
  .text-abu{
    color: #595d75;
  }

  .text-birutua{
    color: #0d47a1 ;
  }

  .text-indigo{
    color: #1a237e  ;
  }

  .text-biru2{
    color: #1565c0;
  } 

  .text-abugelap{
    color: #37474f  ;
  }

  .text-abubiru{
    color: #263238   ;
  }

  a:hover {
    color: #49afee; /* Mengubah warna teks menjadi merah saat hover */
  }
  
  .container {
    width: 100%;
  }

  .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%;
  }
  
  .custom-btn {
    background-color: #800000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .custom-btn:hover {
    background-color: #660000;
  }
  
  .icon {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-left: -10px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .icon img {
    transition: transform 0.3s ease;
  }
  
  .icon img:hover {
    transform: scale(1.5);
  }
  
  @media only screen and (max-width: 768px) {
    .carousel {
      margin-top: -20px;
      max-width: 100%;
    }
    .custom-btn {
      margin: 1rem auto;
      text-align: center;
    }
    .About-header {
      font-size: 2.5rem;
      top: -150px; /* Adjust vertical position for smaller screens */
    }
  }
  
  @media only screen and (max-width: 500px) {
    h1 {
      font-size: 1.8rem;
      text-align: center;
      margin: 1rem 0;
    }
  .carousel {
      margin-top: -20px;
      max-width: 100%;
    }
    .company-description {
      text-align: center;
      margin: auto;
      font-size: 1rem;
      line-height: 1.6;
    }
    .About-header{
      font-size: 2rem;
      top: -125px;
      text-align: center;
    }
  }
  