    /* Navbar */
    .navbar {
      padding: 0.75rem 1rem;
      background: #ffffff;
      flex-wrap:wrap;
    }


    .navbar-brand {
      font-weight: 700;
      font-size: 1.4rem;
      letter-spacing: 0.05rem;
      text-transform: uppercase;
      color: #167ac6 !important;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-circle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #167ac6, #63a4ff);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .nav-link {
      font-weight: 500;
      margin-left: 8px;
      position: relative;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: #167ac6;
      transition: width 0.2s ease-in-out;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-link.active {
      color: #167ac6 !important;
    }
/* Small screens */
    @media (max-width: 767.98px) {
      .top-bar .container {
        text-align: center;
      }

      .top-bar .d-flex {
        flex-direction: column;
        gap: 5px;
      }

      .top-bar .social-icons {
        justify-content: center;
      }
    }
    @media(max-width:768px){
  .about-header h1{
    font-size:1.6rem;
  }
  .about-header p{
    font-size:0.95rem;
  }
}

