body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #212529;
      margin: 0;
      line-height: 1.7;
    }

    body::-webkit-scrollbar {
      width: 0;
      background: transparent;
    }

    .navbar-glass {
      backdrop-filter: blur(12px);
      background-color: rgba(0, 0, 0, 0.9) !important;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      position: relative;
      padding: 8px 15px;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: #0d6efd;
      transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }

    .contact-section {
      margin: 100px auto 60px auto;
      max-width: 700px;
      text-align: center;
    }

    .contact-section img.profile-pic {
      cursor: pointer;
      border: 4px solid #0d6efd;
    }

    .contact-section ul {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .contact-section li {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    .contact-section li img {
      margin-right: 10px;
      border: none; 
    }

    .contact-section a {
      text-decoration: none;
      color: #0d6efd;
      font-weight: 500;
    }

    .contact-section a:hover {
      text-decoration: underline;
    }

    .modal-body img {
      border: 4px solid #0d6efd;
    }