  .custom-card {
    background-color: #FAF9F6; /* Light gray card background */
    border: 1px solid #ddd; /* Optional border for card effect */
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
  }

  /* CSS */
/* Base styles for navigation link */
.navbar .navb-link {
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

/* Icon styles */
.icon {
    /* margin-bottom: 1px; */
    background-color: transparent; /* Initial state */
    border-radius: 50%;
    padding: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
/* Hover effect for the icon */
.navbar .navb-link:hover .icon {
    background-color: rgba(98, 78, 78, 0.2); /* Light-filled circle */
    transform: scale(1); /* No jumping */
}

.card {
    border-color: rgba(0, 0, 0, 0.1);
  }
  
h2
{
    font-size: var(--font-medium);
}
p 
{
    font-size: var(--font-small-text);
}

  @media (max-width: 768px) {
    h1 
    {
        font-size: var(--font-medium);
    }
    h2 {
        font-size: var(--font-text);
    }

    p {
        font-size: var(--font-small-text);
    }
}