    /* body {
      background-color: #F9F9F9;
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    } */

    /* html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
} */


    /* Navbar Base */
    .navbar {
      background-color: #fff;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
      padding: 0.8rem 1.5rem;
    }

    .navbar-brand img {
      height: 75px;
      width: auto;
    }

    /* Navbar Links */
    .navbar-nav .nav-link {
      color: #1c1cd0;
      font-weight: 500;
      margin: 0 15px;
      position: relative;
      transition: color 0.3s ease;
    }

    /* Underline Animation */
    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -3px;
      width: 0;
      height: 2px;
      background-color: #C89D2C;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    /* Hover & Active Effects */
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 100%;
        color: #C89D2C;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #C89D2C;
    }

    /* Login Button */
    .btn-login {
      border: 1.5px solid #C89D2C;
      color: #C89D2C;
      border-radius: 25px;
      padding: 5px 16px;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
      background-color: transparent;
    }

    .btn-login:hover {
      background-color: #C89D2C;
      color: #fff;
      box-shadow: 0 0 10px rgba(200,157,44,0.6);
    }

    /* Divider between button and icon */
    .divider {
      width: 1px;
      height: 25px;
      background-color: #ccc;
      margin: 0 12px;
    }

    .bi-person {
      color: #1E1E2F;
      font-size: 1.4rem;
      transition: all 0.3s ease;
    }

    .bi-person:hover {
      color: #C89D2C;
      text-shadow: 0 0 6px rgba(200,157,44,0.6);
    }

    /* Responsive (Mobile View) */
    @media (max-width: 991px) {
      .navbar-collapse {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 15px;
        color: black !important;
        
      }

      .navbar-nav {
        text-align: center;
      }

      .navbar-nav .nav-link {
        margin: 10px 0;
      }

      .login-section {
        justify-content: center;
        margin-top: 15px;
      }

      .divider {
        display: block;
        height: 20px;
      }
    }


    /* //Footer.css */

