  
 
  /* Header Section */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: black; /*#f28ab2; *//* Pink Header */
            display: flex;
            justify-content: center ;
            align-items: center;
            padding: 10px 30px;
            z-index: 1000;
            font-size: 30px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        header .name{
          position: absolute;
          left: 30px; /* Move to the far-right of the header */
          font-size: 30px;
          color: white;
          font-weight: bold      
        }
        header nav {
            display: flex;
            gap: 20px;
        }

        header button {
            background-color: transparent;
            border: none;
            font-size: 30px;
            color: white;
            cursor: pointer;
            transition: text-decoration 0.3s ease;
        }

        header button:hover {
            text-decoration: underline;
        }

        .resume-btn {
        
            background-color: tansparent;
            border: 1px solid transparent;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
            white-space: nowrap;
        }

        .resume-btn:hover {
            background-color: #4B0082;
            color: white;
        }
        
        .dropdown .btn-primary {
          background-color: transparent;
          border-color: transparent;
          color: white;
          font-size: 29px;
        }

        .dropdown .btn-primary:hover,
        .dropdown .btn-primary:focus {
          background-color: #4B0082;
          border-color: #4B0082;
        }

        /* Style the dropdown menu */
        .dropdown-menu {
          background-color: #f28ab2;
        }

        .dropdown-menu > li > a {
          color: white;
        }

        .dropdown-menu > li > a:hover {
          background-color:  #4B0082;
          color: white;
        }

        /* Optional caret color */
        .dropdown-toggle .caret {
          border-top-color: white;
          border-bottom-color: white;
        }