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 {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    perspective: 1000px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #fff;
  }
  
  .card:hover {
    transform: rotateY(5deg) scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.4);
  }
  
  /* Button Pulse on Hover */
  .card .btn {
    transition: all 0.3s ease;
  }
  
  .card .btn:hover {
    animation: pulse 0.8s infinite;
    background-color: #ff6a00;
    color: white;
    border: none;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }

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;
  }

  .footer-policies {
    padding: 30px 0;
  }
  
  .policy-links a {
    color: #bbb;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
  }
  
  .policy-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .policy-section {
    background-color: #fff3e0;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px #ffd7a2;
  }

  #typewriter-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: black;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  .gradient-heading {
    background: linear-gradient(90deg, #ff8a00, #e52e71, #bc7ee5);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s ease infinite;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  

::-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;
  }
