@charset "utf-8";
/* CSS Document */

  body {
    font-family: 'Roboto', sans-serif;
  }

  /* General Navigation Styles */
  .main-menu {
    background: #f6f6f9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .main-menu .nav-link {
    color: #6c757d !important; /* Soft gray */
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
  }

  .main-menu .nav-link:hover {
    color: #ffffff !important; /* White on hover */
    background-color: #8ecae6 !important; /* Pastel blue */
  }

  .main-menu .nav-link.active {
    background-color: #219ebc !important; /* Deep pastel blue */
    color: #ffffff !important;
  }

  .main-logo {
    font-size: 1.5rem;
    color: #219ebc;
    font-weight: bold;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238ecae6' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.3)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  /* Offcanvas Styles */
  .offcanvas-header {
    background-color: #8ecae6;
    color: #ffffff;
    border-radius: 8px 8px 0 0;
  }

  .offcanvas-body {
    background-color: #f6f6f9;
  }

  .offcanvas-body .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d !important;
  }

  .offcanvas-body .nav-link:hover {
    color: #ffffff !important;
    background-color: #8ecae6 !important;
  }

  /* Mobile Menu Enhancements */
  .offcanvas-title {
    font-size: 1.25rem;
  }