.navMain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
/* Navigation */
.nav-links {
    display: flex;
    gap: 1rem;
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    z-index: 100;
    background: rgba(85, 94, 86, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    font-size: 1.5rem;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    position: fixed;       /* Ensures that the icons stay fixed in position */
    top: 1rem;             /* Distance from the top */
    right: 1rem;           /* Distance from the right */
    display: flex;         /* Arrange icons horizontally */
    gap: 1rem;             /* Space between icons */
    z-index: 1000;         /* Ensure the icons are above other content */
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.icon:hover {
    transform: scale(1.1);
}

.icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0);
    border-radius: 50%;
    display: block;
}

  
@media (max-width: 768px) {
    .nav-links {
        width: 100%;
        justify-content: center;
        right: 0;
        padding: 0.5rem;
        background: none;
        font-size: 1rem;
      }

      .nav-links a {
        font-size: 1rem;
        padding: 0.3rem;
      }

      .social-icons {
        position: fixed;
        right: 2rem;
        top: 1rem;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}