html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #FFF3E0;
    color: #1C1C1C;
    font-family: 'Segoe UI', sans-serif;
  }

main {
    flex: 1;
  }

  .navbar {
    background-color: #1c1c1c;
  }
  
  .navbar-nav .nav-link {
    position: relative;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
  }
  
  /* Icons */
  .navbar-nav .nav-link i {
    font-size: 1.5rem;
    margin-right: 6px; /* Space between icon and text */
  }
  
  /* Hidden text span for small screen text beside icon */
  .navbar-nav .nav-link span {
    display: none;
    font-size: 1rem;
  }
  
  /* Tooltip (custom attribute: data-tooltip) */
  .navbar-nav .nav-link[data-bs-toggle="tooltip"]::after {
    content: attr(data-bs-original-title);
    position: absolute;
    bottom: -1.6rem;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
  }
  
  /* Show text on smaller screens */
  @media (max-width: 768px) {
    .navbar-nav .nav-link span {
      display: inline;
    }
  
    .navbar-nav .nav-link::after {
      display: none !important;
    }
  }
  
  /* Active Nav Link */
  .navbar-nav .nav-link.active {
    font-weight: bold;
    color: #FFA64D !important;
  }

.btn-primary, .btn-outline-dark {
    background-color: #FFA64D;
    border-color: #FFA64D;
    color: #1C1C1C;
  }

.btn-primary:hover, .btn-outline-dark:hover {
    background-color: #ff922b;
    border-color: #ff922b;
    color: #fff;
  }

.card {
    background-color: #ffffff;
    border: 1px solid #FFDAB9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }

.card-title {
    color: #1C1C1C;
  }

footer {
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
  }

a#made {
    color: #fff;
  }

a#made:hover {
    text-decoration: underline;
    color: red;
  }

  .parallax-banner {
    background-image: url('/images/parallax/contactus-parallax.png');
    min-height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .parallax-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
  }

::-webkit-scrollbar {
  width: 5px;
  height: 12px;
  }

::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, whitesmoke, #ff922b);
  }

::-webkit-scrollbar-thumb {
  background: whitesmoke;
  border-radius: 10px;
  }

::-webkit-scrollbar-thumb:hover {
  background: #ff922b;
  }
